|
|
@@ -7,7 +7,7 @@
|
|
|
<div class="search-table-container">
|
|
|
<header>
|
|
|
<div style="position: relative">
|
|
|
- <el-button type="primary" class="search-table-container--button" @click="handleCreate"> 添加 </el-button>
|
|
|
+ <el-button type="primary" class="search-table-container--button" @click="handleCreate" :icon="Plus"> 添加 </el-button>
|
|
|
<el-button plain class="search-table-container--button" @click="handleImport"> 导入 </el-button>
|
|
|
</div>
|
|
|
|
|
|
@@ -285,6 +285,7 @@
|
|
|
import BasicTable from '@/components/BasicTable.vue';
|
|
|
import useTableConfig from '@/hooks/useTableConfigHook';
|
|
|
import ActionButton from '@/components/ActionButton.vue';
|
|
|
+ import { Plus } from '@element-plus/icons-vue';
|
|
|
import {
|
|
|
TABLE_OPTIONS,
|
|
|
AREA_CHECK_PLAN_TABLE_COLUMNS,
|
|
|
@@ -652,7 +653,7 @@
|
|
|
showIssueDialog.value = false;
|
|
|
getTableData();
|
|
|
} catch (e) {
|
|
|
- console.error('下发失败:', e);
|
|
|
+ ElMessage.error(e.message);
|
|
|
}
|
|
|
};
|
|
|
|