|
@ -130,6 +130,7 @@ import ButtonBase from '@/components/XButton/src/ButtonBase.vue' |
|
|
import TableForm from '@/components/TableForm/src/TableForm.vue' |
|
|
import TableForm from '@/components/TableForm/src/TableForm.vue' |
|
|
import TableFormCountPlan from '@/components/TableFormCountPlan/src/TableFormCountPlan.vue' |
|
|
import TableFormCountPlan from '@/components/TableFormCountPlan/src/TableFormCountPlan.vue' |
|
|
import { DICT_TYPE, getStrDictOptions } from '@/utils/dict' |
|
|
import { DICT_TYPE, getStrDictOptions } from '@/utils/dict' |
|
|
|
|
|
import { debounce } from 'lodash-es' |
|
|
|
|
|
|
|
|
const props = defineProps({ |
|
|
const props = defineProps({ |
|
|
// 显示窗口宽度设置 |
|
|
// 显示窗口宽度设置 |
|
@ -565,7 +566,9 @@ const buttonBaseClick = (val) => { |
|
|
} |
|
|
} |
|
|
// 保存 |
|
|
// 保存 |
|
|
else if (val == 'save') { |
|
|
else if (val == 'save') { |
|
|
submitForm() |
|
|
debounce(() => { |
|
|
|
|
|
submitForm() |
|
|
|
|
|
}, 2000)() |
|
|
} |
|
|
} |
|
|
// 关闭 |
|
|
// 关闭 |
|
|
else if (val == 'close') { |
|
|
else if (val == 'close') { |
|
|