|
|
|
@ -55,7 +55,7 @@ export class Repair extends VuexModule {
|
|
|
|
|
// debugger
|
|
|
|
|
return { Checklist };
|
|
|
|
|
}
|
|
|
|
|
//维修原因分析下拉列表
|
|
|
|
|
//维修维修措施
|
|
|
|
|
locList: any = [];
|
|
|
|
|
@MutationAction
|
|
|
|
|
async getFaultMeasuresList() {
|
|
|
|
@ -67,10 +67,11 @@ export class Repair extends VuexModule {
|
|
|
|
|
}));
|
|
|
|
|
return { locList };
|
|
|
|
|
}
|
|
|
|
|
//原因分析
|
|
|
|
|
locList2: any = [];
|
|
|
|
|
@MutationAction
|
|
|
|
|
async getFaultDescriptionList() {
|
|
|
|
|
const result: any = await http.get(url.lanjuequipment.product.Repair.getFaultDescriptionList);
|
|
|
|
|
async getFaultReasonList() {
|
|
|
|
|
const result: any = await http.get(url.lanjuequipment.product.Repair.getFaultReasonList);
|
|
|
|
|
const DictListoild: [] = result.data;
|
|
|
|
|
const locList2 = DictListoild.map((item: any) => ({
|
|
|
|
|
label: item.faultSubclass,
|
|
|
|
|