| | |
| | | <view class="document-icon"> |
| | | <up-icon name="file-text" size="16" color="#ffffff"></up-icon> |
| | | </view> |
| | | <text class="item-id">{{ item.workOrderNo }}</text> |
| | | <text class="item-id">{{ item.workOrderNo || '无' }}</text> |
| | | </view> |
| | | <view class="item-right"> |
| | | <text class="item-tag tag-type">{{ item.workOrderType }}</text> |
| | | <text class="item-tag tag-type">{{ item.workOrderType || '无' }}</text> |
| | | </view> |
| | | </view> |
| | | |
| | |
| | | <view class="item-details"> |
| | | <view class="detail-row"> |
| | | <text class="detail-label">产品名称</text> |
| | | <text class="detail-value">{{ item.productName }}</text> |
| | | <text class="detail-value">{{ item.productName || '无' }}</text> |
| | | </view> |
| | | <view class="detail-row"> |
| | | <text class="detail-label">规格型号</text> |
| | | <text class="detail-value">{{ item.model }}</text> |
| | | <text class="detail-value">{{ item.model || '无' }}</text> |
| | | </view> |
| | | <view class="detail-row"> |
| | | <text class="detail-label">机台名称</text> |
| | | <text class="detail-value">{{ item.deviceName }}</text> |
| | | <text class="detail-value">{{ item.deviceName || '无' }}</text> |
| | | </view> |
| | | <view class="detail-row"> |
| | | <text class="detail-label">工序名称 / 计量单位</text> |
| | | <text class="detail-value">{{ item.processName }} / {{ item.unit }}</text> |
| | | <text class="detail-value">{{ item.processName || '无' }} / {{ item.unit || '无' }}</text> |
| | | </view> |
| | | <view class="detail-row"> |
| | | <text class="detail-label">需求/完成数量</text> |
| | | <text class="detail-value">{{ item.planQuantity }} / {{ item.completeQuantity }}</text> |
| | | <text class="detail-value">{{ item.planQuantity || '无' }} / {{ item.completeQuantity || '无' }}</text> |
| | | </view> |
| | | |
| | | <view class="progress-section"> |
| | |
| | | </view> |
| | | |
| | | <view class="form-section"> |
| | | <text class="section-title">班组信息</text> |
| | | <up-form-item label="班组人员"> |
| | | <up-input |
| | | v-model="teamDisplayText" |
| | |
| | | suffixIcon="arrow-down" |
| | | /> |
| | | </up-form-item> |
| | | </view> |
| | | |
| | | <view class="form-section"> |
| | | <text class="section-title">审核信息</text> |
| | | <up-form-item label="审核人" required> |
| | | <up-input |
| | | v-model="endReportForm.auditUserName" |