|
@@ -56,12 +56,12 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column :resizable="false" prop="operate" label="标准术语状态">
|
|
|
<template slot-scope="scope">
|
|
|
- <span>{{scope.row.status == 0?'禁用':'启用'}}</span>
|
|
|
+ <span v-if="scope.row.uniqueName && scope.row.uniqueName!=''">{{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>
|
|
|
+ <span v-if="scope.row.form && scope.row.form!=''">{{scope.row.formStatus == 0?'禁用':'启用'}}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column :resizable="false" prop="operate" label="操作">
|