对接导出

This commit is contained in:
qq787203167
2022-02-25 10:41:17 +08:00
parent 3f8122ef05
commit 54efa7fe1a
3 changed files with 280 additions and 31 deletions
+4 -4
View File
@@ -15,10 +15,10 @@
<span slot="operation" slot-scope="record">
<a class="text" v-for="(ol,index) in OperationList"
@click="OperationClick(ol,record)">
<span v-if="ol.text == '收藏'">
<span v-if="ol.text == '取消收藏'">
{{!record.collectFlag || record.collectFlag == 0 ? '收藏' :'取消收藏'}}
</span>
<span v-else-if="ol.text == '订阅'">
<span v-else-if="ol.text == '取消订阅'">
{{!record.subscribeFlag || record.subscribeFlag == 0 ? '订阅' :'取消订阅'}}
</span>
<span v-else>
@@ -135,12 +135,12 @@
let width = 0
if (this.OperationList.length > 0) {
this.OperationList.forEach((res) => {
width += res.text.length * 9 + width
width += res.text.length * 5 + width
})
}
if (this.showAction) {
this.columns.push({
title: '操作',
title: this.$t('operation'),
align: 'center',
fixed: 'right',
width: width,