|
@@ -42,7 +42,7 @@
|
|
|
<div class="contents knowledgeContents">
|
|
|
<el-table :data="list" border style="width: 100%">
|
|
|
<el-table-column type="index" :index="indexMethod" label="编号" width="60"></el-table-column>
|
|
|
- <el-table-column prop="parDescription" label="规则名称" width="160">
|
|
|
+ <el-table-column prop="parDescription" label="规则名称" width="180">
|
|
|
<template slot-scope="scope">
|
|
|
<!--<el-tooltip
|
|
|
v-if="scope.row.parDescription.length>8"
|
|
@@ -56,10 +56,10 @@
|
|
|
<span>{{scope.row.parDescription}}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="parRuleType" label="规则类型" width="150">
|
|
|
+ <el-table-column prop="parRuleType" label="规则类型" width="160">
|
|
|
<template slot-scope="scope">{{statusTrans(scope.row.parRuleType)}}</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="parConceptName" label="医学标准术语" width="160">
|
|
|
+ <el-table-column prop="parConceptName" label="医学标准术语" width="180">
|
|
|
<template slot-scope="scope">
|
|
|
<!--<el-tooltip
|
|
|
v-if="scope.row.parConceptName.length>8"
|
|
@@ -73,11 +73,11 @@
|
|
|
<span>{{scope.row.parConceptName}}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="parLibTypeName" label="术语类型" width="150"></el-table-column>
|
|
|
+ <el-table-column prop="parLibTypeName" label="术语类型" width="190"></el-table-column>
|
|
|
<el-table-column prop="parHasSub" label="有无子条件" width="100">
|
|
|
<template slot-scope="scope">{{scope.row.parHasSub == '0'?'无':'有'}}</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="状态">
|
|
|
+ <el-table-column label="状态" width="150">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{scope.row.parStatus === 0?'禁用':'启用'}}</span>
|
|
|
</template>
|
|
@@ -98,7 +98,7 @@
|
|
|
>{{scope.row.modifierName}}</span>
|
|
|
</template>
|
|
|
</el-table-column> -->
|
|
|
- <el-table-column prop="gmtModified" label="操作时间" width="180"></el-table-column>
|
|
|
+ <el-table-column prop="gmtModified" label="操作时间" width="190"></el-table-column>
|
|
|
<el-table-column label="操作" width="180" fixed="right">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button type="text" size="small" @click="editData(scope.row.parId)">修改</el-button>
|