Browse Source

修复刷新页面返回失效

maotao 9 months ago
parent
commit
a86bdf6169

+ 6 - 4
pages/buildIncident/buildIncident.vue

@@ -320,7 +320,7 @@
320
   function handlerOrderImg(imgObj){
320
   function handlerOrderImg(imgObj){
321
     return uploadFile(imgObj, 'incident', dataInfo.incidentId)
321
     return uploadFile(imgObj, 'incident', dataInfo.incidentId)
322
   }
322
   }
323
-
323
+	
324
   // 提交
324
   // 提交
325
   function submit(){
325
   function submit(){
326
     isSubmit.value = true;
326
     isSubmit.value = true;
@@ -420,9 +420,11 @@
420
       );
420
       );
421
       // 修改报修科室,则回显楼栋,楼层,详细地址,联系电话
421
       // 修改报修科室,则回显楼栋,楼层,详细地址,联系电话
422
       if(incidentBuildStore.incidentBuild.sign === 'department'){
422
       if(incidentBuildStore.incidentBuild.sign === 'department'){
423
-        incidentData.place = incidentData.department.place || undefined;
424
-        incidentData.houseNumber = incidentData.department.address || '';
425
-        incidentData.contactsInformation = incidentData.department.phone ? incidentData.department.phone.split(',')[0] : '';
423
+				if(incidentData.department){
424
+					incidentData.place = incidentData.department.place || undefined;
425
+					incidentData.houseNumber = incidentData.department.address || '';
426
+					incidentData.contactsInformation = incidentData.department.phone ? incidentData.department.phone.split(',')[0] : '';
427
+				}
426
       }
428
       }
427
     }
429
     }
428
     getBranchs();
430
     getBranchs();

+ 6 - 1
share/useGoback.js

@@ -1,9 +1,14 @@
1
+const canNavBack = getCurrentPages()
1
 export function useGoBack() {
2
 export function useGoBack() {
2
   /**
3
   /**
3
    * 返回
4
    * 返回
4
    */
5
    */
5
   const goBack = () => {
6
   const goBack = () => {
6
-    uni.navigateBack();
7
+		if( canNavBack && canNavBack.length>1) {  
8
+				uni.navigateBack() 
9
+		} else {  
10
+				history.back();  
11
+		}
7
   }
12
   }
8
   
13
   
9
   return {
14
   return {

+ 3 - 3
uni_modules/uni-data-picker/components/uni-data-picker/uni-data-picker.vue

@@ -1,5 +1,5 @@
1
 <template>
1
 <template>
2
-  <view class="uni-data-tree" @touchmove.stop.prevent>
2
+  <view class="uni-data-tree">
3
     <view class="uni-data-tree-input" @click="handleInput">
3
     <view class="uni-data-tree-input" @click="handleInput">
4
       <slot :options="options" :data="inputSelected" :error="errorMessage">
4
       <slot :options="options" :data="inputSelected" :error="errorMessage">
5
         <view class="input-value" :class="{'input-value-border': border}">
5
         <view class="input-value" :class="{'input-value-border': border}">
@@ -25,8 +25,8 @@
25
         </view>
25
         </view>
26
       </slot>
26
       </slot>
27
     </view>
27
     </view>
28
-    <view class="uni-data-tree-cover" v-if="isOpened" @click="handleClose"></view>
29
-    <view class="uni-data-tree-dialog" v-if="isOpened">
28
+    <view class="uni-data-tree-cover" v-if="isOpened" @click="handleClose" @touchmove.stop.prevent></view>
29
+    <view class="uni-data-tree-dialog" v-if="isOpened" @touchmove.stop.prevent>
30
       <view class="uni-popper__arrow"></view>
30
       <view class="uni-popper__arrow"></view>
31
       <view class="dialog-caption">
31
       <view class="dialog-caption">
32
         <view class="title-area">
32
         <view class="title-area">