|
@@ -142,17 +142,17 @@
|
|
|
<el-table-column label="材质" prop="matl" width="80" />
|
|
|
<el-table-column label="是否集采" prop="isFas" width="80">
|
|
|
<template #default="{ row }">
|
|
|
- <span v-if="row.isFas == '1'">否</span>
|
|
|
- <span v-if="row.isFas == '0'">是</span>
|
|
|
+ <span v-if="row.isFas == '0'">否</span>
|
|
|
+ <span v-if="row.isFas == '1'">是</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column label="生效时间" prop="crteTime" width="130" />
|
|
|
<el-table-column label="采购单位" prop="purcUnt" width="80" />
|
|
|
<el-table-column label="采购价" prop="purcPric" width="80" />
|
|
|
- <!-- <el-table-column label="驳回原因" prop="rejtRea" width="80" /> -->
|
|
|
<el-table-column label="目录来源" prop="isPub" width="80" fixed="right">
|
|
|
<template #default="{ row }">
|
|
|
- <span v-if="row.isPub == '0'">挂网</span>
|
|
|
- <span v-if="row.isPub == '1'">非挂网</span>
|
|
|
+ <span v-if="row.isPub == '1'">挂网</span>
|
|
|
+ <span v-if="row.isPub == '0'">非挂网</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<!-- <el-table-column label="当前状态" prop="status" width="80" fixed="right">
|
|
@@ -363,8 +363,8 @@
|
|
|
<el-table-column prop="pubonlnPric" label="挂网价格"> </el-table-column>
|
|
|
<el-table-column prop="isFas" label="是否集采">
|
|
|
<template #default="{ row }">
|
|
|
- <span v-if="row.isFas == '1'">否</span>
|
|
|
- <span v-if="row.isFas == '0'">是</span>
|
|
|
+ <span v-if="row.isFas == '0'">否</span>
|
|
|
+ <span v-if="row.isFas == '1'">是</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="fasBtch" label="带量批次"> </el-table-column>
|
|
@@ -519,13 +519,13 @@ export default {
|
|
|
tableLoading: false,
|
|
|
supLoading: false,
|
|
|
tableData: [],
|
|
|
- crspFlgOption: [
|
|
|
- { value: "0", name: "未对码" },
|
|
|
- { value: "1", name: "已对码" },
|
|
|
- ],
|
|
|
+ // crspFlgOption: [
|
|
|
+ // { value: "0", name: "未对码" },
|
|
|
+ // { value: "1", name: "已对码" },
|
|
|
+ // ],
|
|
|
isFasData: [
|
|
|
- { value: "0", name: "是" },
|
|
|
- { value: "1", name: "否" },
|
|
|
+ { value: "1", name: "是" },
|
|
|
+ { value: "0", name: "否" },
|
|
|
],
|
|
|
mcsTypeData: [
|
|
|
{ value: "0", name: "普通耗材" },
|
|
@@ -543,8 +543,8 @@ export default {
|
|
|
{ value: "R", name: "驳回" },
|
|
|
],
|
|
|
isPubData: [
|
|
|
- { value: "0", name: "挂网" },
|
|
|
- { value: "1", name: "非挂网" },
|
|
|
+ { value: "1", name: "挂网" },
|
|
|
+ { value: "0", name: "非挂网" },
|
|
|
],
|
|
|
dialogPrice: false,
|
|
|
dialogDui: false,
|
|
@@ -896,7 +896,7 @@ export default {
|
|
|
// console.log(row, "编辑");
|
|
|
this.$router.push({
|
|
|
name: "catalogdetails",
|
|
|
- query: { id: row.id, status: row.status, spdId: this.spdId, isPub: row.isPub,type:"modify",page:"1" ,current:this.listQuery.current },
|
|
|
+ query: { id: row.id, status: row.status, spdId: this.spdId, isPub: row.isPub,type:"modify",page:"1" ,current:this.listQuery.current,opeType:"修改" },
|
|
|
});
|
|
|
// this.dialogDui = true;
|
|
|
// this.consumableData = [];
|