feat: 数据库查询结果导出&其他小问题修复

This commit is contained in:
meilin.huang
2022-09-23 14:27:50 +08:00
parent 22c401f9d8
commit cfb7fd5b29
74 changed files with 331 additions and 5556 deletions

View File

@@ -187,9 +187,9 @@ export default defineComponent({
},
});
watch(props, (newValue) => {
if (props.machineId) {
getScripts();
watch(props, async (newValue) => {
if (props.machineId && newValue.visible) {
await getScripts();
}
state.dialogVisible = newValue.visible;
});