基础信息与第三方产品信息优化,单据验收等

master
anthonywj 3 years ago
parent 12f0ebb685
commit 87527aeaf8

42997
package-lock.json generated

File diff suppressed because it is too large Load Diff

@ -16,7 +16,7 @@
"file-saver": "^2.0.5",
"js-cookie": "^2.2.0",
"mockjs": "^1.0.1-beta3",
"node-sass": "^4.14.1",
"node-sass": "^6.0.1",
"nprogress": "^0.2.0",
"pinyin": "^2.10.2",
"vue": "^2.5.16",
@ -33,7 +33,6 @@
"@vue/test-utils": "^1.0.0-beta.16",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^23.0.1",
"node-sass": "^4.9.0",
"sass-loader": "^7.0.1",
"vue-template-compiler": "^2.5.16"
},

@ -1,6 +1,7 @@
{
"BASE_URL":"http://127.0.0.1:9991",
"SERVER_IP": "http://127.0.0.1:9991/",
"BASE_URL2": "ws://127.0.0.1:9991/api/websocket/"
"BASE_URL":"http://139.159.187.130:8080/UDI_WMS_MC",
"SERVER_IP": "http://139.159.187.130:8080/",
"WEBSOCKET_URL": "ws://139.159.187.130:8080/UDI_WMS_MC/api/websocket/"
}

@ -5,7 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
<title>医疗器械出入库管理系统</title>
<title>UDI管理系统</title>
</head>
<body>
<div id="app"></div>

@ -5,7 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
<title>医疗器械出入库管理系统</title>
<title>UDI管理系统</title>
<link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css">
<!-- <link rel="stylesheet" href="./index.css"> -->

File diff suppressed because one or more lines are too long

@ -13,7 +13,7 @@
src="../../assets/ic_launcher.png"
/>
<!--文字logo-->
<span>医疗器械出入库管理系统</span>
<span>UDI管理系统</span>
</div>
<el-menu
class="menu"

@ -140,7 +140,7 @@
<span>{{ scope.row.actDate }}</span>
</template>
</el-table-column>
<el-table-column label="ERP校验状态" prop="contrastStatus" width="120">
<el-table-column label="校验状态" prop="contrastStatus" width="120">
<template slot-scope="scope">
<el-tag
:type="(scope.row.contrastStatus == 1) | statusFilterType"
@ -221,17 +221,17 @@
style="width: 100%"
>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column
label="ERP订单号"
prop="erpOrderId"
:show-overflow-tooltip="true"
></el-table-column>
<el-table-column
label="ERP货品名称"
prop="goodsname"
:show-overflow-tooltip="true"
></el-table-column>
<!-- <el-table-column-->
<!-- label="业务单据号"-->
<!-- prop="erpOrderId"-->
<!-- :show-overflow-tooltip="true"-->
<!-- ></el-table-column>-->
<!-- <el-table-column-->
<!-- label="货品名称"-->
<!-- prop="goodsname"-->
<!-- :show-overflow-tooltip="true"-->
<!-- ></el-table-column>-->
<el-table-column
label="产品通用名"

@ -484,12 +484,11 @@
});
},
geActionName(action){
this.busTypes.forEach((obj) => {
console.log(obj.action);
if (obj.action == action) {
return obj.name;
for (let i = 0; i < this.busTypes.length; i++) {
if (this.busTypes[i].action === action) {
return this.busTypes[i].name;
}
}
});
},
},
filters: {
@ -509,12 +508,13 @@
},
created() {
//
this.getBusType();
let query = this.$route.query;
this.filterQuery = Object.assign(this.filterQuery, query);
this.filterQuery.limit = parseInt(this.filterQuery.limit);
//
this.getList();
this.getBusType();
},
};
</script>

@ -14,7 +14,7 @@
src="../../assets/pzhlogo.png"
>
</div> -->
<h3 class="title">医疗器械出入库管理系统</h3>
<h3 class="title">UDI管理系统</h3>
<el-form-item prop="username" class="item">
<el-input placeholder="邮箱" name="userName" autocomplete="on" v-model="ruleForm.userName">
<i slot="prefix" class="el-input__icon">

