|
@@ -49,11 +49,21 @@
|
|
|
<el-table-column :resizable="false" prop="hisName" 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="form" label="药品剂型" show-overflow-tooltip></el-table-column>
|
|
|
- <el-table-column :resizable="false" prop="operate" label="状态">
|
|
|
+ <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>{{scope.row.status == 0?'禁用':'启用'}}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column :resizable="false" prop="operate" label="剂型术语状态">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span>{{scope.row.source == 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>
|