|
@@ -9,7 +9,7 @@
|
9
|
9
|
<view class="body" v-if="dataInfo.list.length">
|
10
|
10
|
<view class="body_item" v-for="data in dataInfo.list" :key="data.id">
|
11
|
11
|
<view class="body_item_head ellipsis-multiline">
|
12
|
|
- <text class="sign" v-if="dataInfo.tabActiveId == 1" :class="{signRed: data.exception == 1}">{{data.exception == 1 ? '异常' : '正常'}}</text>{{ data.inspectionDTO?.inspectionFormDTO?.name }}-{{ data.inspectionNodeDTO?.name }}-{{ data.batchNo }}
|
|
12
|
+ <text class="sign" v-if="data.status.value == 2" :class="{signRed: data.exception == 1}">{{data.exception == 1 ? '异常' : '正常'}}</text>{{ data.inspectionDTO?.inspectionFormDTO?.name }}-{{ data.inspectionNodeDTO?.name }}-{{ data.batchNo }}
|
13
|
13
|
</view>
|
14
|
14
|
|
15
|
15
|
<view class="body_item_content">
|
|
@@ -31,6 +31,7 @@
|
31
|
31
|
<view class="body_item_foot">
|
32
|
32
|
<view class="btns pt0">
|
33
|
33
|
<button v-if="data.status.value === '1' && dataInfo.tabActiveId === 0" @click.stop="toInspectionValue(data)" type="default" class="primaryButton btn">执行</button>
|
|
34
|
+ <button v-if="data.status.value === '2' && data.exception == 1 && !data.incidentId && data.inspectionDTO.inspectionFormDTO.showOrder == 1" @click.stop="toBuildIncident(data)" type="default" class="primaryButton btn">生成维修单</button>
|
34
|
35
|
</view>
|
35
|
36
|
</view>
|
36
|
37
|
</view>
|
|
@@ -46,7 +47,7 @@
|
46
|
47
|
import { ref, reactive, computed } from 'vue'
|
47
|
48
|
import { onLoad, onPullDownRefresh, onReachBottom, onTabItemTap } from '@dcloudio/uni-app'
|
48
|
49
|
import { SM } from "@/http/http.js"
|
49
|
|
- import { api_getDictionary, api_inspectionTask, api_listCount, api_scanCode, api_inspectionNode } from "@/http/api.js"
|
|
50
|
+ import { api_getDictionary, api_inspectionTask, api_listCount, api_scanCode, api_inspectionNode, api_listAttachment } from "@/http/api.js"
|
50
|
51
|
import { filterFormatDate } from '@/filters/filterFormatDate.js'
|
51
|
52
|
import { computedPriorityStyle } from '@/filters/computedPriorityStyle.js'
|
52
|
53
|
import { computedStateStyle } from '@/filters/computedStateStyle.js'
|
|
@@ -59,6 +60,7 @@
|
59
|
60
|
import { useInspectionListSearchStore } from '@/stores/inspectionListSearch'
|
60
|
61
|
import { useInspectionValueStore } from '@/stores/inspectionValue'
|
61
|
62
|
import { useSetTabbar } from '@/share/useSetTabbar.js'
|
|
63
|
+ import { useIncidentBuildStore } from '@/stores/incidentBuild'
|
62
|
64
|
|
63
|
65
|
useSetTitle();
|
64
|
66
|
const loginUserStore = useLoginUserStore();
|
|
@@ -71,10 +73,14 @@
|
71
|
73
|
const { currentLogOverTime } = computedCurrentLogOverTime();
|
72
|
74
|
const { makePhoneCall } = useMakePhoneCall();
|
73
|
75
|
const { setTabbar } = useSetTabbar();
|
|
76
|
+ const incidentBuildStore = useIncidentBuildStore();
|
74
|
77
|
|
75
|
78
|
// 主题颜色
|
76
|
79
|
const primaryColor = ref(defaultColor)
|
77
|
80
|
|
|
81
|
+ // 故障来源列表
|
|
82
|
+ const defaultSourceValue = ref();
|
|
83
|
+
|
78
|
84
|
// 数据
|
79
|
85
|
const dataInfo = reactive({
|
80
|
86
|
tabs: [{id: 0, name: '巡检工单', value: 'todo', num: ''}, {id: 1, name: '历史工单', value: '', num: ''}],
|
|
@@ -88,6 +94,64 @@
|
88
|
94
|
inspectionNodeName: '',
|
89
|
95
|
})
|
90
|
96
|
|
|
97
|
+ // 获取故障来源列表
|
|
98
|
+ function getSources(){
|
|
99
|
+ let postData = {
|
|
100
|
+ "key": 'incident_source',
|
|
101
|
+ "type": "list",
|
|
102
|
+ };
|
|
103
|
+ api_getDictionary(postData).then(res => {
|
|
104
|
+ res = res || [];
|
|
105
|
+ let discover = res.find(v => v.value === 'inspection');
|
|
106
|
+ if(discover){
|
|
107
|
+ defaultSourceValue.value = discover.id;
|
|
108
|
+ }
|
|
109
|
+ })
|
|
110
|
+ }
|
|
111
|
+
|
|
112
|
+ // 新建事件
|
|
113
|
+ async function toBuildIncident(res){
|
|
114
|
+ incidentBuildStore.clearIncidentBuildData();
|
|
115
|
+ let imgObj = res.inspectionFormValuesList.find(v => v.inspectionFormItemDTO.type.value == 7);
|
|
116
|
+ let repairImgList = [];
|
|
117
|
+ if(imgObj){
|
|
118
|
+ let result = await api_listAttachment('inspection', res.id);
|
|
119
|
+ result.data = result.data || [];
|
|
120
|
+ result.data = result.data.filter(v => v.recordId == imgObj.itemId);
|
|
121
|
+ result.data = result.data.map(v => ({
|
|
122
|
+ url: location.origin + "/file" + v.relativeFilePath,
|
|
123
|
+ path: location.origin + "/file" + v.relativeFilePath,
|
|
124
|
+ size: v.size,
|
|
125
|
+ name: v.name,
|
|
126
|
+ extname: v.suffix,
|
|
127
|
+ }))
|
|
128
|
+ repairImgList = result.data;
|
|
129
|
+ }
|
|
130
|
+
|
|
131
|
+ console.log(repairImgList, 'repairImgList')
|
|
132
|
+
|
|
133
|
+ let incidentData = {
|
|
134
|
+ place: res.inspectionNodeDTO.floorDTO,
|
|
135
|
+ houseNumber: res.inspectionNodeDTO.address,
|
|
136
|
+ source: defaultSourceValue.value,
|
|
137
|
+ description: res.inspectionFormValuesList.filter(v => v.exception == 1).map(v => `${v.name}填写值为${v.valuex}`).join(';'),
|
|
138
|
+ requester: loginUserStore.loginUser.user,
|
|
139
|
+ branch: loginUserStore.loginUser.user.currentHospital.parent ? loginUserStore.loginUser.user.currentHospital.parent.id : loginUserStore.loginUser.user.currentHospital.id,
|
|
140
|
+ contacts: loginUserStore.loginUser.user.name,
|
|
141
|
+ contactsInformation: loginUserStore.loginUser.user.phone,
|
|
142
|
+ category: res.inspectionDTO.inspectionFormDTO.categoryDTO,
|
|
143
|
+ department: res.inspectionDTO.inspectionFormDTO.repairDeptDTO,
|
|
144
|
+ priority: res.inspectionDTO.inspectionFormDTO.priorityDTO,
|
|
145
|
+ repairImgList,
|
|
146
|
+ inspectionTaskId: res.id,
|
|
147
|
+ }
|
|
148
|
+ console.log(incidentData, 'incidentData')
|
|
149
|
+ incidentBuildStore.setIncidentBuildData(incidentData, 'buildIncident');
|
|
150
|
+ uni.navigateTo({
|
|
151
|
+ url: `/pages/buildIncident/buildIncident?type=inspection`
|
|
152
|
+ })
|
|
153
|
+ }
|
|
154
|
+
|
91
|
155
|
// 巡检项
|
92
|
156
|
function toInspectionValue(data){
|
93
|
157
|
uni.showLoading({
|
|
@@ -206,6 +270,7 @@
|
206
|
270
|
}
|
207
|
271
|
|
208
|
272
|
onLoad((option) => {
|
|
273
|
+ getSources();
|
209
|
274
|
dataInfo.inspectionNodeCode = option.inspectionNodeCode;
|
210
|
275
|
dataInfo.inspectionNodeNewCode = option.inspectionNodeNewCode;
|
211
|
276
|
dataInfo.inspectionNodeName = option.inspectionNodeName;
|