|
@@ -54,7 +54,7 @@
|
|
|
>
|
|
|
<el-table-column label="依据" width="100" fixed>
|
|
|
<template slot="header" slot-scope="scope">
|
|
|
- <span>依据</span>
|
|
|
+ <span class="name">依据</span>
|
|
|
</template>
|
|
|
<template slot-scope="scope">
|
|
|
<el-form-item>
|
|
@@ -86,7 +86,7 @@
|
|
|
<el-table-column label="诊断依据类型" width="130">
|
|
|
<template slot="header" slot-scope="scope">
|
|
|
<span class="star">*</span>
|
|
|
- <span>诊断依据类型</span>
|
|
|
+ <span class="name">诊断依据类型</span>
|
|
|
</template>
|
|
|
<template slot-scope="scope">
|
|
|
<el-form-item
|
|
@@ -111,7 +111,7 @@
|
|
|
<el-table-column label="组" width="130">
|
|
|
<template slot="header" slot-scope="scope">
|
|
|
<span class="star">*</span>
|
|
|
- <span>组</span>
|
|
|
+ <span class="name">组</span>
|
|
|
</template>
|
|
|
<template slot-scope="scope">
|
|
|
<el-form-item>
|
|
@@ -136,7 +136,7 @@
|
|
|
<el-table-column label="符合条件数量" width="150">
|
|
|
<template slot="header" slot-scope="scope">
|
|
|
<span class="star">*</span>
|
|
|
- <span>符合条件数量</span>
|
|
|
+ <span class="name">符合条件数量</span>
|
|
|
</template>
|
|
|
<template slot-scope="scope">
|
|
|
<el-form-item
|
|
@@ -157,7 +157,7 @@
|
|
|
<el-table-column v-for="(v,i) in columns" :width="v.width" :key="i">
|
|
|
<template slot="header" slot-scope="scope">
|
|
|
<span class="star" v-if="v.istar">*</span>
|
|
|
- <span>{{v.title}}</span>
|
|
|
+ <span class="name">{{v.title}}</span>
|
|
|
</template>
|
|
|
<template slot-scope="scope">
|
|
|
<div v-for="(item,index) in scope.row.groupVO" :key="index">
|
|
@@ -1461,6 +1461,9 @@ export default {
|
|
|
color: #545455;
|
|
|
min-width: 980px;
|
|
|
position: relative;
|
|
|
+ .name {
|
|
|
+ font-size: 14px;
|
|
|
+ }
|
|
|
.tip-text {
|
|
|
color: #f56c6c;
|
|
|
margin-left: 10px;
|
|
@@ -1648,7 +1651,7 @@ export default {
|
|
|
.item .el-form-item__label {
|
|
|
font-size: 14px;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
.Butn {
|
|
|
display: flex;
|
|
|
justify-content: center;
|