Feat(入驻):扫码跳转增加子账号参数字段

This commit is contained in:
lifizer
2026-05-24 15:26:07 +08:00
parent 3826e11a3e
commit 7bf0344028
7 changed files with 58 additions and 31 deletions
+5 -3
View File
@@ -408,7 +408,8 @@ export default {
cultureImg: [],
// 资质图片
qualificationImg: [],
partnerId: 0,
partnerId: '',
promoterUid: '',
captcha: '',
form: {
/**
@@ -466,9 +467,10 @@ export default {
}
},
onLoad(opts) {
this.partnerId = opts.partnerId
this.partnerId = opts.partnerId || ''
this.promoterUid = opts.promoterUid || ''
this.queryCity()
getShopData().then(({data}) => {
getShopData({partnerId: this.partnerId, promoterUid: this.promoterUid}).then(({data}) => {
this.notice = data.merchantApplyNotice
this.initInfo()
})