@ -52,7 +52,13 @@
<el-table-column label="往来单位ID" prop="corpId" width="100"></el-table-column>
<el-table-column label="往来单位" prop="corpName" width="300"
show-overflow-tooltip="true"></el-table-column>
<el-table-column label="扫码单据类型" prop="billType"></el-table-column>
<el-table-column label="扫码单据类型" prop="billType">
<template slot-scope="scope">
<span>{{ geActionName(scope.row.billType) }}</span>
</template>
</el-table-column>
<el-table-column label="单据状态" prop="billFlag" width="80"></el-table-column>
<el-table-column label="单据日期" prop="billdate"></el-table-column>
<el-table-column label="单据类型" prop="originType"></el-table-column>
@ -235,6 +241,13 @@
.catch(() => {
});
},
geActionName(action){
for (let i = 0; i < this.busTypes.length; i++) {
if (this.busTypes[i].action === action) {
return this.busTypes[i].name;
}
}
},
},
components: {},

@ -94,7 +94,13 @@
<el-table-column label="往来单位ID" prop="corpId" ></el-table-column>
<el-table-column label="往来单位" prop="corpName"
show-overflow-tooltip="true"></el-table-column>
<el-table-column label="扫码单据类型" prop="billType"></el-table-column>
<el-table-column label="扫码单据类型" prop="billType">
<template slot-scope="scope">
<span>{{ geActionName(scope.row.billType) }}</span>
</template>
</el-table-column>
<el-table-column label="单据状态" prop="billFlag" ></el-table-column>
<el-table-column label="单据日期" prop="billdate"></el-table-column>
@ -409,6 +415,14 @@
});
},
geActionName(action){
for (let i = 0; i < this.busTypes.length; i++) {
if (this.busTypes[i].action === action) {
return this.busTypes[i].name;
}
}
},
},
components: {},
mounted() {

@ -27,7 +27,9 @@
show-overflow-tooltip="true"></el-table-column>
<el-table-column label="往来单位" prop="corpName"
show-overflow-tooltip="true"></el-table-column>
<el-table-column label="扫码单据类型" prop="billType" show-overflow-tooltip="true"></el-table-column>
<el-table-column label="扫码单据类型" prop="billType">
</el-table-column>
<el-table-column label="单据状态" prop="billFlag" width="80" show-overflow-tooltip="true"></el-table-column>
<el-table-column label="单据日期" prop="billdate" show-overflow-tooltip="true"></el-table-column>
<el-table-column label="产品编码" prop="productId" show-overflow-tooltip="true"></el-table-column>

@ -93,7 +93,13 @@
<el-table-column label="往来单位ID" prop="corpId" width="100"></el-table-column>
<el-table-column label="往来单位" prop="corpName" width="300"
show-overflow-tooltip="true"></el-table-column>
<el-table-column label="扫码单据类型" prop="billType"></el-table-column>
<el-table-column label="扫码单据类型" prop="billType">
<template slot-scope="scope">
<span>{{ geActionName(scope.row.billType) }}</span>
</template>
</el-table-column>
<el-table-column label="单据状态" prop="billFlag" width="80"></el-table-column>
<el-table-column label="单据日期" prop="billdate"></el-table-column>
<el-table-column label="单据类型" prop="originType"></el-table-column>
@ -491,6 +497,13 @@
.catch(() => {
});
},
geActionName(action){
for (let i = 0; i < this.busTypes.length; i++) {
if (this.busTypes[i].action === action) {
return this.busTypes[i].name;
}
}
},
},
components: {},

@ -4,7 +4,7 @@
<el-form :inline="true" :model="filterQuery" class="query-form" size="mini">
<el-form-item class="query-form-item">
<el-input
v-model="filterQuery.code"
v-model="filterQuery.unionCode"
placeholder="产品编码/商品条码/医保编码" clearable="true"
@keyup.enter.native="keyupErp_submit($event)"
></el-input>
@ -122,7 +122,7 @@
data() {
return {
filterQuery: {
code: null,
unionCode: null,
name: "",
spec: null,
registerNo: null,
@ -152,7 +152,7 @@
path: "",
});
this.filterQuery = {
code: null,
unionCode: null,
spec: null,
registerNo: null,
manufactory: null,

Loading…
Cancel
Save