Browse Source

始宁农业小程序:商户申请必填信息修改

panyong 2 years ago
parent
commit
578ad4cad0
1 changed files with 14 additions and 11 deletions
  1. 14 11
      htmldev/shiningWxMini/pages/businessApply/businessApply.js

+ 14 - 11
htmldev/shiningWxMini/pages/businessApply/businessApply.js

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