|
|
|
@ -102,21 +102,22 @@
|
|
|
|
|
<el-table-column label="序号" type="index"></el-table-column>
|
|
|
|
|
<el-table-column label="最小销售产品标识" prop="nameCode" width="140" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="第三方物资编码" prop="thirdId" width="120" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="医疗器械注册人" width="160" prop="ylqxzcrbarmc"></el-table-column>
|
|
|
|
|
<el-table-column label="物资名称" prop="cpmctymc" width="160" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="商品名称" prop="spmc" width="160" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="规格型号" prop="ggxh" width="140" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="注册/备案凭证" prop="zczbhhzbapzbh" width="160" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="医疗器械注册人" width="160" prop="ylqxzcrbarmc"></el-table-column>
|
|
|
|
|
<el-table-column label="器械类别" prop="qxlb" width="100" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="供应商" prop="companyName" width="160" show-overflow-tooltip></el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column
|
|
|
|
|
v-if="productRemarkSet.remarkEnable1"
|
|
|
|
|
:label="productRemarkSet.remarkTitle1" prop="basicPrductRemak1" width="140"
|
|
|
|
|
show-overflow-tooltip></el-table-column>
|
|
|
|
|
v-if="productRemarkSet.remarkEnable1"
|
|
|
|
|
:label="productRemarkSet.remarkTitle1" prop="basicPrductRemak1" width="140"
|
|
|
|
|
show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
v-if="productRemarkSet.remarkEnable2"
|
|
|
|
|
:label="productRemarkSet.remarkTitle2" prop="basicPrductRemak2" width="140"
|
|
|
|
|
show-overflow-tooltip></el-table-column>
|
|
|
|
|
v-if="productRemarkSet.remarkEnable2"
|
|
|
|
|
:label="productRemarkSet.remarkTitle2" prop="basicPrductRemak2" width="140"
|
|
|
|
|
show-overflow-tooltip></el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column label="操作" width="80" fixed="right">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
@ -126,23 +127,23 @@
|
|
|
|
|
</el-table>
|
|
|
|
|
|
|
|
|
|
<pagination
|
|
|
|
|
v-show="pageTotal>0"
|
|
|
|
|
:total="pageTotal"
|
|
|
|
|
:page.sync="listQuery.page"
|
|
|
|
|
:limit.sync="listQuery.limit"
|
|
|
|
|
@pagination="handleErpPageChange"
|
|
|
|
|
v-show="pageTotal>0"
|
|
|
|
|
:total="pageTotal"
|
|
|
|
|
:page.sync="listQuery.page"
|
|
|
|
|
:limit.sync="listQuery.limit"
|
|
|
|
|
@pagination="handleErpPageChange"
|
|
|
|
|
|
|
|
|
|
></pagination>
|
|
|
|
|
</el-card>
|
|
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
|
title="耗材字典详情"
|
|
|
|
|
:visible.sync="udiRlDetailVisible"
|
|
|
|
|
width="80%"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
append-to-body
|
|
|
|
|
v-if="udiRlDetailVisible"
|
|
|
|
|
title="耗材字典详情"
|
|
|
|
|
:visible.sync="udiRlDetailVisible"
|
|
|
|
|
width="80%"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
append-to-body
|
|
|
|
|
v-if="udiRlDetailVisible"
|
|
|
|
|
>
|
|
|
|
|
<udiRlDetailDialog :editQuery="currentRow"></udiRlDetailDialog>
|
|
|
|
|
</el-dialog>
|
|
|
|
@ -365,43 +366,43 @@ export default {
|
|
|
|
|
this.listQuery.customerId = store.getters.customerId;
|
|
|
|
|
this.listQuery.id = this.pId;
|
|
|
|
|
filterCompanyProductplanRelevance(this.listQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.dataList = response.data.list || [];
|
|
|
|
|
this.pageTotal = response.data.total || 0;
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.dataList = response.data.list || [];
|
|
|
|
|
this.pageTotal = response.data.total || 0;
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
this.dataList = [];
|
|
|
|
|
this.pageTotal = 0;
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.dataList = [];
|
|
|
|
|
this.pageTotal = 0;
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.dataList = [];
|
|
|
|
|
this.pageTotal = 0;
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
getRationList() {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
filterCompanyProductRationRelevance(this.listQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.dataList = response.data.list || [];
|
|
|
|
|
this.pageTotal = response.data.total || 0;
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.dataList = response.data.list || [];
|
|
|
|
|
this.pageTotal = response.data.total || 0;
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
this.dataList = [];
|
|
|
|
|
this.pageTotal = 0;
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.dataList = [];
|
|
|
|
|
this.pageTotal = 0;
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.dataList = [];
|
|
|
|
|
this.pageTotal = 0;
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
intentBack() {
|
|
|
|
|
this.closeDialog();
|
|
|
|
|