You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
2.1 KiB
TypeScript
66 lines
2.1 KiB
TypeScript
2 years ago
|
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.Inspectionunit',
|
||
|
})
|
||
|
export class Inspectionunit extends VuexModule {
|
||
|
rowdata: any = [];
|
||
|
orderNoItemList: any = [];
|
||
|
getTaskRecordList: any = [];
|
||
|
@MutationAction
|
||
|
async getTodayTask(params: any) {
|
||
|
const result: any = await http.get(url.lanjuequipment.product.Repair.getTodayTask, { params: params });
|
||
|
const orderNoItemList = result.data;
|
||
|
return { orderNoItemList };
|
||
|
}
|
||
|
@MutationAction
|
||
|
async getTaskRecord(params: any) {
|
||
|
const result: any = await http.get(url.lanjuequipment.product.Repair.getTaskRecord, { params: params });
|
||
|
const getTaskRecordList = result.data;
|
||
|
return { getTaskRecordList };
|
||
|
}
|
||
|
//巡检列表巡检记录
|
||
|
OrderInfList: any = [];
|
||
|
@MutationAction
|
||
|
async getInspectionOrderInfo(workId: any) {
|
||
|
const result: any = await http.get(url.lanjuequipment.product.Repair.selectPdaRepairWorkOrderDetails + '/' + workId);
|
||
|
const OrderInfList: [] = result.data;
|
||
|
return { OrderInfList };
|
||
|
}
|
||
|
SubmitCode: any = '';
|
||
|
//巡检提交
|
||
|
@MutationAction
|
||
|
async updateInspectionRecord(params: any) {
|
||
|
const result: any = await http.put(url.lanjuequipment.product.Repair.updateDowntime, params);
|
||
|
const SubmitCode: [] = result;
|
||
|
return { SubmitCode };
|
||
|
}
|
||
|
@MutationAction
|
||
|
async updateMaintenanceRecords(params: any) {
|
||
|
const result: any = await http.put(url.lanjuequipment.product.Repair.updateMaintenanceRecords, 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(Inspectionunit);
|