[update] 修改bug87806

This commit is contained in:
lideqin
2024-08-01 09:35:41 +08:00
parent 083f572b53
commit 1e1738c3d7
@@ -219,7 +219,7 @@
<!-- 操作栏 --> <!-- 操作栏 -->
<div slot="action" slot-scope="{record}" class="action-span-cell"> <div slot="action" slot-scope="{record}" class="action-span-cell">
<a @click="handleDelete(record.uid)" class="table-ope-btn" :disabled="disabled">{{ $t('delete') }}</a> <a @click="handleDelete(record.uid)" class="operate-del-btn" :disabled="disabled">{{ $t('delete') }}</a>
</div> </div>
</j-table> </j-table>
@@ -854,12 +854,13 @@ export default {
handleDownload (id, name) { handleDownload (id, name) {
// 下载文件 // 下载文件
downloadFile(`/sys/common/download/${id}`, name) downloadFile(`/sys/common/download/${id}`, name)
}, }
} }
} }
</script> </script>
<style scoped lang="less"> <style scoped lang="less">
@import '~@assets/less/common.less';
.form-add { .form-add {
margin-top: 20px; margin-top: 20px;
} }