zhanghua
5 天以前 61a844ab928b51c33b18a51ddacde8274ef35e29
manager/src/views/seller/shop/shopOperation.vue
@@ -73,7 +73,7 @@
                  shape="square"
                  icon="ios-person"
                  size="default"
                  :src="shopForm.storeLogo"
                  :src="endpoint + '/' + shopForm.storeLogo"
                />
                <div>
                  <Button @click="handleCLickImg('storeLogo')" type="primary"
@@ -208,7 +208,7 @@
                  shape="square"
                  icon="ios-person"
                  size="default"
                  :src="shopForm.licencePhoto"
                  :src="endpoint + '/' + shopForm.licencePhoto"
                />
                <div>
                  <Button @click="handleCLickImg('licencePhoto')" type="primary"
@@ -231,7 +231,7 @@
                  size="100"
                  icon="md-add"
                  @click.native="handleCLickImg('legalPhoto', 0)"
                  :src="shopForm.legalPhoto[0]"
                  :src="endpoint + '/' + shopForm.legalPhoto[0]"
                />
                <Avatar
                  class="ml_10 legal-photo"
@@ -239,7 +239,7 @@
                  size="100"
                  icon="md-add"
                  @click.native="handleCLickImg('legalPhoto', 1)"
                  :src="shopForm.legalPhoto[1]"
                  :src="endpoint + '/' + shopForm.legalPhoto[1]"
                />
                <span>点击图片上传身份证正反面,要求身份证清晰,四角无缺漏</span>
              </FormItem>
@@ -427,6 +427,7 @@
  data() {
    return {
      endpoint: this.endpoint,
      shopId: this.$route.query.shopId, // 店铺id
      isRead: false, // 是否只读,只有在店铺通过审核才可修改
      selectedFormBtnName: "", // 点击图片绑定form
@@ -476,7 +477,7 @@
          { required: true, message: "联系人手机号不能为空" },
          {
            type: "string",
            pattern: /^1[3|4|5|6|7|8][0-9]{9}$/,
            pattern: /^1[3|4|5|6|7|8|9][0-9]{9}$/,
            message: "手机号格式出错",
            trigger: "blur",
          },
@@ -498,7 +499,7 @@
        salesConsigneeMobile: [
          {
            type: "string",
            pattern: /^1[3|4|5|6|7|8][0-9]{9}$/,
            pattern: /^1[3|4|5|6|7|8|9][0-9]{9}$/,
            message: "手机号格式出错",
            trigger: "blur",
          },