127ce18f by lihua

fix: 导出按钮不生效

1 parent f02f263b
......@@ -188,7 +188,7 @@ const pageChange = (info) => {
const promise: any = ref(null);
const exportData = () => {
if (promise) {
if (promise.value) {
return;
}
promise.value = exportAnonExecData({
......
......@@ -284,7 +284,7 @@ const fieldRulesFormItems = ref([{
const fieldRulesFormRules = ref({
fieldName: [required('请选择字段')],
// dataTypeCode: [required('请选择数据类型')], //不填标识非敏感标识。
dataTypeCode: [required('请选择数据类型')], //不填标识非敏感标识。
// desensitiveRuleCode: [required('请选择脱敏规则')], 脱敏规则和泛化文件选择一个即可。二者必选其一,可以两者共存。
encryptionAlgorithmCode: [required('请选择加密算法')],
salted: [required('请输入加盐值')],
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!