diff --git a/src/pages.json b/src/pages.json
index 05bb412..f65664e 100644
--- a/src/pages.json
+++ b/src/pages.json
@@ -575,6 +575,22 @@
"navigationStyle": "custom",
"navigationBarTextStyle": "white"
}
+ },
+ {
+ "path": "pages/equipment/RepairAudit/index",
+ "style": {
+ "navigationBarTitleText": "报修审核",
+ "navigationStyle": "custom",
+ "navigationBarTextStyle": "white"
+ }
+ },
+ {
+ "path": "pages/equipment/RepairAudit/Audit",
+ "style": {
+ "navigationBarTitleText": "报修审核",
+ "navigationStyle": "custom",
+ "navigationBarTextStyle": "white"
+ }
}
diff --git a/src/pages/equipment/RepairAudit/Audit.vue b/src/pages/equipment/RepairAudit/Audit.vue
new file mode 100644
index 0000000..ef1aa48
--- /dev/null
+++ b/src/pages/equipment/RepairAudit/Audit.vue
@@ -0,0 +1,745 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 查看照片
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 检验项:
+ {{ item.materialCode }}
+
+
+ 检验方法:
+ {{ item.materialDesc }}
+
+
+ 检验标准:
+ {{ item.materialDesc }}
+
+
+ 是否符合标准:
+ {{ item.materialDesc }}
+
+
+
+
+ 审核
+
+
+
+
+
+
+
+
+
+ {{ startdate }}
+
+
+
+
+
+ {{ n.name }}
+
+
+
+
+
+ {{ stopdate }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 确认
+
+
+
+ 返回
+
+
+
+
+
+
+
+
+
diff --git a/src/pages/equipment/RepairAudit/index.vue b/src/pages/equipment/RepairAudit/index.vue
new file mode 100644
index 0000000..1f0bf60
--- /dev/null
+++ b/src/pages/equipment/RepairAudit/index.vue
@@ -0,0 +1,316 @@
+
+
+
+
+
+
+ 审核状态
+
+
+
+
+
+
+
+
报修单号: {{ item.orderCode }}
+
{{ item.orderStatus == 0 ? '待处理' : item.orderStatus == 1 ? '已完成' : item.orderStatus == 2 ? '已逾期' : '进行中' }}
+
+
+ 报修来源: {{ item.orderSource }}
+ 设备编码:{{ item.equipmentCode }}
+ 设备名称:{{ item.equipmentName }}
+ 故障时间:{{ item.orderBreakdownTime }}
+ 故障描述:{{ item.orderDesc }}
+ 报修人: {{ item.orderRepairmanName }}
+
+
+
+
+
+
+
+
diff --git a/src/pages/equipment/RepairAudit/model.ts b/src/pages/equipment/RepairAudit/model.ts
new file mode 100644
index 0000000..4c20a65
--- /dev/null
+++ b/src/pages/equipment/RepairAudit/model.ts
@@ -0,0 +1,69 @@
+import { getModule, Module, MutationAction, VuexModule } from 'vuex-module-decorators';
+import store from '@/store';
+import http from '@/utils/request';
+import { url } from '@/utils/url';
+@Module({
+ namespaced: true,
+ dynamic: true,
+ store,
+ name: 'page.equipment.RepairAudit',
+})
+export class RepairAudit extends VuexModule {
+ rowdata: any = [];
+ orderNoItemList: any = [];
+ getTaskRecordList: any = {};
+ @MutationAction
+ async getTodayTask(params: any) {
+ const result: any = await http.get(url.lanjuequipment.product.RepairAudit.getBXList, {
+ params: {
+ orderStatus: params,
+ },
+ });
+ const orderNoItemList = result.data;
+ return { orderNoItemList };
+ }
+ @MutationAction
+ async getTaskRecord(params: any) {
+ const result: any = await http.get(url.lanjuequipment.product.RepairAudit.getBXDetail + params);
+ const getTaskRecordList = result.data;
+ return { getTaskRecordList };
+ }
+ //巡检列表巡检记录
+ OrderInfList: any = [];
+ @MutationAction
+ async getInspectionOrderInfo(params: any) {
+ const result: any = await http.post(url.lanjuequipment.product.Inspection.getInspectionOrderInfo, params);
+ const OrderInfList: [] = result.data;
+ return { OrderInfList };
+ }
+ SubmitCode: any = '';
+ //是否开机保养
+ @MutationAction
+ async startMaintenanceTask(params: any) {
+ const result: any = await http.get(url.lanjuequipment.product.Upkeep.startMaintenanceTask, { params });
+ const SubmitCode: [] = result;
+ return { SubmitCode };
+ }
+ @MutationAction
+ async updateInspectionRecord(params: any) {
+ const result: any = await http.post(url.lanjuequipment.product.Inspection.updateInspectionRecord, params);
+ const SubmitCode: [] = result;
+ return { SubmitCode };
+ }
+ Checklist: any = [];
+ @MutationAction
+ async queryhandChecklist(params: any) {
+ const result: any = await http.get(url.lanjuequipment.product.Repair.list, { params: params });
+ const Checklist: any = result.rows;
+ console.log('this.tableData', Checklist);
+ // debugger
+ return { Checklist };
+ }
+ @MutationAction
+ async rowdatanull() {
+ const rowdata: [] = [];
+ return { rowdata };
+ }
+}
+
+export default getModule(RepairAudit);
diff --git a/src/pages/login/login/index.vue b/src/pages/login/login/index.vue
index 1529070..a149208 100644
--- a/src/pages/login/login/index.vue
+++ b/src/pages/login/login/index.vue
@@ -142,7 +142,7 @@ export default class LoginPage extends BasePage {
// console.log('Version////', this.Version);
}
///********版本号修改区域**********
- version = '0.0.90'; //正式版本号
+ version = '0.0.91'; //正式版本号
//version = '0.0.6'; //测试版本号
//***************标志修改区域:是否是测试标志: false 正式版本; true 测试版本****************
//isTest = true;
diff --git a/src/pages/quality/Materialinspection/index.vue b/src/pages/quality/Materialinspection/index.vue
index 165f787..ca47833 100644
--- a/src/pages/quality/Materialinspection/index.vue
+++ b/src/pages/quality/Materialinspection/index.vue
@@ -255,7 +255,7 @@
-
+
@@ -298,17 +298,17 @@
-
+
-
+
-
+
- 报工单号:
+ 标志码: