|
@@ -52,11 +52,6 @@
|
|
|
<el-table-column :resizable="false" prop="hisName" label="检验套餐" show-overflow-tooltip></el-table-column>
|
|
|
<el-table-column :resizable="false" prop="hisDetailName" label="检验细项" show-overflow-tooltip></el-table-column>
|
|
|
<el-table-column :resizable="false" prop="uniqueName" label="标准检验项" show-overflow-tooltip></el-table-column>
|
|
|
- <el-table-column :resizable="false" prop="operate" label="匹配状态:">
|
|
|
- <template slot-scope="scope">
|
|
|
- <span>{{scope.row.isMatch == 0?'未匹配':'已匹配'}}</span>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
<el-table-column :resizable="false" prop="operate" label="标准术语状态">
|
|
|
<template slot-scope="scope">
|
|
|
<span
|
|
@@ -64,6 +59,11 @@
|
|
|
>{{scope.row.status == 0?'禁用':'启用'}}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column :resizable="false" prop="operate" label="匹配状态:">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span>{{scope.row.isMatch == 0?'未匹配':'已匹配'}}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column :resizable="false" prop="operate" label="操作">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button @click="modifyRelation(scope.row)" type="text" size="small">修改</el-button>
|