Browse Source

处理端报修bug

maotao 5 months ago
parent
commit
390113dd18

+ 1 - 1
interceptor/routeInterceptor.js

@@ -25,7 +25,7 @@ let repaireRouterList = [
25 25
 							})
26 26
 						}else if(loginType==2){
27 27
 							uni.reLaunch({
28
-								url: "/pages/repair/listHome"
28
+								url: "/pages/repair/home"
29 29
 							})
30 30
 						}
31 31
 					return false

+ 6 - 6
pages.json

@@ -325,16 +325,16 @@
325 325
 			"visible": false
326 326
 			},
327 327
 			{
328
-			"pagePath": "pages/repair/listHome",
329
-			"iconPath": "static/img/icon_index.png",
330
-			"selectedIconPath": "static/img/icon_index_active.png",
328
+			"pagePath": "pages/repair/home",
329
+			"iconPath": "static/img/icon_inspectionExecute.png",
330
+			"selectedIconPath": "static/img/icon_inspectionExecute_active.png",
331 331
 			"text": "首页",
332 332
 			"visible": false
333 333
 			}, 
334 334
 			{
335
-			"pagePath": "pages/repair/home",
336
-			"iconPath": "static/img/icon_inspectionExecute.png",
337
-			"selectedIconPath": "static/img/icon_inspectionExecute_active.png",
335
+			"pagePath": "pages/repair/listHome",
336
+			"iconPath": "static/img/icon_index.png",
337
+			"selectedIconPath": "static/img/icon_index_active.png",
338 338
 			"text": "我的报修",
339 339
 			"visible": false
340 340
 			}, 

+ 2 - 2
pages/incidentDetail/incidentDetail.vue

@@ -34,12 +34,12 @@
34 34
               <image class="resourceItem" :src="img.thumbFilePath" mode="aspectFill" v-for="(img, i) in dataInfo.repairImgs" :key="i" @click="previewImg(i, 'repairImgs')"></image>
35 35
             </view>
36 36
           </view>
37
-					<view class="deital_item">
37
+<!-- 					<view class="deital_item">
38 38
 					  <text class="name">报修视频:</text>
39 39
 					  <view class="value img">
40 40
 							<image class="resourceItem" src="/static/img/300.jpg" v-for="(img, i) in dataInfo.repairVideo" :key="i" @click="videoView(img)"></image>
41 41
 					  </view>
42
-					</view>
42
+					</view> -->
43 43
 					<view class="deital_item">
44 44
 					  <text class="name">报修录音:</text>
45 45
 					  <view class="value img" v-if="dataInfo.repairAudio.length>0">

+ 21 - 15
pages/myRepair/myRepair.vue

@@ -1,6 +1,6 @@
1 1
 <template>
2 2
 	<view class="home">
3
-		<view class="incidentList" v-if="tabsIndex0==1">
3
+		<view class="incidentList" v-if="tabsIndex1==1">
4 4
 		  <view class="head">
5 5
 		    <view class="tab" :class="{active: tab.id === dataInfo.tabActiveId}" v-for="tab in dataInfo.tabs" :key="tab.id" @click="clickTab(tab.id)">
6 6
 		      {{tab.name}}<text v-if="tab.num !== ''">({{tab.num}})</text>
@@ -76,7 +76,7 @@
76 76
 			</uni-popup>
77 77
 		</view>
78 78
 		
79
-		<view v-if="tabsIndex1==1">
79
+		<view v-if="tabsIndex0==1">
80 80
 			<view class="home_item" v-if="isDept.valueconfig==1">
81 81
 				<view class="title">科室报修</view>
82 82
 				<view class="content">
@@ -186,7 +186,7 @@
186 186
 			<view class="tabs-list" @click="tabsClick0">
187 187
 				<img src="/static/img/icon_index.png" v-if="tabsIndex0==0" alt="">
188 188
 				<img src="/static/img/icon_index_active.png" v-if="tabsIndex0==1" alt="">
189
-				<view class="tabs-title" :class="tabsIndex0==1?'active-class':''">首页</view>
189
+				<view class="tabs-title" :class="tabsIndex0==1?'active-class':''">首页 </view>
190 190
 			</view>
