diff --git a/src/components/Form/src/components/Upload.vue b/src/components/Form/src/components/Upload.vue
index a225bd6..dc338df 100644
--- a/src/components/Form/src/components/Upload.vue
+++ b/src/components/Form/src/components/Upload.vue
@@ -69,9 +69,9 @@
点击上传
-
+
@@ -217,7 +217,7 @@
});
emit('update:value', folderId.value);
- emit('change', fileList.value);
+ emit('change');
loading.value = false;
} catch (error) {
console.error(error);
@@ -380,12 +380,6 @@
downloadByUrl({ url: res.url, fileName: res.name || 'files.zip' });
}
}
- function getValue () {
- return fileList.value
- }
- defineExpose({
- getValue
- });
diff --git a/src/router/routes/basic.ts b/src/router/routes/basic.ts
index d53957b..ef51de0 100644
--- a/src/router/routes/basic.ts
+++ b/src/router/routes/basic.ts
@@ -224,14 +224,6 @@ export const FLOW_ROUTE: AppRouteRecordRaw[] = [{
title: (route) => '查看'+(route.query.formName||'表单')
}
},
- {
- path: 'createFormCustomer',
- name: 'createFormCustomer',
- component: () => import('/@/views/sales/Customer/formCreatePage.vue'),
- meta: {
- title: (route) => '新建'+(route.query.formName||'表单')
- }
- }
]
}];
export const PROCESS_MONITORING: AppRouteRecordRaw[] = [{
diff --git a/src/views/sales/Customer/components/bankListModal.vue b/src/views/sales/Customer/components/bankListModal.vue
index e99db73..26f3536 100644
--- a/src/views/sales/Customer/components/bankListModal.vue
+++ b/src/views/sales/Customer/components/bankListModal.vue
@@ -157,43 +157,6 @@
}
closeModal();
emit('success', selectedValues.value);
- // try {
- // const values = await validate();
- // let data = getDataSource();
- // data.sort((a, b) => {
- // return a.sortNum - b.sortNum;
- // });
- // values.formatJson = JSON.stringify(data);
- // setModalProps({ confirmLoading: true });
- // if (values.formatJson === '[]') {
- // notification.warning({
- // message: t('提示'),
- // description: t('编码规则不能为空')
- // });
- // return;
- // }
- // // TODO custom api
- // if (!unref(isUpdate)) {
- // //false 新增
- // await addCodeRule(values);
- // notification.success({
- // message: t('提示'),
- // description: t('新增成功')
- // }); //提示消息
- // } else {
- // values.id = rowId.value;
- // await editCodeRule(values);
- // notification.success({
- // message: t('提示'),
- // description: t('修改成功!')
- // }); //提示消息
- // }
-
- // closeModal();
- // emit('success');
- // } finally {
- // setModalProps({ confirmLoading: false });
- // }
}
diff --git a/src/views/sales/Customer/components/certificateModal.vue b/src/views/sales/Customer/components/certificateModal.vue
index 22d07c1..c6a4951 100644
--- a/src/views/sales/Customer/components/certificateModal.vue
+++ b/src/views/sales/Customer/components/certificateModal.vue
@@ -28,7 +28,7 @@
-
+
{{ fileTip }}
@@ -41,11 +41,11 @@