This commit is contained in:
2026-01-21 16:10:29 +08:00
2 changed files with 6 additions and 3 deletions

View File

@@ -47,9 +47,9 @@
padding-right: 30px !important;
}
.vxe-modal--wrapper.type--modal .vxe-modal--body .vxe-modal--content {
padding-right: var(--padding-medium);
}
// .vxe-modal--wrapper.type--modal .vxe-modal--body .vxe-modal--content {
// padding-right: var(--padding-medium);
// }
.vxe-table--resizable-col-bar {
.vxe-table--resizable-number-tip {
background-color: var(--el-color-primary) !important;

View File

@@ -60,7 +60,9 @@ import nodeNameMixed from './nodeNameMixed.vue';
import { TABLE_NAME } from '@/utils/enum/tableName';
import { useDict } from '@/utils/useDict';
import { useI18n } from 'vue-i18n';
import { useTaskStore } from '@/stores/taskPool';
const taskStore = useTaskStore();
enum OPERATION_TYPE {
ADD = 'add',
EDIT = 'edit',
@@ -137,6 +139,7 @@ watch(
}
}
});
taskStore.fetchTemplates(true);
}
}
);