|
@@ -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
|
|