191 191
 			<view class="tabs-list" @click="tabsClick1">
192 192
 				<img src="/static/img/icon_incidentList.png" v-if="tabsIndex1==0" alt="">
@@ -321,18 +321,19 @@
321 321
 	
322 322
 	function tabsClick0(){
323 323
 		tabsIndex0.value=1
324
-		tabsIndex2.value=0
325 324
 		tabsIndex1.value=0
326
-		dataInfo.stateValue = 0
327
-		getTabs();
325
+		tabsIndex2.value=0
326
+		getCount()
327
+		repositorySearchStore.clearRepositoryListSearchData()
328 328
 	}
329 329
 	
330 330
 	function tabsClick1(){
331 331
 		tabsIndex0.value=0
332
-		tabsIndex1.value=1
333 332
 		tabsIndex2.value=0
334
-		getCount()
335
-		repositorySearchStore.clearRepositoryListSearchData()
333
+		tabsIndex1.value=1
334
+		// dataInfo.tabActiveId = 0
335
+		dataInfo.stateValue = 0
336
+		getTabs();
336 337
 	}
337 338
 	
338 339
 	function tabsClick2(){
@@ -575,9 +576,14 @@
575 576
 	
576 577
 	// 报修列表
577 578
 	function repairsView(type,value){
578
-	  uni.navigateTo({
579
-	    url: `/pages/repair/repairsList?type=${type}&value=${value}`
580
-	  })
579
+		tabsIndex0.value = 0
580
+		tabsIndex1.value = 1
581
+		tabsIndex2.value = 0
582
+		dataInfo.tabActiveId = type
583
+		dataInfo.stateValue = value
584
+		dataInfo.evtFilter.category = value
585
+		repositorySearchStore.setRepositoryListSearchData(dataInfo.evtFilter)
586
+		getTabs()
581 587
 	}
582 588
 	
583 589
 	// 获取报修数量
@@ -907,12 +913,12 @@
907 913
 				tabsIndex0.value = 0
908 914
 				tabsIndex1.value = 1
909 915
 				tabsIndex2.value = 0
910
-				getCount()
916
+				getTabs()
911 917
 			}else{
912 918
 				tabsIndex0.value = 1
913 919
 				tabsIndex1.value = 0
914 920
 				tabsIndex2.value = 0
915
-				getTabs()
921
+				getCount()
916 922
 			}
917 923
 		})
918 924
 	}
@@ -934,7 +940,7 @@
934 940
 	})
935 941
 	
