布局任务清单

This commit is contained in:
qq787203167
2022-05-05 18:06:46 +08:00
parent db078cd7bf
commit e7024b87c1
5 changed files with 123 additions and 81 deletions
@@ -138,7 +138,7 @@
<a class="text-operation" @click="deleteLib(record)">{{$t('deleteLib')}}</a>
</span>
<span slot="titleName" slot-scope="text,record" :title="text">
{{text && text.length > 20 ? text.slice(0,19)+'...':text}}
{{text && text.length > 10 ? text.slice(0,9)+'...':text}}
</span>
<span slot="designDeliverableTemplateName" slot-scope="text,record">
<span>{{record.designDeliverableType_dictText}}</span><br v-if="record.designDeliverableType_dictText">
@@ -568,7 +568,7 @@
},
//模板下载
handleModule() {
downloadFile(this.url.exportTemplate, '模板下载.xls', {})
downloadFile(this.url.exportTemplate, this.$t('VirtualList')+this.$t('importTemplate')+'.xls', {})
},
//导出
handleExport() {
@@ -579,7 +579,7 @@
ids: selectedRowKeys.join(','),
dummyInventoryBaseId: this.$route.query.id
}
downloadFile(this.url.exportData, this.$route.query.name + '虚拟清单.zip', query, this.Deselect)
downloadFile(this.url.exportData, this.$route.query.name + this.$t('VirtualList')+'.zip', query, this.Deselect)
},
Deselect() {
this.selectedRowKeys = []