耗材bug修复

ywj_dev
郑明梁 2 years ago
parent b8c2583bd8
commit 80043df1a9

@ -135,45 +135,22 @@
@selection-change="handleSelectionChange" @selection-change="handleSelectionChange"
> >
<el-table-column label="序号" type="index"></el-table-column> <el-table-column label="序号" type="index"></el-table-column>
<el-table-column <el-table-column label="最小销售产品标识" prop="nameCode" width="140" show-overflow-tooltip></el-table-column>
label="最小销售产品标识" <el-table-column label="主系统编码" prop="mainId" width="120" show-overflow-tooltip></el-table-column>
prop="nameCode" <el-table-column label="物资名称" prop="cpmctymc" width="160" show-overflow-tooltip></el-table-column>
width="140" <el-table-column label="规格型号" prop="ggxh" width="160" show-overflow-tooltip></el-table-column>
show-overflow-tooltip <el-table-column label="注册/备案号" prop="zczbhhzbapzbh" width="160" show-overflow-tooltip></el-table-column>
></el-table-column> <el-table-column label="生产企业" prop="ylqxzcrbarmc" width="180" show-overflow-tooltip></el-table-column>
<el-table-column <el-table-column label="集采状态" prop="groupBuy" width="120" show-overflow-tooltip>
label="主系统编码" <template slot-scope="scope">
prop="mainId" {{ groupBuyMap[scope.row.groupBuy] }}
width="120" </template>
show-overflow-tooltip </el-table-column>
></el-table-column> <el-table-column label="可配送状态" prop="dispatch" width="120" show-overflow-tooltip>
<template slot-scope="scope">
<el-table-column {{ dispatchMap[scope.row.dispatch] }}
label="物资名称" </template>
prop="cpmctymc" </el-table-column>
width="160"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="规格型号"
prop="ggxh" width="160"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="注册/备案号"
prop="zczbhhzbapzbh" width="160"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="生产企业"
prop="ylqxzcrbarmc" width="180"
show-overflow-tooltip
></el-table-column>
<!-- <el-table-column-->
<!-- label="器械类别"-->
<!-- prop="qxlb"-->
<!-- show-overflow-tooltip-->
<!-- ></el-table-column>-->
<el-table-column width="180" label="操作" fixed="right"> <el-table-column width="180" label="操作" fixed="right">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button <el-button
@ -1244,6 +1221,14 @@ export default {
measname: null, measname: null,
nameCode: null nameCode: null
}, },
groupBuyMap: {
true:"采集",
false:"非采集"
},
dispatchMap: {
true:"可配送",
false:"不可配送"
},
pId: 0, pId: 0,
productRemarkSet: {}, productRemarkSet: {},
relevanceEdit: { relevanceEdit: {

@ -130,6 +130,7 @@
<el-input <el-input
style="width: 80%" style="width: 80%"
size="small" size="small"
type="number"
splaceholder="请输入内容" splaceholder="请输入内容"
v-model="editQuery.overStockNum" v-model="editQuery.overStockNum"
></el-input> ></el-input>
@ -140,6 +141,7 @@
<el-input <el-input
style="width: 80%" style="width: 80%"
size="small" size="small"
type="number"
splaceholder="请输入内容" splaceholder="请输入内容"
v-model="editQuery.lowStockNum" v-model="editQuery.lowStockNum"
></el-input> ></el-input>
@ -152,6 +154,7 @@
<el-input <el-input
style="width: 80%" style="width: 80%"
size="small" size="small"
type="number"
splaceholder="请输入内容" splaceholder="请输入内容"
v-model="editQuery.recentDateTime" v-model="editQuery.recentDateTime"
></el-input> ></el-input>

Loading…
Cancel
Save