|
@@ -74,7 +74,8 @@
|
74
|
74
|
</view>
|
75
|
75
|
<view>
|
76
|
76
|
<text class="p_title">是否紧急:</text>
|
77
|
|
- <text class="p_info">{{(item.priority==='1'||item.priority===1)?'是':'否'}}</text>
|
|
77
|
+ <text class="p_info"
|
|
78
|
+ :class="{red:item.priority==='1'||item.priority===1}">{{(item.priority==='1'||item.priority===1)?'是':'否'}}</text>
|
78
|
79
|
</view>
|
79
|
80
|
</view>
|
80
|
81
|
</view>
|
|
@@ -268,6 +269,15 @@
|
268
|
269
|
workerStartOrderFlag: 1,
|
269
|
270
|
},
|
270
|
271
|
};
|
|
272
|
+ //根据检查的紧急度加急
|
|
273
|
+ if (this.jdItem.priority === 1 || this.jdItem.priority === '1') {
|
|
274
|
+ postData.workOrder["urgentDetails"] = {
|
|
275
|
+ checkStatus: {
|
|
276
|
+ id: 329
|
|
277
|
+ },
|
|
278
|
+ urgentReason: '系统根据检查信息,自动进行加急',
|
|
279
|
+ };
|
|
280
|
+ }
|
271
|
281
|
post("/api/startOrder", postData).then((res) => {
|
272
|
282
|
uni.hideLoading();
|
273
|
283
|
let msg = res.msg;
|
|
@@ -686,6 +696,10 @@
|
686
|
696
|
|
687
|
697
|
.p_info {
|
688
|
698
|
flex: 1;
|
|
699
|
+
|
|
700
|
+ &.red {
|
|
701
|
+ color: red;
|
|
702
|
+ }
|
689
|
703
|
}
|
690
|
704
|
|
691
|
705
|
.num {
|