diff --git a/src/api/login.js b/src/api/login.js index e380a5d..fb1461b 100644 --- a/src/api/login.js +++ b/src/api/login.js @@ -150,6 +150,26 @@ export function re_apply(params){ }) } +/** + * 获取申请信息详情 + * @author Seven + * @data 2025-3-4 + * @param { } + * @returns { mobile:13199998888 } + * @see https://mall.gpxscs.cn/mobile/shop/merch/detail + */ + + export function GetAuditInfo(data) { + return new Promise((resolve, reject) => { + http({ + url:'/api/mobile/shop/merch/detail', + method:'post', + data, + }).then(res=>{ + resolve(res) + }).catch(e => reject(console.warn(e))) + }) +} /** * 账号密码登录 diff --git a/src/components/register.vue b/src/components/register.vue index ac44352..f9ecf76 100644 --- a/src/components/register.vue +++ b/src/components/register.vue @@ -1,22 +1,30 @@ - \ No newline at end of file + +.register-container { + padding: 25px; + border-radius: 10px; + background-color: #fff; + width: 500px; + position: relative; + + h4 { + color: #666; + text-align: center; + margin-bottom: 30px; + font-size: 24px; + } + + .el-input { + width: 100%; + } + + .verifyAndButton { + display: flex; + width: 100%; + } + + .register-close { + position: absolute; + top: 10px; + right: 10px; + } + + p { + color: red; + margin: 10px 0; + } +} + diff --git a/src/views/start/check.vue b/src/views/start/check.vue index 1eb264c..9a7efdd 100644 --- a/src/views/start/check.vue +++ b/src/views/start/check.vue @@ -1,706 +1,1557 @@ - \ No newline at end of file + diff --git a/src/views/start/formConfig.js b/src/views/start/formConfig.js new file mode 100644 index 0000000..5feda86 --- /dev/null +++ b/src/views/start/formConfig.js @@ -0,0 +1,200 @@ +const formConfig = [ + { + type:"input", + key:'contact_name', + label:'联系人', + placeholder:'请输入联系人', + }, + { + type:"select", + key:'biz_category', + label:'经营品类', + isReadonly:true, + style:"pointer-events: none", + placeholder:'请选择经营品类', + }, + { + type:"input", + key:'store_name', + label:'门店名称', + placeholder:'请输入门店名称', + }, + { + type:"select", + key:'mapAddress', + label:'店铺所在地区', + isReadonly:true, + style:"pointer-events: none", + placeholder:'请在地图上选择门店地址', + }, + { + type:"input", + key:'store_address', + label:'店铺详细地址', + placeholder:'请输入店铺详细地址', + }, + { + type:'upload', + key:'storefrontImg', + label:'门脸图片', + class:"upload-1", + placeholder:'', + imgUrlArr:[], + imgWidth:270, + imgHeight:150 + }, + { + type:'upload', + key:'surroundingsImg', + class:"upload-2", + label:'环境图片', + placeholder:'', + imgUrlArr:[], + imgWidth:270, + imgHeight:150 + }, + { + type:"input", + key:'license_number', + label:'许可证编号', + placeholder:'请输入许可证编号', + }, + { + type:"input", + key:'biz_license_number', + label:'注册号', + placeholder:'请输入注册号', + }, + { + type:"input", + key:'biz_license_company', + label:'公司名称', + placeholder:'请输入公司名称', + }, + { + type:"input", + key:'legal_person_name', + label:'法人姓名', + placeholder:'请输入法人姓名', + }, + { + type:"input", + key:'legal_person_mobile', + label:'法人手机号', + placeholder:'请输入法人手机号', + }, + { + type:"input", + key:'legal_person_id_number', + label:'法人身份证号码', + placeholder:'请输入法人身份证号', + }, + { + type:'upload', + key:'biz_license_image', + class:"upload-3", + label:'营业执照图片', + placeholder:'', + imgUrlArr:[], + imgWidth:125, + imgHeight:88 + }, + { + type:"select", + key:'license_type', + label:'许可证类型', + isReadonly:true, + style:"pointer-events: none", + placeholder:'请选择许可证类型', + }, + { + type:"input", + key:'license_number', + label:'许可证编号', + placeholder:'', + }, + { + type:"input", + type:'upload', + key:'license_image', + label:'许可证图片', + class:"upload-4", + placeholder:'', + imgUrlArr:[], + imgWidth:125, + imgHeight:88, + imgUpMaxCount:5 + }, + { + type:'upload', + key:'legal_person_id_images', + label:'法人身份证正面图片', + class:"upload-5", + placeholder:'', + imgUrlArr:[], + imgWidth:180, + imgHeight:110 + }, + { + type:'upload', + key:'legal_person_id_images2', + label:'法人身份证反面图片', + class:"upload-6", + placeholder:'', + imgUrlArr:[], + imgWidth:180, + imgHeight:110 + }, + { + type:"select", + key:'bank_name', + label:'开户银行', + isReadonly:true, + style:"pointer-events: none", + placeholder:'请选择开户银行', + }, + { + key:'bank_branch_name', + label:'开户支行', + placeholder:'请输入开户支行名称', + }, + { + type:"input", + key:'account_number', + label:'银行卡号', + placeholder:'请输入银行卡号', + }, + { + type:"input", + key:'account_holder_name', + label:'开户名称', + placeholder:'请输入开户名称', + }, + { + type:"input", + key:'individual_id_number', + label:'个人身份证号码', + placeholder:'请输入个人身份证号码', + }, + { + type:'upload', + key:'individual_id_images', + label:'个人身份证正面图片', + class:"upload-5", + placeholder:'', + imgUrlArr:[] + }, + { + type:'upload', + key:'individual_id_images2', + label:'个人身份证反面图片', + class:"upload-5", + placeholder:'', + imgUrlArr:[] + }, +] + + +export default { + formConfig, +} diff --git a/src/views/start/start.vue b/src/views/start/start.vue index 3b6134f..5bb0a6b 100644 --- a/src/views/start/start.vue +++ b/src/views/start/start.vue @@ -546,10 +546,10 @@ >