|
|
@@ -24,7 +24,7 @@
|
|
|
<view class="list-item">
|
|
|
<view class="item-container">
|
|
|
<view class="item-header">
|
|
|
- <text class="item-title">{{ getWorkOrderProjectNo(item) }}-{{ getPcsDeviceName(item) }}{{ getOrderType(item) }}</text>
|
|
|
+ <text class="item-title">{{ (item as acceptOrderInfo).pcsStationName }}{{ getPcsDeviceName(item) }}{{ getOrderType(item) }}</text>
|
|
|
<text class="status-tag" :class="getStatusClass(item)">{{ getWorkOrderStatus(item) }}</text>
|
|
|
</view>
|
|
|
<view class="info-row">
|
|
|
@@ -186,7 +186,7 @@ import {checkPermi, getUserInfo} from '../../utils/storage'
|
|
|
// 处理默认值
|
|
|
const searchKeyword = keyword.value.length > 0 ? keyword.value : null
|
|
|
|
|
|
- const result = await getOrderList(page.value, pageSize, searchKeyword, "suspended")
|
|
|
+ const result = await getOrderList(page.value, pageSize, searchKeyword, "suspended,auto_suspend")
|
|
|
|
|
|
// 提取响应数据
|
|
|
const resultObj = result as UTSJSONObject
|
|
|
@@ -615,6 +615,13 @@ import {checkPermi, getUserInfo} from '../../utils/storage'
|
|
|
border-color: #ffccc7;
|
|
|
}
|
|
|
|
|
|
+/* 自动挂起 */
|
|
|
+.status-auto_suspend {
|
|
|
+ background-color: #fff2f0;
|
|
|
+ color: #ff4d4f;
|
|
|
+ border-color: #ffccc7;
|
|
|
+}
|
|
|
+
|
|
|
/* 已完成 */
|
|
|
.status-completed {
|
|
|
background-color: #f0f9eb;
|