Browse Source

报修类型

seimin 3 months ago
parent
commit
cddbec649c

+ 4 - 4
manifest.json

@@ -62,14 +62,14 @@
62 62
         "devServer" : {
63 63
             "proxy" : {
64 64
                 "/service" : {
65
-                    "target" : "http://192.168.3.111", //请求的目标域名
66
-										// "target" : "http://192.168.4.163", //宋程玉本地
67
-										// "target" : "http://192.168.4.105", //程肖本地
65
+                    "target" : "http://192.168.3.108", //请求的目标域名
66
+                    // "target" : "http://192.168.4.163", //宋程玉本地
67
+                    // "target" : "http://192.168.4.105", //程肖本地
68 68
                     "changeOrigin" : true, //是否跨域
69 69
                     "secure" : false
70 70
                 },
71 71
                 "/file" : {
72
-                    "target" : "http://192.168.3.111", //请求的目标域名
72
+                    "target" : "http://192.168.3.108", //请求的目标域名
73 73
                     "changeOrigin" : true, //是否跨域
74 74
                     "secure" : false
75 75
                 }

+ 4 - 0
pages/incidentDetail/incidentDetail.vue

@@ -21,6 +21,10 @@
21 21
             <text class="value">{{dataInfo.incidentData.incidentsign || '无'}}</text>
22 22
           </view>
23 23
           <view class="deital_item">
24
+            <text class="name">报修类型:</text>
25
+            <text class="value">{{dataInfo.incidentData.repairIncidentType.name || '无'}}</text>
26
+          </view>
27
+          <view class="deital_item">
24 28
             <text class="name">故障现象:</text>
25 29
             <text class="value">{{dataInfo.incidentData.category ? dataInfo.incidentData.category.mutiCategory : '无'}}</text>
26 30
           </view>

+ 3 - 2
pages/incidentList/incidentList.vue

@@ -15,8 +15,9 @@
15 15
         </view>
16 16
 
17 17
         <view class="body_item_content">
18
-          <view class="body_item_content_p" v-if="data.department">
19
-            <text class="name ellipsis">报修科室:{{data.department.dept}}</text>
18
+          <view class="body_item_content_p">
19
+            <text class="name ellipsis" v-if="data.repairIncidentType.value === 'dept'">报修科室:{{data.department.dept}}</text>
20
+            <text class="name ellipsis" v-if="data.repairIncidentType.value === 'public'">报修类型:{{data.repairIncidentType.name}}</text>
20 21
             <view class="status" :style="stateStyle(data.state)">{{data.state ? data.state.name : ''}}</view>
21 22
           </view>
22 23
           <view class="body_item_content_p" v-if="data.place || data.houseNumber">

+ 23 - 8
pages/repair/rapidRepNext.vue

@@ -38,7 +38,7 @@
38 38
 					<uni-easyinput class="value" type="textarea" v-model="dataInfo.address" placeholder="请输入详细地址"  :class="{formRed: isSubmit && !dataInfo.address }" />
39 39
 				</view>
40 40
 				<view class="candidate">
41
-					<view class="candidate-item" v-for="item in addresData" :key="item" @click="itemAddres(item)">{{item.name}}</view>
41
+					<view class="candidate-item" v-for="item in dataInfo.addressList" :key="item.id" @click="itemAddres(item)">{{item.name}}</view>
42 42
 				</view>
43 43
 				
44 44
 				<view class="form_item" :class="{formRed: isSubmit && !dataInfo.contacts}">
@@ -145,13 +145,6 @@
145 145
 	
146 146
 	const repairIncident = ref(null)
147 147
 	
148
-	const addresData = ref([
149
-		{name:'护士站'},
150
-		{name:'卫生间'},
151
-		{name:'更衣室'},
152
-		{name:'治疗室'}
153
-	])
154
-	
155 148
   // 数据
156 149
   const dataInfo = reactive({
157 150
     tabs: [
@@ -179,6 +172,7 @@
179 172
 		areaId:'',//楼栋
180 173
 		placeId:'',//楼层
181 174
 		branch:'', //院区
175
+		addressList: [], //科室地点
182 176
   })
183 177
   
184 178
 	
@@ -453,6 +447,26 @@
453 447
 		  });
454 448
   }
455 449
   
450
+  // 获取科室地点
451
+  function getAddressList(){
452
+    uni.showLoading({
453
+      title: "加载中",
454
+      mask: true,
455
+    });
456
+  	let postData = {
457
+  	  idx: 0,
458
+  	  sum: 10,
459
+  		qrCode:{
460
+        deptId: dataInfo.department,
461
+  		}
462
+  	};
463
+  	getFetchDataList("simple/data", "qrCode", postData)
464
+  	  .then((res) => {
465
+  			uni.hideLoading();
466
+  	    dataInfo.addressList = res.list || [];
467
+  	  });
468
+  }
469
+  
456 470
 	function areaChange(e){
457 471
 		getPlaceList(dataInfo.areaId)
458 472
 	}
@@ -699,6 +713,7 @@
699 713
   onLoad((option) => {
700 714
 		initForm()
701 715
     getIncidentDetail();
716
+    getAddressList();
702 717
   })
703 718
 </script>
704 719