|
@@ -14,9 +14,26 @@
|
|
|
<!-- 广告图位置 -->
|
|
|
<span slot="position" slot-scope="text">{{ $refs.position.getNameByCode(text) }}</span>
|
|
|
<span slot="action" slot-scope="text, record">
|
|
|
- <a-icon type="eye" id="bannerSetting-handleDel" :style="{ fontSize: '20px', color: '#e29e14', padding: '0 10px' }" @click="handleEdit(record, 1)" />
|
|
|
- <a-icon type="edit" id="bannerSetting-handleEdit" v-if="record.status == '0'" style="font-size: 20px;color: #1890FF;padding: 0 10px;" @click="handleEdit(record, 0)" />
|
|
|
- <a-icon type="delete" id="bannerSetting-delect" v-if="record.status == '0'" style="font-size: 20px;color: red;padding: 0 10px;" @click="delect(record)" />
|
|
|
+ <a-icon
|
|
|
+ type="eye"
|
|
|
+ id="bannerSetting-handleView"
|
|
|
+ title="查看"
|
|
|
+ class="actionBtn icon-green"
|
|
|
+ @click="handleEdit(record, 1)" />
|
|
|
+ <a-icon
|
|
|
+ type="edit"
|
|
|
+ id="bannerSetting-handleEdit"
|
|
|
+ v-if="record.status == '0'"
|
|
|
+ title="编辑"
|
|
|
+ class="actionBtn icon-blues"
|
|
|
+ @click="handleEdit(record, 0)" />
|
|
|
+ <a-icon
|
|
|
+ type="delete"
|
|
|
+ id="bannerSetting-delect"
|
|
|
+ v-if="record.status == '0'"
|
|
|
+ title="删除"
|
|
|
+ class="actionBtn icon-red"
|
|
|
+ @click="delect(record)" />
|
|
|
</span>
|
|
|
<span slot="status" slot-scope="text, record">
|
|
|
<a-switch
|