1
wangyi
2026-03-12 f5bcbefaf9bbaa1d4d2ff3b8805d751c1ed3939a
pages/MJGL/Sb_EquipRepairTaskReport/Sb_EquipRepairTaskReport.vue
@@ -12,7 +12,12 @@
                <view class="card-detail">
                    <view class="detail" v-for="(field, index) in CommonUtils.emptyValueFilter(item, HFieldList)"
                        :key="index">
                        <text>{{field.ColmCols}}:</text>{{item[field.ColmCols]}}
                        <template v-if="field.ColmType == 'DateTime'">
                            <text>{{field.ColmCols}}:</text>{{dayjs(item[field.ColmCols]).format('YYYY-MM-DD HH:mm:ss')}}
                        </template>
                        <template v-else>
                            <text>{{field.ColmCols}}:</text>{{item[field.ColmCols]}}
                        </template>
                    </view>
                </view>
                <view class="more" v-if="showDetail == index && operations != index">
@@ -83,11 +88,12 @@
                } else if (tab == 1) {
                    uni.navigateTo({
                        url: '/pages/MJGL/Sb_EqpMaintenance/Sb_EqpMaintenanceBill?operationType=5' + Query
                        + `&HSendWorkID=${item.HSendWorkID}`
                    })
                } else if (tab == 2) {
                    uni.navigateTo({
                        url: '/pages/MJGL/Sb_EquipRepairCheckBill/Sb_EquipRepairCheckBill?operationType=4' +
                            Query
                            Query + `&HSendWorkID=${item.HSendWorkID}`
                    })
                }
            },
@@ -110,7 +116,7 @@
                    let res = await CommonUtils.doRequest2Async({
                        url: '/Sb_EquipRepairCheckTaskReport/RepairCheckList2',
                        data: {
                            user: getUserInfo()["Czymc"]
                            user: getUserInfo()["HEmpName"]
                        }
                    })
@@ -157,7 +163,7 @@
                }
            }
        },
        onLoad() {
        onShow() {
            this.getRepairList()
        }
    }