[update] 解决bug87328

This commit is contained in:
lideqin
2024-07-22 09:30:47 +08:00
parent 86d4ca1e5c
commit 36f40b7e27
@@ -134,7 +134,7 @@
<!-- 复制 -->
<a-button icon="copy" type="primary" @click="handleCopy" v-has="'marketStandard:detail:operate'">{{ $t('copy') }}</a-button>
<!-- 批量删除 -->
<a-button icon="delete" type="primary" ghost @click="batchDel" v-has="'marketStandard:detail:operate'">{{ $t('batchDelete') }}</a-button>
<a-button icon="delete" type="danger" ghost @click="batchDel" v-has="'marketStandard:detail:operate'">{{ $t('batchDelete') }}</a-button>
<!-- 导入 -->
<a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" :data="importData" @change="handleImportExcel" v-has="'marketStandard:detail:operate'">
<a-button icon="download" type="primary" ghost>{{ $t('import') }}</a-button>
@@ -171,7 +171,7 @@
<template v-slot:action="{text, record}">
<a @click="handleEdit(record)" v-has="'marketStandard:detail:operate'">{{ $t('edit') }}</a>
<a-divider type="vertical" v-has="'marketStandard:detail:operate'" />
<a @click="handleDelete(record.id)" class="table-ope-btn" v-has="'marketStandard:detail:operate'">{{ $t('delete') }}</a>
<a @click="handleDelete(record.id)" class="operate-del-btn" v-has="'marketStandard:detail:operate'">{{ $t('delete') }}</a>
</template>
</j-table>