936 942
 	onReachBottom(() => {
937
-		if(tabsIndex0.value==1){
943
+		if(tabsIndex1.value==1){
938 944
 			dataInfo.idx += 1;
939 945
 			if (dataInfo.hasMore) {
940 946
 			  getList(); // 当触底时加载更多数据

+ 7 - 2
pages/repair/home.vue

@@ -84,8 +84,13 @@
84 84
 	
85 85
 	// 报修列表
86 86
 	function repairsView(type,value){
87
-	  uni.navigateTo({
88
-	    url: `/pages/repair/repairsList?type=${type}&value=${value}`
87
+		let data = {
88
+			type:type,
89
+			value:value
90
+		}
91
+		uni.setStorageSync('homeRepairList',JSON.stringify(data))
92
+	  uni.switchTab({
93
+	    url: `/pages/repair/listHome`
89 94
 	  })
90 95
 	}
91 96
 	

+ 12 - 4
pages/repair/listHome.vue

@@ -399,8 +399,6 @@
399 399
 	}
400 400
 	
401 401
   onLoad((option) => {
402
-		dataInfo.stateValue = 0
403
-		repositorySearchStore.clearRepositoryListSearchData()
404 402
 		getConfig();
405 403
 		for(let i = 0; i<7; i++){
406 404
 			setTabbar(i)
@@ -408,12 +406,22 @@
408 406
   })
409 407
 	
410 408
 	onShow((option) =>{
411
-		dataInfo.stateValue = 0
412
-		repositorySearchStore.clearRepositoryListSearchData()
409
+		let data = uni.getStorageSync('homeRepairList')
410
+		if(data){
411
+			data = JSON.parse(data)
412
+			dataInfo.tabActiveId = Number(data.type)
413
+			dataInfo.stateValue = data.value
414
+			dataInfo.evtFilter.category = data.value
415
+			repositorySearchStore.setRepositoryListSearchData(dataInfo.evtFilter)
416
+		}else{
417
+			dataInfo.stateValue = 0
418
+			repositorySearchStore.clearRepositoryListSearchData()
419
+		}
413 420
 		onLoadFn();
414 421
 	})
415 422
 	
416 423
 	onHide(_=>{
424
+		uni.setStorageSync('homeRepairList','')
417 425
 		repositorySearchStore.clearRepositoryListSearchData()
418 426
 	})
419 427
 	

+ 19 - 15
pages/repair/rapidRep.vue

@@ -14,13 +14,13 @@
14 14
 				<text class="newicon newicon-saoma icon" @click="scanCodes"></text>
15 15
 			</view>
16 16
 			<view class="form_item">
17
-				<view class="title">照片录像:</view>
17
+				<view class="title">照片:</view>
18 18
 				<view class="value">
19 19
 					<uni-file-picker ref="handlerImgRef" v-model="dataInfo.handlerImgList"
20
-					 limit="4" @success="handlerImgSuccess" file-mediatype="all" mode="grid"
20
+					 limit="4" @success="handlerImgSuccess" file-mediatype="image" mode="grid"
21 21
 					@fail="handlerImgFail" @select="handlerImgSelect" @delete="handlerImgDelete">
22 22
 					</uni-file-picker>
23
-					<view class="imgTips">(支持JPG/PNG格式图片,单张大小10M以内,录像支持30秒)</view>
23
+					<view class="imgTips">(支持JPG/PNG格式图片,单张大小10M以内)</view>
24 24
 				</view>
25 25
 			</view>
26 26
 			<view class="form_item">
@@ -358,7 +358,7 @@
358 358
 	
359 359
   // 选择上传图片
360 360
   function handlerImgSelect(e){
361
-		console.log(6666,e.tempFiles)
361
+		console.log(6666,e.tempFiles[0].extname)
362 362
 		// 10*1024*1024 //10M
363 363
 		if(e.tempFiles[0].extname=='mp4' ||
364 364
 			e.tempFiles[0].extname=='avi' || 
@@ -381,23 +381,27 @@
381 381
 				}
382 382
 			}else{
383 383
 				dataInfo.handlerImgList = dataInfo.handlerImgList.concat(e.tempFiles);
384
-				
385 384
 				if(e.tempFiles[0].extname=='png' || 
386 385
 					e.tempFiles[0].extname=='jpg' || 
387
-					e.tempFiles[0].extname=='gif' ||
388
-					e.tempFiles[0].extname=='mp4' ||
389
-					e.tempFiles[0].extname=='avi' || 
390
-					e.tempFiles[0].extname=='mpeg' || 
391
-					e.tempFiles[0].extname=='wmv' ||
392
-					e.tempFiles[0].extname=='mov' ||
393
-					e.tempFiles[0].extname=='3gp' ||
394
-					e.tempFiles[0].extname=='flv' ||
395
-					e.tempFiles[0].extname=='mkv'
386
+					// e.tempFiles[0].extname=='mp4' ||
387
+					// e.tempFiles[0].extname=='avi' || 
388
+					// e.tempFiles[0].extname=='mpeg' || 
389
+					// e.tempFiles[0].extname=='wmv' ||
390
+					// e.tempFiles[0].extname=='mov' ||
391
+					// e.tempFiles[0].extname=='3gp' ||
392
+					// e.tempFiles[0].extname=='flv' ||
393
+					// e.tempFiles[0].extname=='mkv' ||
394
+					e.tempFiles[0].extname=='heic' ||
395
+					e.tempFiles[0].extname=='‌‌heif' ||
396
+					e.tempFiles[0].extname=='‌‌‌‌proraw' ||
397
+					e.tempFiles[0].extname=='gif'
396 398
 					){
399
+					}else if('jpeg' == e.tempFiles[0].extname){
400
+						
397 401
 					}else{
398 402
 						uni.showToast({
399 403
 							icon: 'none',
400
-						  title: '不支持此类型文件'
404
+						  title: `不支持${e.tempFiles[0].extname}文件类型`
401 405
 						});
402 406
 						let item = dataInfo.handlerImgList.findIndex(i=>i.uuid==e.tempFiles[0].uuid)
403 407
 						dataInfo.handlerImgList.splice(item,1);

+ 2 - 3
pages/repair/repairsDetail.vue

@@ -25,11 +25,10 @@
25 25
 					  <text class="value">{{dataInfo.incidentData.assetDTO && dataInfo.incidentData.assetDTO.name || '无'}}</text>
26 26
 					</view>
27 27
           <view class="deital_item">
28
-            <text class="name">图片视频:</text>
28
+            <text class="name">报修图片:</text>
29 29
             <view class="value img">
30 30
               <image class="imgItem" :src="img.thumbFilePath" mode="aspectFill" v-for="(img, i) in dataInfo.repairImgs" :key="i" @click="previewImg(i, 'repairImgs')"></image>
31
-							<!-- <video class="videoItem" :poster="img.imgF" v-for="(img, i) in dataInfo.repairVideo" :key="i" @click="videoView(i)"></video> -->
32
-							<image class="imgItem" src="/static/img/300.jpg" v-for="(img, i) in dataInfo.repairVideo" :key="i" @click="videoView(img)"></image>
31
+							<!-- <image class="imgItem" src="/static/img/300.jpg" v-for="(img, i) in dataInfo.repairVideo" :key="i" @click="videoView(img)"></image> -->
33 32
 						</view>
34 33
           </view>
35 34
 					<view class="deital_item">

+ 1 - 1
pages/repairEntrance/repairEntrance.vue

@@ -20,7 +20,7 @@
20 20
    */
21 21
   function goToRepair() {
22 22
 		uni.reLaunch({
23
-		  url: '/pages/repair/listHome'
23
+		  url: '/pages/repair/home'
24 24
 		})
25 25
   }
26 26
 </script>

+ 2 - 2
share/useLoginSuccess.js

@@ -17,7 +17,7 @@ export function useLoginSuccess() {
17 17
 				})
18 18
 			}else if(loginType==2){
19 19
 				uni.reLaunch({
20
-				  url: "/pages/repair/listHome"
20
+				  url: "/pages/repair/home"
21 21
 				})
22 22
 			}
23 23
     } else {
@@ -27,7 +27,7 @@ export function useLoginSuccess() {
27 27
 				})
28 28
 			}else if(loginType==2){
29 29
 				uni.reLaunch({
30
-				  url: "/pages/repair/listHome"
30
+				  url: "/pages/repair/home"
31 31
 				})
32 32
 			}
33 33
     }

+ 12 - 12
share/useSetTabbar.js

@@ -44,21 +44,21 @@ export function useSetTabbar() {
44 44
 				break;
45 45
 			case 3:
46 46
 			  // 首页
47
-			  if(loginUserStore.loginUser.user.engineer == 0){
48
-			    flag = true;
49
-			  }else{
50
-			  	if(loginType==1){
51
-			  		flag = false;
52
-			  	}else{
53
-			  		flag = true;
54
-			  	}
55
-			  }
47
+				if(loginUserStore.loginUser.user.engineer == 0){
48
+					flag = true;
49
+				}else{
50
+					if(loginType==1){
51
+						flag = false;
52
+					}else{
53
+						flag = true;
54
+					}
55
+				}
56 56
 			  break;	
57 57
 			case 4:
58 58
 			  // 我的报修
59
-			  if(loginUserStore.loginUser.user.engineer == 0){
60
-					flag = true;
61
-			  }else{
59
+				if(loginUserStore.loginUser.user.engineer == 0){
60
+				  flag = true;
61
+				}else{
62 62
 					if(loginType==1){
63 63
 						flag = false;
64 64
 					}else{