Browse Source

✨ feat: 添加alert

GuYun-D 1 year ago
parent
commit
bc6654f4fa
1 changed files with 8 additions and 0 deletions
  1. 8 0
      src/views/moblie/mUinitBusiness.vue

+ 8 - 0
src/views/moblie/mUinitBusiness.vue

@@ -294,6 +294,9 @@
       </div>
       <button class="nextBtn" @click="next" v-show="active < 3">下一步</button>
       <button class="nextBtn" @click="submitForm" v-show="active > 2">提交</button>
+
+
+      <button @click="handleShowData"></button>
     </div>
     <van-popup v-model="show" round position="bottom" :style="{ height: '40%' }">
       <van-area title="请选择地区" :area-list="areaList" @confirm="selectArea" @cancel="closeSelect" />
@@ -874,6 +877,7 @@ export default {
         console.log("拿到地址了", addeessInfo);
         this.personalForm.latitude = addeessInfo.latitude
         this.personalForm.longitude = addeessInfo.longitude
+        alert(this.personalForm.latitude)
         this.fieldValue = addresString
         this.personalForm.shopAdressProvince = selectedOptions[0].name
         this.personalForm.shopAdressCity = selectedOptions[1].name
@@ -988,6 +992,10 @@ export default {
     // 删除广告图
     handleDeleteAdvertisement(_, { index }) {
       this.personalForm.advertisement.splice(index, 1)
+    },
+
+    handleShowData() {
+      alert(this.personalForm.longitude)
     }
   }
 }