| | |
| | | <text class="detail-value">{{ formatDate(item.maintenancePlanTime) || '-' }}</text> |
| | | </view> |
| | | <view class="detail-row"> |
| | | <text class="detail-label">保养人</text> |
| | | <text class="detail-value">{{ item.maintenancePerson || '-' }}</text> |
| | | </view> |
| | | <view class="detail-row"> |
| | | <text class="detail-label">保养项目</text> |
| | | <text class="detail-value">{{ item.maintenanceItems || item.maintenanceLocation || '-' }}</text> |
| | | </view> |
| | | <view class="detail-row"> |
| | | <text class="detail-label">录入人</text> |
| | | <text class="detail-value">{{ item.createUserName || '-' }}</text> |
| | | </view> |
| | |
| | | |
| | | // 新增计划 - 跳转到新增页面 |
| | | const addPlan = () => { |
| | | uni.removeStorageSync("repairId"); |
| | | uni.navigateTo({ |
| | | url: "/pages/equipmentManagement/upkeep/add", |
| | | }); |