设备管理-委外-1

master
A0010407 2 years ago
parent 21a3a77672
commit 97d066a3f7

@ -1,166 +1,285 @@
<template> <template>
<div class="app-container"> <div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="98px"> <el-form
<el-form-item label="委外工单编码" prop="workCode"> :model="queryParams"
<el-input ref="queryForm"
v-model="queryParams.workCode" size="small"
placeholder="请输入委外工单编码" :inline="true"
clearable v-show="showSearch"
@keyup.enter.native="handleQuery" label-width="98px"
/> >
</el-form-item> <el-form-item label="委外工单编码" prop="workCode">
<el-form-item label="维修人员" prop="workPerson"> <el-input
<el-input v-model="queryParams.workCode"
v-model="queryParams.workPerson" placeholder="请输入委外工单编码"
placeholder="请输入维修人员" clearable
clearable style="width: 200px"
@keyup.enter.native="handleQuery" @keyup.enter.native="handleQuery"
/> />
</el-form-item> </el-form-item>
<el-form-item label="委外单位" prop="workOutsourcingUnit"> <el-form-item label="维修人员" prop="workPerson">
<el-input <el-input
v-model="queryParams.workOutsourcingUnit" v-model="queryParams.workPerson"
placeholder="请输入委外单位" placeholder="请输入维修人员"
clearable style="width: 200px"
@keyup.enter.native="handleQuery" clearable
/> @keyup.enter.native="handleQuery"
</el-form-item> />
<el-form-item label="联系方式" prop="workConnection"> </el-form-item>
<el-input <el-form-item label="委外单位" prop="workOutsourcingUnit">
v-model="queryParams.workConnection" <el-input
placeholder="请输入联系方式" v-model="queryParams.workOutsourcingUnit"
clearable placeholder="请输入委外单位"
@keyup.enter.native="handleQuery" style="width: 200px"
/> clearable
</el-form-item> @keyup.enter.native="handleQuery"
<el-form-item label="委外费用" prop="workCost"> />
<el-input </el-form-item>
v-model="queryParams.workCost" <el-form-item label="联系方式" prop="workConnection">
placeholder="请输入委外费用" <el-input
clearable v-model="queryParams.workConnection"
@keyup.enter.native="handleQuery" placeholder="请输入联系方式"
/> style="width: 200px"
</el-form-item> clearable
<el-form-item label="委外用时" prop="workCostTime"> @keyup.enter.native="handleQuery"
<el-input />
v-model="queryParams.workCostTime" </el-form-item>
placeholder="请输入委外用时" <el-form-item label="委外费用" prop="workCost">
clearable <el-input
@keyup.enter.native="handleQuery" v-model="queryParams.workCost"
/> placeholder="请输入委外费用"
</el-form-item> clearable
<el-form-item> style="width: 200px"
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery"></el-button> @keyup.enter.native="handleQuery"
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery"></el-button> />
</el-form-item> </el-form-item>
</el-form> <el-form-item label="委外用时" prop="workCostTime">
<el-input
v-model="queryParams.workCostTime"
placeholder="请输入委外用时"
clearable
style="width: 200px"
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="委外类型" prop="workType">
<el-select
v-model="queryParams.workType"
placeholder="请选择委外类型"
@change="$forceUpdate()"
clearable
style="width: 200px"
@keyup.enter.native="handleQuery"
>
<el-option
v-for="item in options"
:key="item.workType"
:label="item.label"
:value="item.workType"
></el-option>
</el-select>
</el-form-item>
<el-form-item>
<el-button
type="primary"
icon="el-icon-search"
size="mini"
@click="handleQuery"
>搜索</el-button
>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
>重置</el-button
>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8"> <el-row :gutter="10" class="mb8">
<el-col :span="1.5"> <el-col :span="1.5">
<el-button <el-button
type="primary" type="primary"
plain plain
icon="el-icon-plus" icon="el-icon-plus"
size="mini" size="mini"
@click="handleAdd" @click="handleAdd"
v-hasPermi="['device:outsourceWorkOrder:add']" v-hasPermi="['device:outsourceWorkOrder:add']"
>新增</el-button> >新增</el-button
</el-col> >
<el-col :span="1.5"> </el-col>
<el-button <el-col :span="1.5">
type="success" <el-button
plain type="success"
icon="el-icon-edit" plain
size="mini" icon="el-icon-edit"
:disabled="single" size="mini"
@click="handleUpdate" :disabled="single"
v-hasPermi="['device:outsourceWorkOrder:edit']" @click="handleUpdate"
>修改</el-button> v-hasPermi="['device:outsourceWorkOrder:edit']"
</el-col> >修改</el-button
<el-col :span="1.5"> >
<el-button </el-col>
type="danger" <el-col :span="1.5">
plain <el-button
icon="el-icon-delete" type="danger"
size="mini" plain
:disabled="multiple" icon="el-icon-delete"
@click="handleDelete" size="mini"
v-hasPermi="['device:outsourceWorkOrder:remove']" :disabled="multiple"
>删除</el-button> @click="handleDelete"
</el-col> v-hasPermi="['device:outsourceWorkOrder:remove']"
<el-col :span="1.5"> >删除</el-button
<el-button >
type="warning" </el-col>
plain <el-col :span="1.5">
icon="el-icon-download" <el-button
size="mini" type="warning"
@click="handleExport" plain
v-hasPermi="['device:outsourceWorkOrder:export']" icon="el-icon-download"
>导出</el-button> size="mini"
</el-col> @click="handleExport"
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar> v-hasPermi="['device:outsourceWorkOrder:export']"
</el-row> >导出</el-button
>
</el-col>
<right-toolbar
:showSearch.sync="showSearch"
@queryTable="getList"
></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="outsourceWorkOrderList" @selection-change="handleSelectionChange"> <el-table
<el-table-column type="selection" width="55" align="center" /> v-loading="loading"
<el-table-column label="委外工单编码" align="center" prop="workCode" width="180"/> :data="outsourceWorkOrderList"
<el-table-column label="报修单号" align="center" prop="orderCode" width="180"/> @selection-change="handleSelectionChange"
<el-table-column label="维修单号" align="center" prop="repairCode" width="180"/> >
<el-table-column label="设备编码" align="center" prop="equipmentCode" /> <el-table-column type="selection" width="55" align="center" />
<el-table-column label="设备名称" align="center" prop="equipmentName" /> <el-table-column
<el-table-column label="设备类型" align="center" prop="equipmentTypeName" /> label="委外工单编码"
<el-table-column label="委外维修人员" align="center" prop="workPerson" width="150"/> align="center"
<el-table-column label="委外单位" align="center" prop="workOutsourcingUnit" width="200"/> prop="workCode"
<el-table-column label="联系方式" align="center" prop="workConnection" width="150"/> width="180"
<el-table-column label="委外原因" align="center" prop="workReason" width="150"/> />
<el-table-column label="委外类型" align="center" prop="workType" /> <el-table-column
<el-table-column label="委外费用" align="center" prop="workCost" /> label="报修单号"
<el-table-column label="委外用时" align="center" prop="workCostTime" /> align="center"
<el-table-column width="180" label="创建时间" align="center" prop="createTime"> prop="orderCode"
<template slot-scope="scope"> width="180"
<span>{{ parseTime(scope.row.createTime) }}</span> />
</template> <el-table-column
</el-table-column> label="维修单号"
<el-table-column width="120" label="创建人" align="center" prop="createBy"/> align="center"
<el-table-column width="180" label="更新时间" align="center" prop="updateTime"> prop="repairCode"
<template slot-scope="scope"> width="180"
<span>{{ parseTime(scope.row.updateTime) }}</span> />
</template> <el-table-column label="设备编码" align="center" prop="equipmentCode" />
</el-table-column> <el-table-column label="设备名称" align="center" prop="equipmentName" />
<el-table-column width="120" label="更新人" align="center" prop="updateBy"/> <el-table-column
<el-table-column label="工厂编码" align="center" prop="factoryCode" /> label="设备类型"
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="150"> align="center"
<template slot-scope="scope"> prop="equipmentTypeName"
<el-button />
size="mini" <el-table-column
type="text" label="委外维修人员"
icon="el-icon-edit" align="center"
@click="handleUpdate(scope.row)" prop="workPerson"
v-hasPermi="['device:outsourceWorkOrder:edit']" width="150"
>修改</el-button> />
<el-button <el-table-column
size="mini" label="委外单位"
type="text" align="center"
icon="el-icon-delete" prop="workOutsourcingUnit"
@click="handleDelete(scope.row)" width="200"
v-hasPermi="['device:outsourceWorkOrder:remove']" />
>删除</el-button> <el-table-column
</template> label="联系方式"
</el-table-column> align="center"
</el-table> prop="workConnection"
width="150"
/>
<el-table-column
label="委外原因"
align="center"
prop="workReason"
width="150"
/>
<el-table-column label="委外类型" align="center" prop="workType">
<template slot-scope="scope">
{{ scope.row.workType == 1 ? "保养委外" : "维修委外" }}
</template>
</el-table-column>
<el-table-column label="委外费用" align="center" prop="workCost" />
<el-table-column label="委外用时" align="center" prop="workCostTime" />
<el-table-column
width="180"
label="创建时间"
align="center"
prop="createTime"
>
<template slot-scope="scope">
<span>{{ parseTime(scope.row.createTime) }}</span>
</template>
</el-table-column>
<el-table-column
width="120"
label="创建人"
align="center"
prop="createBy"
/>
<el-table-column
width="180"
label="更新时间"
align="center"
prop="updateTime"
>
<template slot-scope="scope">
<span>{{ parseTime(scope.row.updateTime) }}</span>
</template>
</el-table-column>
<el-table-column
width="120"
label="更新人"
align="center"
prop="updateBy"
/>
<el-table-column label="工厂编码" align="center" prop="factoryCode" />
<el-table-column
label="操作"
align="center"
class-name="small-padding fixed-width"
width="150"
>
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['device:outsourceWorkOrder:edit']"
>修改</el-button
>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['device:outsourceWorkOrder:remove']"
>删除</el-button
>
</template>
</el-table-column>
</el-table>
<pagination <pagination
v-show="total>0" v-show="total > 0"
:total="total" :total="total"
:page.sync="queryParams.pageNum" :page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize" :limit.sync="queryParams.pageSize"
@pagination="getList" @pagination="getList"
/> />
<!-- 添加或修改委外工单对话框 --> <!-- 添加或修改委外工单对话框 -->
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body> <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="130px"> <el-form ref="form" :model="form" :rules="rules" label-width="130px">
<el-form-item label="设备编码" prop="equipmentCode"> <el-form-item label="设备编码" prop="equipmentCode">
<el-input <el-input
v-model="form.equipmentCode" v-model="form.equipmentCode"
placeholder="请输入设备编码" placeholder="请输入设备编码"
@ -174,16 +293,44 @@
</el-input> </el-input>
<ItemSelect ref="itemSelect" @onSelected="onItemSelectedEquipment"> <ItemSelect ref="itemSelect" @onSelected="onItemSelectedEquipment">
</ItemSelect> </ItemSelect>
</el-form-item> </el-form-item>
<el-form-item label="委外维修人员" prop="workPerson"> <el-form-item label="委外类型" prop="workType">
<el-input v-model="form.workPerson" placeholder="请输入委外维修人员" style="width: 270px"/> <el-select
</el-form-item> v-model="form.workType"
<el-form-item label="委外单位" prop="workOutsourcingUnit"> placeholder="请选择委外类型"
<el-input v-model="form.workOutsourcingUnit" placeholder="请输入委外单位" style="width: 270px"/> @change="$forceUpdate()"
</el-form-item> clearable
<el-form-item label="委外单位联系方式" prop="workConnection"> style="width: 270px"
<el-input v-model="form.workConnection" placeholder="请输入委外单位联系方式" style="width: 270px"/> >
</el-form-item> <el-option
v-for="item in options"
:key="item.workType"
:label="item.label"
:value="item.workType"
></el-option>
</el-select>
</el-form-item>
<el-form-item label="委外维修人员" prop="workPerson">
<el-input
v-model="form.workPerson"
placeholder="请输入委外维修人员"
style="width: 270px"
/>
</el-form-item>
<el-form-item label="委外单位" prop="workOutsourcingUnit">
<el-input
v-model="form.workOutsourcingUnit"
placeholder="请输入委外单位"
style="width: 270px"
/>
</el-form-item>
<el-form-item label="委外单位联系方式" prop="workConnection">
<el-input
v-model="form.workConnection"
placeholder="请输入委外单位联系方式"
style="width: 270px"
/>
</el-form-item>
<el-form-item label="委外原因" prop="workReason"> <el-form-item label="委外原因" prop="workReason">
<el-input <el-input
v-model="form.workReason" v-model="form.workReason"
@ -193,119 +340,142 @@
:autosize="{ minRows: 2, maxRows: 4 }" :autosize="{ minRows: 2, maxRows: 4 }"
/> />
</el-form-item> </el-form-item>
<el-form-item label="委外费用" prop="workCost"> <el-form-item label="委外费用" prop="workCost">
<el-input v-model="form.workCost" placeholder="请输入委外费用" style="width: 270px"/> <el-input
</el-form-item> v-model="form.workCost"
<el-form-item label="委外用时" prop="workCostTime"> placeholder="请输入委外费用"
<el-input v-model="form.workCostTime" placeholder="请输入委外用时" style="width: 270px"/> style="width: 270px"
</el-form-item> />
</el-form> </el-form-item>
<div slot="footer" class="dialog-footer"> <el-form-item label="委外用时" prop="workCostTime">
<el-button type="primary" @click="submitForm"> </el-button> <el-input
<el-button @click="cancel"> </el-button> v-model="form.workCostTime"
</div> placeholder="请输入委外用时"
</el-dialog> style="width: 270px"
</div> />
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template> </template>
<script> <script>
import { listOutsourceWorkOrder, getOutsourceWorkOrder, delOutsourceWorkOrder, addOutsourceWorkOrder, updateOutsourceWorkOrder } from "@/api/device/outsourceWorkOrder"; import {
listOutsourceWorkOrder,
getOutsourceWorkOrder,
delOutsourceWorkOrder,
addOutsourceWorkOrder,
updateOutsourceWorkOrder,
} from "@/api/device/outsourceWorkOrder";
import ItemSelect from "./selectSingleEquipment.vue"; import ItemSelect from "./selectSingleEquipment.vue";
export default { export default {
name: "OutsourceWorkOrder", name: "OutsourceWorkOrder",
components: { ItemSelect }, components: { ItemSelect },
data() { data() {
return { return {
// //
loading: true, loading: true,
// //
ids: [], ids: [],
// //
single: true, single: true,
// //
multiple: true, multiple: true,
// //
showSearch: true, showSearch: true,
// //
total: 0, total: 0,
// //
outsourceWorkOrderList: [], outsourceWorkOrderList: [],
// //
title: "", title: "",
// //
open: false, open: false,
// //
queryParams: { queryParams: {
pageNum: 1, pageNum: 1,
pageSize: 10, pageSize: 10,
workCode: null, workCode: null,
repairCode: null, repairCode: null,
workPerson: null, workPerson: null,
workOutsourcingUnit: null, workOutsourcingUnit: null,
workConnection: null, workConnection: null,
workReason: null, workReason: null,
workType: null, workType: null,
equipmentCode: null, equipmentCode: null,
workCost: null, workCost: null,
workCostTime: null, workCostTime: null,
attr1: null, attr1: null,
attr2: null, attr2: null,
attr3: null, attr3: null,
factoryCode: null factoryCode: null,
}, },
// options: [
form: {}, {
// workType: "1",
rules: { label: "保养委外",
} },
}; {
}, workType: "0",
created() { label: "维修委外",
this.getList(); },
}, ],
methods: { //
/** 查询委外工单列表 */ form: {},
getList() { //
this.loading = true; rules: {},
listOutsourceWorkOrder(this.queryParams).then(response => { };
this.outsourceWorkOrderList = response.rows; },
this.total = response.total; created() {
this.loading = false; this.getList();
}); },
}, methods: {
// /** 查询委外工单列表 */
cancel() { getList() {
this.open = false; this.loading = true;
this.reset(); listOutsourceWorkOrder(this.queryParams).then((response) => {
}, this.outsourceWorkOrderList = response.rows;
// this.total = response.total;
reset() { this.loading = false;
this.form = { });
workId: null, },
workCode: null, //
repairCode: null, cancel() {
workPerson: null, this.open = false;
workOutsourcingUnit: null, this.reset();
workConnection: null, },
workReason: null, //
workType: null, reset() {
equipmentCode: null, this.form = {
workCost: null, workId: null,
workCostTime: null, workCode: null,
attr1: null, repairCode: null,
attr2: null, workPerson: null,
attr3: null, workOutsourcingUnit: null,
delFlag: null, workConnection: null,
createBy: null, workReason: null,
createTime: null, workType: null,
updateBy: null, equipmentCode: null,
updateTime: null, workCost: null,
factoryCode: null workCostTime: null,
}; attr1: null,
this.resetForm("form"); attr2: null,
}, attr3: null,
// delFlag: null,
createBy: null,
createTime: null,
updateBy: null,
updateTime: null,
factoryCode: null,
};
this.resetForm("form");
},
//
handleSelectEquipment() { handleSelectEquipment() {
this.$refs.itemSelect.showFlag = true; this.$refs.itemSelect.showFlag = true;
}, },
@ -313,74 +483,82 @@ export default {
onItemSelectedEquipment(obj) { onItemSelectedEquipment(obj) {
this.form.equipmentCode = obj; this.form.equipmentCode = obj;
}, },
/** 搜索按钮操作 */ /** 搜索按钮操作 */
handleQuery() { handleQuery() {
this.queryParams.pageNum = 1; this.queryParams.pageNum = 1;
this.getList(); this.getList();
}, },
/** 重置按钮操作 */ /** 重置按钮操作 */
resetQuery() { resetQuery() {
this.resetForm("queryForm"); this.resetForm("queryForm");
this.handleQuery(); this.handleQuery();
}, },
// //
handleSelectionChange(selection) { handleSelectionChange(selection) {
this.ids = selection.map(item => item.workId) this.ids = selection.map((item) => item.workId);
this.single = selection.length!==1 this.single = selection.length !== 1;
this.multiple = !selection.length this.multiple = !selection.length;
}, },
/** 新增按钮操作 */ /** 新增按钮操作 */
handleAdd() { handleAdd() {
this.reset(); this.reset();
this.open = true; this.open = true;
this.title = "添加委外工单"; this.title = "添加委外工单";
}, },
/** 修改按钮操作 */ /** 修改按钮操作 */
handleUpdate(row) { handleUpdate(row) {
this.reset(); this.reset();
const workId = row.workId || this.ids const workId = row.workId || this.ids;
getOutsourceWorkOrder(workId).then(response => { getOutsourceWorkOrder(workId).then((response) => {
this.form = response.data; this.form = response.data;
this.open = true; this.open = true;
this.title = "修改委外工单"; this.title = "修改委外工单";
}); });
}, },
/** 提交按钮 */ /** 提交按钮 */
submitForm() { submitForm() {
this.$refs["form"].validate(valid => { this.$refs["form"].validate((valid) => {
if (valid) { if (valid) {
if (this.form.workId != null) { if (this.form.workId != null) {
updateOutsourceWorkOrder(this.form).then(response => { updateOutsourceWorkOrder(this.form).then((response) => {
this.$modal.msgSuccess("修改成功"); this.$modal.msgSuccess("修改成功");
this.open = false; this.open = false;
this.getList(); this.getList();
}); });
} else { } else {
addOutsourceWorkOrder(this.form).then(response => { addOutsourceWorkOrder(this.form).then((response) => {
this.$modal.msgSuccess("新增成功"); this.$modal.msgSuccess("新增成功");
this.open = false; this.open = false;
this.getList(); this.getList();
}); });
} }
} }
}); });
}, },
/** 删除按钮操作 */ /** 删除按钮操作 */
handleDelete(row) { handleDelete(row) {
const workIds = row.workId || this.ids; const workIds = row.workId || this.ids;
this.$modal.confirm('是否确认删除委外工单编号为"' + workIds + '"的数据项?').then(function() { this.$modal
return delOutsourceWorkOrder(workIds); .confirm('是否确认删除委外工单编号为"' + workIds + '"的数据项?')
}).then(() => { .then(function () {
this.getList(); return delOutsourceWorkOrder(workIds);
this.$modal.msgSuccess("删除成功"); })
}).catch(() => {}); .then(() => {
}, this.getList();
/** 导出按钮操作 */ this.$modal.msgSuccess("删除成功");
handleExport() { })
this.download('device/outsourceWorkOrder/export', { .catch(() => {});
...this.queryParams },
}, `outsourceWorkOrder_${new Date().getTime()}.xlsx`) /** 导出按钮操作 */
} handleExport() {
} this.download(
"device/outsourceWorkOrder/export",
{
...this.queryParams,
},
`outsourceWorkOrder_${new Date().getTime()}.xlsx`
);
},
},
}; };
</script> </script>

@ -192,6 +192,7 @@
align="center" align="center"
:index="indexMethod" :index="indexMethod"
label="序号" label="序号"
fixed
> >
</el-table-column> </el-table-column>
<el-table-column <el-table-column

Loading…
Cancel
Save