Browse Source

🎈 perf: 体验优化

GuYun-D 1 year ago
parent
commit
c51512cf8d
2 changed files with 59 additions and 42 deletions
  1. 43 38
      src/views/moblie/mStatus.vue
  2. 16 4
      src/views/moblie/mUinitBusiness.vue

+ 43 - 38
src/views/moblie/mStatus.vue

@@ -16,51 +16,56 @@
 export default {
   name: 'mStatus',
   methods: {
-    goToHome () {
-      this.$router.push({name: 'home'})
+    goToHome() {
+      // this.$router.push({name: 'home'})
+      window.location.href = 'https://www.tuanfengkeji.cn/TFShop_Uni_H5/#/'
     }
   }
 }
 </script>
 
 <style lang="scss" scoped>
-  .mStatus {
-    display: flex;
-    height: 100%;
-    align-items: center;
-    justify-content: center;
-    .statusCent {
-      .status {
-        text-align: center;
-        img {
-          width: 140px;
-          height: 140px;
-        }
-        h3 {
-          font-size: 18px;
-          color: #333333;
-          margin: 20px 0;
-        }
-        p {
-          width: 80%;
-          margin: 0 auto;
-          color: #999999;
-          font-size: 12px;
-          line-height: 25px;
-        }
+.mStatus {
+  display: flex;
+  height: 100%;
+  align-items: center;
+  justify-content: center;
+
+  .statusCent {
+    .status {
+      text-align: center;
+
+      img {
+        width: 140px;
+        height: 140px;
       }
-      .btnBack {
-        width: 80px;
-        height: 35px;
-        line-height: 35px;
-        background: #FFEBC4;
-        color: #FFFFFF;
-        font-size: 14px;
-        text-align: center;
-        cursor: pointer;
-        margin: 30px auto 0 auto;
-        border-radius: 4px;
+
+      h3 {
+        font-size: 18px;
+        color: #333333;
+        margin: 20px 0;
       }
+
+      p {
+        width: 80%;
+        margin: 0 auto;
+        color: #999999;
+        font-size: 12px;
+        line-height: 25px;
+      }
+    }
+
+    .btnBack {
+      width: 80px;
+      height: 35px;
+      line-height: 35px;
+      background: #FFEBC4;
+      color: #FFFFFF;
+      font-size: 14px;
+      text-align: center;
+      cursor: pointer;
+      margin: 30px auto 0 auto;
+      border-radius: 4px;
     }
   }
-</style>
+}</style>

+ 16 - 4
src/views/moblie/mUinitBusiness.vue

@@ -63,18 +63,21 @@
             <div class="time-select-container" v-show="personalForm.shopType === '2'">
               <div class="inputItem">
                 <div class="labelTit"><label><i>*</i>营业开始时间</label></div>
-                <input type="text" v-model="personalForm.startTime" placeholder="请选择营业开始时间" @click="startTimeShow = true">
+                <input @focus="noBomBox" type="text" v-model="personalForm.startTime" placeholder="请选择营业开始时间"
+                  @click="startTimeShow = true">
               </div>
 
               <div class="inputItem">
                 <div class="labelTit"><label><i>*</i>营业结束时间</label></div>
-                <input type="text" v-model="personalForm.endtime" placeholder="请选择营业开始时间" @click="endTimeShow = true">
+                <input @focus="noBomBox" type="text" v-model="personalForm.endtime" placeholder="请选择营业开始时间"
+                  @click="endTimeShow = true">
               </div>
             </div>
 
             <div class="inputItem">
               <div class="labelTit"><label><i>*</i>店铺分类</label></div>
-              <input @focus="noBomBox" type="text" placeholder="请选择店铺所属分类" v-model="selectShopCategoryStr" @click="show2 = true">
+              <input @focus="noBomBox" type="text" placeholder="请选择店铺所属分类" v-model="selectShopCategoryStr"
+                @click="show2 = true">
               <van-popup v-model="show2" round position="bottom">
 
                 <div v-show="isQueryShopCategory" class="loading-container"><van-loading color="#ee0a24" type="spinner" />
@@ -91,7 +94,8 @@
               </div>
               <!-- <span class="iconfont">&#xe6ab;</span> -->
               <input type="text" v-model="personalForm.storeAddressDetail" placeholder="请输入详细地址">
-              <van-popup v-model="show1" round position="bottom">
+              <van-popup :close-on-click-overlay="false" v-model="show1" round position="bottom"
+                @close="handleClosePopup('areaId')">
                 <!-- v-if="isRequestAddres" sb玩意不动态刷新,现在换了给方法,强行重新赋值,不完全完美的解决问题 -->
                 <van-cascader v-model="personalForm.areaId" title="请选择所在地区" :options="options" @close="show1 = false"
                   @change="onAddresChange" :field-names="{ text: 'name', value: 'id', children: 'children' }" />
@@ -660,6 +664,14 @@ export default {
     noBomBox(Event) {
       document.activeElement.blur()
     },
+    handleClosePopup(type) {
+      if (type === 'areaId') {
+        if (!this.personalForm.shopAdressProvince || !this.personalForm.shopAdressCity) {
+          this.personalForm.areaId = null
+          this.fieldValue = ''
+        }
+      }
+    },
     // 提交申请
     submitForm() {
       let self = this