Commit 161113ab by Sweet Zhang

新增是否专业投资者

parent e1fa731f
......@@ -742,14 +742,14 @@ const remittanceConfig = [
type: 'upload',
prop: 'paymentVoucherList',
label: '支付凭证',
uploadType: 'image',
uploadType: 'file',
multiple: true,
limit: 5,
maxSize: 5 * 1024 * 1024, // 5MB
accept: '.png,.jpg,.jpeg,.webp', // ✅ 改成扩展名!
limit: 10,
maxSize: 10 * 1024 * 1024, // 10MB
accept: '.png,.jpg,.jpeg,.webp,.pdf,.doc,.docx,.xls,.xlsx,.txt', // ✅ 改成扩展名!
action: import.meta.env.VITE_APP_BASE_API + '/oss/api/oss/upload',
headers: { Authorization: 'Bearer ' + getToken() },
listType: 'picture-card',
listType: 'text',
defaultValue: [],
span: 24,
rules: [{ required: true, message: '请上传支付凭证', trigger: 'blur' }]
......@@ -758,14 +758,14 @@ const remittanceConfig = [
type: 'upload',
prop: 'accountVerificationList',
label: '账户证明',
uploadType: 'image',
uploadType: 'file',
multiple: true,
limit: 5,
maxSize: 5 * 1024 * 1024, // 5MB
accept: '.png,.jpg,.jpeg,.webp', // ✅ 改成扩展名!
limit: 10,
maxSize: 10 * 1024 * 1024, // 10MB
accept: '.png,.jpg,.jpeg,.webp,.pdf,.doc,.docx,.xls,.xlsx,.txt', // ✅ 改成扩展名!
action: import.meta.env.VITE_APP_BASE_API + '/oss/api/oss/upload',
headers: { Authorization: 'Bearer ' + getToken() },
listType: 'picture-card',
listType: 'text',
defaultValue: [],
span: 24,
rules: [{ required: true, message: '请上传账户证明', trigger: 'blur' }]
......@@ -776,7 +776,7 @@ const remittanceConfig = [
label: '其他资料',
uploadType: 'file',
multiple: true,
limit: 5,
limit: 10,
maxSize: 10 * 1024 * 1024, // 5MB
accept: '.png,.jpg,.jpeg,.webp,.pdf,.doc,.docx,.xls,.xlsx,.txt', // ✅ 支持多种格式
action: import.meta.env.VITE_APP_BASE_API + '/oss/api/oss/upload',
......
......@@ -239,7 +239,7 @@ import CommonDialog from '@/components/commonDialog'
import { ElMessage, ElMessageBox } from 'element-plus'
import { Delete, Edit, Search, Share, Upload } from '@element-plus/icons-vue'
import { getPolicyfollow, getProductList } from '@/api/sign/underwritingMain'
import { uploadOssFileList,delUploadFile,getUserSaleExpandList } from '@/api/common'
import { uploadOssFileList,delUploadFile } from '@/api/common'
import { getProcessDetail } from '@/api/sign/fna'
import { premiumReconciliationList } from '@/api/sign/policy'
import { loadDicts, getDictLabel } from '@/utils/useDict'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment