|
|
|
@ -92,60 +92,76 @@
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="10">
|
|
|
|
|
<el-form-item class="query-form-item" label="计划完成日期:" prop="planTime">
|
|
|
|
|
<el-date-picker
|
|
|
|
|
v-model="repairOrder.planTime"
|
|
|
|
|
type="datetime"
|
|
|
|
|
placeholder="选择日期"
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
clearable
|
|
|
|
|
value-format="yyyy-MM-dd HH:mm:ss"
|
|
|
|
|
>
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="10">
|
|
|
|
|
<el-form-item label="报修说明:">
|
|
|
|
|
<el-input v-model="repairOrder.msg" placeholder="请输入报修信息" style="width: 90%"
|
|
|
|
|
clearable></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="11">
|
|
|
|
|
<el-form-item label="报修图片:">
|
|
|
|
|
<el-upload
|
|
|
|
|
class="upload-demo"
|
|
|
|
|
ref="upload"
|
|
|
|
|
:action="this.uploadUrl"
|
|
|
|
|
:on-preview="uploadHandlePreview"
|
|
|
|
|
:on-remove="uploadHandleRemove"
|
|
|
|
|
:headers="headers"
|
|
|
|
|
:on-exceed="uploadHandleExceed"
|
|
|
|
|
accept=".jpg,.png,.pdf,.doc"
|
|
|
|
|
:on-change="uploadOnchange"
|
|
|
|
|
:on-success="uploadHandleSuccess"
|
|
|
|
|
:on-error="uploadHandleError"
|
|
|
|
|
:file-list="fileList"
|
|
|
|
|
:data="{ type: 'image2' }"
|
|
|
|
|
:auto-upload="true"
|
|
|
|
|
>
|
|
|
|
|
<el-button
|
|
|
|
|
slot="trigger"
|
|
|
|
|
size="small"
|
|
|
|
|
type="primary"
|
|
|
|
|
>
|
|
|
|
|
{{ choiceFile }}
|
|
|
|
|
</el-button>
|
|
|
|
|
<div>只能上传 jpg,png,pdf,doc 文件,且不超过 10 MB</div>
|
|
|
|
|
</el-upload>
|
|
|
|
|
<el-col :span="19">
|
|
|
|
|
<el-form-item label="备注:" prop="remark">
|
|
|
|
|
<el-input type="textarea" :rows="3" v-model="repairOrder.remark"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-form>
|
|
|
|
|
</el-card>
|
|
|
|
|
<el-card>
|
|
|
|
|
<el-row type="flex" justify="end">
|
|
|
|
|
<el-button-group style="display: flex;margin-bottom: 15px; margin-right: 10px">
|
|
|
|
|
<el-button type="primary" @click.native.stop="selectPlanFunction(null)" :loading="loading">选入</el-button>
|
|
|
|
|
</el-button-group>
|
|
|
|
|
<el-button-group style="display: flex;margin-bottom: 15px; margin-right: 50px">
|
|
|
|
|
<el-button type="primary" @click.native.stop="setPlanFunction(null)" :loading="loading">新增</el-button>
|
|
|
|
|
</el-button-group>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-table :data="detailList" style="width: 100%;" border highlight-current-row max-height="300" height="500"
|
|
|
|
|
ref="multipleTable">
|
|
|
|
|
<el-table-column label="序号" type="index" width="60"></el-table-column>
|
|
|
|
|
<el-table-column label="项目内容" prop="content" width="300"></el-table-column>
|
|
|
|
|
<el-table-column label="备注" prop="remark" show-overflow-tooltip="true"></el-table-column>
|
|
|
|
|
<el-table-column label="操作" width="120">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button type="text" size="small" @click.stop="true" @click.native="setPlanFunction(scope.row)">编辑
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button type="text" size="small" @click.stop="true"
|
|
|
|
|
@click.native="delectPlanFunction(scope.row)">删除
|
|
|
|
|
</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
</el-card>
|
|
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
|
title="设备巡检设置"
|
|
|
|
|
:visible.sync="repairOrderSetVisible"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
width="40%"
|
|
|
|
|
append-to-body
|
|
|
|
|
v-if="repairOrderSetVisible"
|
|
|
|
|
>
|
|
|
|
|
<deviceInspectPlanProjectSet
|
|
|
|
|
:inputQuery="inputQuery"
|
|
|
|
|
type="repair"
|
|
|
|
|
:closeDialog="repairOrderSetCloseDialog"
|
|
|
|
|
></deviceInspectPlanProjectSet>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
|
title="设备巡检选入"
|
|
|
|
|
:visible.sync="inspectSelectPlanSetVisible"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
width="80%"
|
|
|
|
|
append-to-body
|
|
|
|
|
v-if="inspectSelectPlanSetVisible"
|
|
|
|
|
>
|
|
|
|
|
<deviceProjectSelect
|
|
|
|
|
:inputQuery="inputQuery"
|
|
|
|
|
type="3"
|
|
|
|
|
repairType="repair"
|
|
|
|
|
:closeDialog="repairOrderSetCloseDialog"
|
|
|
|
|
></deviceProjectSelect>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
@ -219,6 +235,7 @@
|
|
|
|
|
@pagination="getDeviceList"
|
|
|
|
|
></pagination>
|
|
|
|
|
</el-card>
|
|
|
|
|
|
|
|
|
|
</el-dialog>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
@ -228,9 +245,13 @@
|
|
|
|
|
import {isBlank} from "@/utils/strUtil";
|
|
|
|
|
import {getDeptListByUser} from "@/api/auth/authDept";
|
|
|
|
|
import {getInvListByUser} from "@/api/system/invWarehouse";
|
|
|
|
|
import {saveDeviceRepairOrder} from "@/api/inventory/deviceRepairOrder";
|
|
|
|
|
import {getDeptDeviceList} from "@/api/inventory/deptDevice";
|
|
|
|
|
import store from "@/store";
|
|
|
|
|
import {saveDeviceRepairOrder} from "@/api/inventory/deviceRepairOrder"
|
|
|
|
|
import deviceInspectPlanProjectSet from "@/views/inventory/DeviceInspectPlanProjectSet"
|
|
|
|
|
import deviceProjectSelect from "@/views/inventory/DeviceProjectSelect"
|
|
|
|
|
import {selectDeviceInspectPlanDelect} from "@/api/inventory/deviceInspectPlanDelect";
|
|
|
|
|
import {deleteRepairOrderDetail, filterByorderIdFk} from "@/api/inventory/deviceRepairOrderDetail";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
@ -258,6 +279,7 @@ export default {
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 10
|
|
|
|
|
},
|
|
|
|
|
loading: false,
|
|
|
|
|
deviceList: [],
|
|
|
|
|
deviceTotal: 0,
|
|
|
|
|
deptName: null,
|
|
|
|
@ -277,7 +299,11 @@ export default {
|
|
|
|
|
urgencyType: [{required: true, message: '请选择紧急程度', trigger: 'blur'}],
|
|
|
|
|
planTime: [{required: true, message: '请选择计划完成日期', trigger: 'blur'}],
|
|
|
|
|
},
|
|
|
|
|
check: true
|
|
|
|
|
check: true,
|
|
|
|
|
detailList: [],
|
|
|
|
|
inputQuery: {},
|
|
|
|
|
repairOrderSetVisible: false,
|
|
|
|
|
inspectSelectPlanSetVisible: false,
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
@ -327,10 +353,7 @@ export default {
|
|
|
|
|
this.$message.error("请选择紧急程度")
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (isBlank(this.repairOrder.planTime)) {
|
|
|
|
|
this.$message.error("请选择计划完成日期")
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let formName = isBlank(this.repairOrder.id) ? "add" : "edit";
|
|
|
|
|
saveDeviceRepairOrder(this.repairOrder, formName).then((res) => {
|
|
|
|
|
if (res.code === 20000) {
|
|
|
|
@ -482,7 +505,106 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
uploadHandleError() {
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
selectPlanFunction(row){
|
|
|
|
|
if (this.repairOrder.id != null) {
|
|
|
|
|
if(isBlank(row)){
|
|
|
|
|
this.inputQuery = {};
|
|
|
|
|
this.inputQuery.orderIdFk = this.repairOrder.orderId
|
|
|
|
|
}else{
|
|
|
|
|
this.inputQuery = row
|
|
|
|
|
}
|
|
|
|
|
this.inspectSelectPlanSetVisible = true;
|
|
|
|
|
} else {
|
|
|
|
|
this.$refs["dataForm"].validate((valid) => {
|
|
|
|
|
if (valid) {
|
|
|
|
|
let formName = isBlank(this.repairOrder.id) ? "add" : "edit";
|
|
|
|
|
if (formName == "add") {
|
|
|
|
|
this.repairOrder.planStatus = 1;
|
|
|
|
|
}
|
|
|
|
|
saveDeviceRepairOrder(this.repairOrder, formName).then((res) => {
|
|
|
|
|
if (res.code === 20000) {
|
|
|
|
|
this.repairOrder.id = res.data.id;
|
|
|
|
|
this.repairOrder.orderId = res.data.orderId;
|
|
|
|
|
this.inputQuery = {};
|
|
|
|
|
this.inputQuery.orderIdFk = this.repairOrder.orderId
|
|
|
|
|
this.inspectSelectPlanSetVisible = true;
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(res.message);
|
|
|
|
|
}
|
|
|
|
|
}).catch((error) => {
|
|
|
|
|
this.$message.error(error.message);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
setPlanFunction(row) {
|
|
|
|
|
if (this.repairOrder.id != null) {
|
|
|
|
|
if(isBlank(row)){
|
|
|
|
|
this.inputQuery = {};
|
|
|
|
|
this.inputQuery.orderIdFk = this.repairOrder.orderId
|
|
|
|
|
}else{
|
|
|
|
|
this.inputQuery = row
|
|
|
|
|
}
|
|
|
|
|
this.repairOrderSetVisible = true;
|
|
|
|
|
} else {
|
|
|
|
|
this.$refs["dataForm"].validate((valid) => {
|
|
|
|
|
if (valid) {
|
|
|
|
|
let formName = isBlank(this.repairOrder.id) ? "add" : "edit";
|
|
|
|
|
if(formName == "add"){
|
|
|
|
|
this.repairOrder.planStatus = 1;
|
|
|
|
|
}
|
|
|
|
|
saveDeviceRepairOrder(this.repairOrder, formName).then((res) => {
|
|
|
|
|
if (res.code === 20000) {
|
|
|
|
|
this.repairOrder.id = res.data.id;
|
|
|
|
|
this.repairOrder.orderId = res.data.orderId;
|
|
|
|
|
this.inputQuery = {};
|
|
|
|
|
this.inputQuery.orderIdFk = this.repairOrder.orderId
|
|
|
|
|
this.repairOrderSetVisible = true;
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(res.message);
|
|
|
|
|
}
|
|
|
|
|
}).catch((error) => {
|
|
|
|
|
this.$message.error(error.message);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
delectPlanFunction(row) {
|
|
|
|
|
deleteRepairOrderDetail({id: row.id}).then((res) => {
|
|
|
|
|
if (res.code == 20000) {
|
|
|
|
|
this.selectDevicerepairOrderDelect({orderIdFk: row.orderIdFk})
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(res.message);
|
|
|
|
|
}
|
|
|
|
|
}).catch((error) => {
|
|
|
|
|
this.$message.error(error.message);
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
repairOrderSetCloseDialog() {
|
|
|
|
|
this.repairOrderSetVisible = false;
|
|
|
|
|
this.inspectSelectPlanSetVisible = false;
|
|
|
|
|
this.selectDevicerepairOrderDelect({orderIdFk: this.inputQuery.orderIdFk})
|
|
|
|
|
},
|
|
|
|
|
selectDevicerepairOrderDelect(obj) {
|
|
|
|
|
filterByorderIdFk(obj).then((res) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
if (res.code === 20000) {
|
|
|
|
|
this.detailList = res.data || [];
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(res.message);
|
|
|
|
|
this.detailList = [];
|
|
|
|
|
}
|
|
|
|
|
}).catch((error) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.$message.error(error.message);
|
|
|
|
|
this.detailList = [];
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
components:{
|
|
|
|
|
deviceInspectPlanProjectSet,deviceProjectSelect
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
this.uploadUrl = this.BASE_URL + "/udiwms/upload/register/file";
|
|
|
|
@ -492,6 +614,9 @@ export default {
|
|
|
|
|
};
|
|
|
|
|
this.repairOrder.uploadImage = null;
|
|
|
|
|
this.getDeptList();
|
|
|
|
|
if(this.repairOrder.id !=null){
|
|
|
|
|
this.selectDevicerepairOrderDelect({orderIdFk: this.repairOrder.orderId})
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|