🐞 fix: 修改部分页面会导致全局样式失效

This commit is contained in:
砂糖
2025-09-17 15:10:37 +08:00
parent 0e93df9985
commit 3c30290b50
7 changed files with 24 additions and 5 deletions

View File

@@ -78,6 +78,15 @@
v-hasPermi="['system:dict:export']"
>导出</el-button>
</el-col>
<!-- <el-col :span="1.5">
<el-button
type="primary"
plain
icon="el-icon-copy"
size="mini"
@click="handleCopy"
>复制</el-button>
</el-col> -->
<el-col :span="1.5">
<el-button
type="warning"
@@ -396,7 +405,17 @@ export default {
this.download('system/dict/data/export', {
...this.queryParams
}, `data_${new Date().getTime()}.xlsx`)
}
},
/** 复制按钮操作 */
// handleCopy() {
// // 复制字典进入系统剪切板,数据结构:{dictName: '', dictType: '', data: [
// //
// // ], status: '0', remark: ''}
// this.reset();
// this.open = true;
// this.title = "复制字典数据";
// this.form.dictType = this.queryParams.dictType;
// }
}
};
</script>