|
@@ -733,7 +733,8 @@ const onObserve = () => {
|
|
queryList();
|
|
queryList();
|
|
});
|
|
});
|
|
})
|
|
})
|
|
- .catch(() => {});
|
|
|
|
|
|
+ .catch(() => {
|
|
|
|
+ });
|
|
};
|
|
};
|
|
// 设置终结件
|
|
// 设置终结件
|
|
const onEnd = () => {
|
|
const onEnd = () => {
|
|
@@ -755,7 +756,8 @@ const onEnd = () => {
|
|
queryList();
|
|
queryList();
|
|
});
|
|
});
|
|
})
|
|
})
|
|
- .catch(() => {});
|
|
|
|
|
|
+ .catch(() => {
|
|
|
|
+ });
|
|
};
|
|
};
|
|
// 创建重复性事件
|
|
// 创建重复性事件
|
|
const repeatEventEditRef = ref<RefType>();
|
|
const repeatEventEditRef = ref<RefType>();
|
|
@@ -790,7 +792,22 @@ const onJbExport = () => {
|
|
state.loading = false;
|
|
state.loading = false;
|
|
});
|
|
});
|
|
})
|
|
})
|
|
- .catch(() => {});
|
|
|
|
|
|
+ .catch(() => {
|
|
|
|
+ });
|
|
|
|
+};
|
|
|
|
+// 打开内容检索
|
|
|
|
+const contentRetrieval = () => {
|
|
|
|
+ state.dialogVisible = !state.dialogVisible;
|
|
|
|
+};
|
|
|
|
+const ruleFormContentRef = ref<RefType>();
|
|
|
|
+// 内容检索
|
|
|
|
+const onSearch = (formEl: FormInstance | undefined) => {
|
|
|
|
+ if (!formEl) return;
|
|
|
|
+ formEl.validate((valid: boolean) => {
|
|
|
|
+ if (!valid) return;
|
|
|
|
+ queryList(true);
|
|
|
|
+ state.dialogVisible = false;
|
|
|
|
+ });
|
|
};
|
|
};
|
|
// 打开内容检索
|
|
// 打开内容检索
|
|
const contentRetrieval = () => {
|
|
const contentRetrieval = () => {
|