|
@@ -186,7 +186,7 @@
|
|
|
<img src="@/assets/nopage.png" alt />
|
|
|
<p>暂无数据</p>
|
|
|
</template>
|
|
|
- <el-table-column fixed type="index" label="序号" width="60" />
|
|
|
+ <el-table-column fixed type="index" label="序号" width="50" />
|
|
|
<el-table-column label="耗材信息" min-width="340">
|
|
|
<template slot-scope="scope">
|
|
|
<mcs-info :info="scope.row"></mcs-info>
|
|
@@ -196,7 +196,7 @@
|
|
|
<el-table-column label="规格" prop="spec" width="80" />
|
|
|
<el-table-column label="型号" prop="mol" width="80" />
|
|
|
<el-table-column label="材质" prop="matl" width="80" />
|
|
|
- <el-table-column label="是否集采" prop="isFas" width="80">
|
|
|
+ <el-table-column label="是否集采" prop="isFas" width="70">
|
|
|
<template #default="{ row }">
|
|
|
<span v-if="row.isFas == '0'">否</span>
|
|
|
<span v-if="row.isFas == '1'">是</span>
|
|
@@ -205,7 +205,7 @@
|
|
|
<el-table-column label="生效时间" prop="crteTime" width="140" />
|
|
|
<el-table-column label="采购单位" prop="purcUnt" width="80" />
|
|
|
<el-table-column label="采购价" prop="purcPric" width="80" />
|
|
|
- <el-table-column label="是否挂网" prop="isPub" width="80" fixed="right">
|
|
|
+ <el-table-column label="是否挂网" prop="isPub" width="70" fixed="right">
|
|
|
<template #default="{ row }">
|
|
|
<span v-if="row.isPub == '1'">是</span>
|
|
|
<span v-if="row.isPub == '0'">否</span>
|
|
@@ -219,7 +219,7 @@
|
|
|
<span v-if="row.status == 'R'">驳回 </span>
|
|
|
</template>
|
|
|
</el-table-column> -->
|
|
|
- <el-table-column fixed="right" label="操作" width="160">
|
|
|
+ <el-table-column fixed="right" label="操作" width="50">
|
|
|
<template slot-scope="scope">
|
|
|
<div>
|
|
|
<el-button type="text" @click="handleDui(scope.row)"
|