|
@@ -85,10 +85,10 @@
|
|
|
<template slot-scope="scope">
|
|
|
<div class="operation">
|
|
|
<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 @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>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -363,6 +363,11 @@ export default {
|
|
|
width: 100%;
|
|
|
display: flex;
|
|
|
justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ & img{
|
|
|
+ width: 16px;
|
|
|
+ height: 16px;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
.add {
|