|
@@ -107,17 +107,18 @@
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<div class="operation">
|
|
<div class="operation">
|
|
<el-button @click="addIndex(scope.$index)" type="text" size="small">
|
|
<el-button @click="addIndex(scope.$index)" type="text" size="small">
|
|
- <i class="el-icon-plus"></i>
|
|
|
|
|
|
+ <img src="../../../images/icon-add.png" alt="新增">
|
|
</el-button>
|
|
</el-button>
|
|
<el-button @click="delIndex(scope.$index)" type="text" size="small">
|
|
<el-button @click="delIndex(scope.$index)" type="text" size="small">
|
|
- <i class="el-icon-minus" style="color:red"></i>
|
|
|
|
|
|
+ <img src="../../../images/icon-delete.png" alt="删除">
|
|
</el-button>
|
|
</el-button>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-table>
|
|
<div class="add" v-if="form.hospitalRelationVOList.length == 0">
|
|
<div class="add" v-if="form.hospitalRelationVOList.length == 0">
|
|
- <el-button icon="el-icon-plus" @click="add"></el-button>
|
|
|
|
|
|
+ <!--<el-button icon="el-icon-plus"></el-button>-->
|
|
|
|
+ <p class="add-border" @click="add"><img src="../../../images/add-nob.png" alt="新增"></p>
|
|
</div>
|
|
</div>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-form-item>
|
|
@@ -454,12 +455,25 @@ export default {
|
|
justify-content: center;
|
|
justify-content: center;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+.add-border{
|
|
|
|
+ border:1px #48C5D7 dashed;
|
|
|
|
+ width: 96%;
|
|
|
|
+ text-align: center;
|
|
|
|
+ line-height: 30px;
|
|
|
|
+ cursor: pointer;
|
|
|
|
+ img{
|
|
|
|
+ vertical-align: middle;
|
|
|
|
+ }
|
|
|
|
+}
|
|
.add {
|
|
.add {
|
|
width: 100%;
|
|
width: 100%;
|
|
height: 80px;
|
|
height: 80px;
|
|
display: flex;
|
|
display: flex;
|
|
justify-content: center;
|
|
justify-content: center;
|
|
align-items: center;
|
|
align-items: center;
|
|
|
|
+ border:1px solid #ebeef5;
|
|
|
|
+ border-top: none;
|
|
|
|
+ box-sizing: border-box;
|
|
}
|
|
}
|
|
.diag-center {
|
|
.diag-center {
|
|
text-align: center;
|
|
text-align: center;
|