|
@@ -11,11 +11,11 @@ Page({
|
|
|
*/
|
|
|
data: {
|
|
|
form: {
|
|
|
- 'user_name': '', // 用户姓名
|
|
|
+ 'user_name': '', // 必填 用户姓名
|
|
|
'shop_name': '', // 店铺名称
|
|
|
- 'user_card': '', // 身份证
|
|
|
- 'shop_phone': '', // 手机号码
|
|
|
- 'country_msg': '', // 乡村信息
|
|
|
+ 'user_card': '', // 必填 身份证
|
|
|
+ 'shop_phone': '', // 必填 手机号码
|
|
|
+ 'country_msg': '', // 必填 乡村信息
|
|
|
'user_code_url': [], // 微信二维码
|
|
|
'user_wechat_code': '', // 微信号
|
|
|
'shop_img_url': [], // 店铺图片地址
|
|
@@ -107,6 +107,13 @@ Page({
|
|
|
]
|
|
|
}
|
|
|
|
|
|
+ if (key === 'country_msg') {
|
|
|
+ const index = this.data.countryMsgList.findIndex(item => item === value)
|
|
|
+ if (index > -1) {
|
|
|
+ temp['countryMsgInDefaultIndex'] = index
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
if (key === 'shop_address') {
|
|
|
value = JSON.parse(value)
|
|
|
}
|
|
@@ -309,18 +316,14 @@ Page({
|
|
|
errorList.push('请输入手机号')
|
|
|
}
|
|
|
if (!country_msg) {
|
|
|
- errorList.push('请输入村信息')
|
|
|
- }
|
|
|
-
|
|
|
- if (!shop_address.address_name) {
|
|
|
- errorList.push('请选择详细地址')
|
|
|
+ errorList.push('请选择村信息')
|
|
|
}
|
|
|
|
|
|
return errorList
|
|
|
},
|
|
|
async onSubmit() {
|
|
|
const temp = this.getForm()
|
|
|
- const verifyList = this.verify()
|
|
|
+ // const verifyList = this.verify()
|
|
|
|
|
|
if (verifyList.length) {
|
|
|
wx.showToast({
|
|
@@ -333,7 +336,7 @@ Page({
|
|
|
booLock: true
|
|
|
})
|
|
|
try {
|
|
|
- const { status, data, msg } = await userApplyShop(temp)
|
|
|
+ const { status, msg } = await userApplyShop(temp)
|
|
|
if (status) {
|
|
|
wx.switchTab({
|
|
|
url: '/pages/mine/mine'
|