Merge remote-tracking branch 'origin/master'

# Conflicts:
#	src/views/device/sparePartsApplicationRecord/index.vue
yangwl
wws 1 year ago
commit 9a7160e015

@ -92,3 +92,12 @@ export function downWorkorder(workorderId) {
method: 'post' method: 'post'
}); });
} }
// 提交修改工单接口
export function subChangeWorkOrderM(data){
return request({
url:'/plan/pro/workorder/subChangeWorkOrderM',
method:'post',
data:data
})
}

@ -1,8 +1,9 @@
<template> <template>
<el-dialog title="人员选择" <el-dialog
title="人员选择"
v-if="showFlag" v-if="showFlag"
:visible.sync="showFlag" :visible.sync="showFlag"
:modal= false :modal="false"
width="800px" width="800px"
center center
:before-close="cancelEquipmentForm" :before-close="cancelEquipmentForm"
@ -10,7 +11,14 @@
<el-row :gutter="20"> <el-row :gutter="20">
<!--人员数据--> <!--人员数据-->
<el-col :span="24"> <el-col :span="24">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px"> <el-form
:model="queryParams"
ref="queryForm"
size="small"
:inline="true"
v-show="showSearch"
label-width="68px"
>
<el-form-item label="人员编码" prop="itemCode"> <el-form-item label="人员编码" prop="itemCode">
<el-input <el-input
v-model="queryParams.itemCode" v-model="queryParams.itemCode"
@ -30,18 +38,64 @@
/> />
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery"></el-button> <el-button
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery"></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-item>
</el-form> </el-form>
<el-table v-loading="loading" :data="itemList" @selection-change="handleEquipmentSelectionChange" ref="myTable"> <el-table
<el-table-column width="50" align="center" type="selection"></el-table-column> v-loading="loading"
:data="itemList"
@selection-change="handleEquipmentSelectionChange"
ref="myTable"
>
<el-table-column
width="50"
align="center"
type="selection"
></el-table-column>
<!-- 序号 --> <!-- 序号 -->
<el-table-column type="index" width="90" align="center" :index="indexMethod" label="序号"></el-table-column> <el-table-column
<el-table-column label="人员编码" align="center" key="itemCode" prop="userName" v-if="columns[0].visible" ></el-table-column> type="index"
<el-table-column label="人员名称" align="left" key="itemName" prop="nickName" v-if="columns[1].visible" :show-overflow-tooltip="true" /> width="90"
<el-table-column label="部门编码" align="center" prop="postCode" v-if="columns[2].visible" ></el-table-column> align="center"
<el-table-column label="部门名称" align="center" prop="postName" v-if="columns[3].visible" ></el-table-column> :index="indexMethod"
label="序号"
></el-table-column>
<el-table-column
label="人员编码"
align="center"
key="itemCode"
prop="userName"
v-if="columns[0].visible"
></el-table-column>
<el-table-column
label="人员名称"
align="left"
key="itemName"
prop="nickName"
v-if="columns[1].visible"
:show-overflow-tooltip="true"
/>
<el-table-column
label="部门编码"
align="center"
prop="postCode"
v-if="columns[2].visible"
></el-table-column>
<el-table-column
label="部门名称"
align="center"
prop="postName"
v-if="columns[3].visible"
></el-table-column>
</el-table> </el-table>
<pagination <pagination
@ -54,22 +108,22 @@
</el-col> </el-col>
</el-row> </el-row>
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitPersonForm"> </el-button> <el-button type="primary" @click="submitPersonForm"> </el-button>
<el-button @click="cancelEquipmentForm"> </el-button> <el-button @click="cancelEquipmentForm"> </el-button>
</div> </div>
</el-dialog> </el-dialog>
</template> </template>
<script> <script>
import { getMaintenancePersonList} from "@/api/device/repairOrder"; import { getMaintenancePersonList } from "@/api/device/repairOrder";
import { Message } from 'element-ui' import { Message } from "element-ui";
export default { export default {
name: "MdItemSingle", name: "MdItemSingle",
data() { data() {
return { return {
treeData1:[], treeData1: [],
showFlag:false, showFlag: false,
// //
selectedItemId: undefined, selectedItemId: undefined,
selectedRows: undefined, selectedRows: undefined,
@ -80,7 +134,7 @@ export default {
// //
showSearch: true, showSearch: true,
// //
total:0, total: 0,
// //
itemList: null, itemList: null,
// //
@ -88,8 +142,8 @@ export default {
pageNum: 1, pageNum: 1,
pageSize: 10, pageSize: 10,
itemName: undefined, itemName: undefined,
itemCodeGet: '', itemCodeGet: "",
itemCode : undefined, itemCode: undefined,
}, },
// //
columns: [ columns: [
@ -97,7 +151,7 @@ export default {
{ key: 1, label: `人员名称`, visible: true }, { key: 1, label: `人员名称`, visible: true },
{ key: 2, label: `部门编码`, visible: true }, { key: 2, label: `部门编码`, visible: true },
{ key: 3, label: `部门名称`, visible: true }, { key: 3, label: `部门名称`, visible: true },
] ],
}; };
}, },
created() { created() {
@ -105,40 +159,39 @@ export default {
}, },
methods: { methods: {
// //
reset() { reset() {
this.form = { this.form = {
itemId: null, itemId: null,
itemCode: this.processId, itemCode: this.processId,
itemType: null, itemType: null,
}; };
this.resetForm("form"); this.resetForm("form");
}, },
handleEquipmentSelectionChange (val) { handleEquipmentSelectionChange(val) {
this.itemList = val; this.itemList = val;
}, },
// //
indexMethod(index){ indexMethod(index) {
return index+1 ; return index + 1;
}, },
// //
/** 查询设备编码列表*/ /** 查询设备编码列表*/
getList() { getList() {
this.loading = true; this.loading = true;
getMaintenancePersonList(this.queryParams).then(response => { getMaintenancePersonList(this.queryParams).then((response) => {
this.itemList = response.rows; this.itemList = response.rows;
this.total = response.total; this.total = response.total;
this.loading = false; this.loading = false;
} });
);
}, },
// //
handleNodeClick(data) { handleNodeClick(data) {
console.log('id',data.id); console.log("id", data.id);
this.queryParams.equipmentTypeCode = data.equipmentTypeCode; this.queryParams.equipmentTypeCode = data.equipmentTypeCode;
console.log(this.equipmentTypeCode); console.log(this.equipmentTypeCode);
this.handleQuery(); this.handleQuery();
@ -158,25 +211,25 @@ export default {
}, },
// //
handleEquipmentSelectionChange(selection) { handleEquipmentSelectionChange(selection) {
this.ids = selection.map(item => item.nickName); this.ids = selection.map((item) => item.nickName);
this.single = selection.length!==1; this.single = selection.length !== 1;
this.multiple = !selection.length; this.multiple = !selection.length;
console.log("多选框",this.ids); console.log("多选框", this.ids);
}, },
submitPersonForm() { submitPersonForm() {
const data = this.ids; const data = this.ids;
const nickName = data.toString(); const nickName = data.toString();
if(this.queryParams.itemCodeGet == ""){ if (this.queryParams.itemCodeGet == "") {
this.queryParams.itemCodeGet = nickName; this.queryParams.itemCodeGet = nickName;
} }
this.selectedRows = this.queryParams.itemCodeGet; this.selectedRows = this.queryParams.itemCodeGet;
this.$emit('onSelected', this.selectedRows); this.$emit("onSelected", this.selectedRows);
this.getList(); this.getList();
this.showFlag = false; this.showFlag = false;
this.queryParams.itemCodeGet = ""; this.queryParams.itemCodeGet = "";
} },
} },
}; };
</script> </script>

@ -659,7 +659,12 @@
form.orderDesc form.orderDesc
}}</el-descriptions-item> }}</el-descriptions-item>
</el-descriptions> </el-descriptions>
<el-descriptions :column="1" border :contentStyle="CS" :label-style="LSP2"> <el-descriptions
:column="1"
border
:contentStyle="CS"
:label-style="LSP2"
>
<el-descriptions-item <el-descriptions-item
label="故障图片" label="故障图片"
:contentStyle="CS" :contentStyle="CS"

@ -287,7 +287,12 @@
/> />
<!-- 添加委外工单对话框 --> <!-- 添加委外工单对话框 -->
<el-dialog :title="title" :visible.sync="openAdd" width="500px" append-to-body> <el-dialog
:title="title"
:visible.sync="openAdd"
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
@ -364,22 +369,22 @@
style="width: 270px" style="width: 270px"
/> />
</el-form-item> </el-form-item>
<el-form-item label="是否完成维修" prop="workStatus"> <el-form-item label="是否完成维修" prop="workStatus">
<el-select <el-select
v-model="form.workStatus" v-model="form.workStatus"
placeholder="请选择是否完成维修" placeholder="请选择是否完成维修"
@change="$forceUpdate()" @change="$forceUpdate()"
clearable clearable
style="width: 270px" style="width: 270px"
> >
<el-option <el-option
v-for="item in workStatusOption" v-for="item in workStatusOption"
:key="item.workStatus" :key="item.workStatus"
:label="item.label" :label="item.label"
:value="item.workStatus" :value="item.workStatus"
></el-option> ></el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
</el-form> </el-form>
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm"> </el-button> <el-button type="primary" @click="submitForm"> </el-button>
@ -387,107 +392,103 @@
</div> </div>
</el-dialog> </el-dialog>
<!-- 修改委外工单对话框 --> <!-- 修改委外工单对话框 -->
<el-dialog :title="title" :visible.sync="openUpdate" width="500px" append-to-body> <el-dialog
<el-form ref="form" :model="form" :rules="rules" label-width="130px"> :title="title"
<el-form-item label="设备编码" prop="equipmentCode" v-if> :visible.sync="openUpdate"
<el-input width="500px"
v-model="form.equipmentCode" append-to-body
style="width: 270px" >
disabled <el-form ref="form" :model="form" :rules="rules" label-width="130px">
> <el-form-item label="设备编码" prop="equipmentCode">
<el-button <el-input v-model="form.equipmentCode" style="width: 270px" disabled>
slot="append" <el-button
@click="handleSelectEquipment" slot="append"
icon="el-icon-search" @click="handleSelectEquipment"
></el-button> icon="el-icon-search"
</el-input> ></el-button>
<ItemSelect ref="itemSelect" @onSelected="onItemSelectedEquipment"> </el-input>
</ItemSelect> <ItemSelect ref="itemSelect" @onSelected="onItemSelectedEquipment">
</el-form-item> </ItemSelect>
<el-form-item label="委外类型" prop="workType"> </el-form-item>
<el-select <el-form-item label="委外类型" prop="workType">
v-model="form.workType" <el-select
@change="$forceUpdate()" v-model="form.workType"
clearable @change="$forceUpdate()"
style="width: 270px" clearable
disabled style="width: 270px"
> disabled
<el-option >
v-for="item in options" <el-option
:key="item.workType" v-for="item in options"
:label="item.label" :key="item.workType"
:value="item.workType" :label="item.label"
></el-option> :value="item.workType"
</el-select> ></el-option>
</el-form-item> </el-select>
<el-form-item label="委外维修人员" prop="workPerson"> </el-form-item>
<el-input <el-form-item label="委外维修人员" prop="workPerson">
v-model="form.workPerson" <el-input v-model="form.workPerson" disabled style="width: 270px" />
disabled </el-form-item>
style="width: 270px" <el-form-item label="委外单位" prop="workOutsourcingUnit">
/> <el-input
</el-form-item> v-model="form.workOutsourcingUnit"
<el-form-item label="委外单位" prop="workOutsourcingUnit"> disabled
<el-input style="width: 270px"
v-model="form.workOutsourcingUnit" />
disabled </el-form-item>
style="width: 270px" <el-form-item label="委外单位联系方式" prop="workConnection">
/> <el-input
</el-form-item> v-model="form.workConnection"
<el-form-item label="委外单位联系方式" prop="workConnection"> disabled
<el-input style="width: 270px"
v-model="form.workConnection" />
disabled </el-form-item>
style="width: 270px" <el-form-item label="委外原因" prop="workReason">
/> <el-input
</el-form-item> v-model="form.workReason"
<el-form-item label="委外原因" prop="workReason"> disabled
<el-input style="width: 270px"
v-model="form.workReason" type="textarea"
disabled :autosize="{ minRows: 2, maxRows: 4 }"
style="width: 270px" />
type="textarea" </el-form-item>
:autosize="{ minRows: 2, maxRows: 4 }" <el-form-item label="委外费用" prop="workCost">
/> <el-input
</el-form-item> v-model="form.workCost"
<el-form-item label="委外费用" prop="workCost"> placeholder="请输入委外费用"
<el-input style="width: 270px"
v-model="form.workCost" />
placeholder="请输入委外费用" </el-form-item>
style="width: 270px" <el-form-item label="委外用时" prop="workCostTime">
/> <el-input
</el-form-item> v-model="form.workCostTime"
<el-form-item label="委外用时" prop="workCostTime"> placeholder="请输入委外用时"
<el-input style="width: 270px"
v-model="form.workCostTime" />
placeholder="请输入委外用时" </el-form-item>
style="width: 270px" <el-form-item label="是否完成维修" prop="workStatus">
/> <el-select
</el-form-item> v-model="form.workStatus"
<el-form-item label="是否完成维修" prop="workStatus"> placeholder="请选择是否完成维修"
<el-select @change="$forceUpdate()"
v-model="form.workStatus" clearable
placeholder="请选择是否完成维修" style="width: 270px"
@change="$forceUpdate()" >
clearable <el-option
style="width: 270px" v-for="item in workStatusOption"
> :key="item.workStatus"
<el-option :label="item.label"
v-for="item in workStatusOption" :value="item.workStatus"
:key="item.workStatus" ></el-option>
:label="item.label" </el-select>
:value="item.workStatus" </el-form-item>
></el-option> </el-form>
</el-select> <div slot="footer" class="dialog-footer">
</el-form-item> <el-button type="primary" @click="submitForm"> </el-button>
</el-form> <el-button @click="cancelUpdate"> </el-button>
<div slot="footer" class="dialog-footer"> </div>
<el-button type="primary" @click="submitForm"> </el-button> </el-dialog>
<el-button @click="cancelUpdate"> </el-button>
</div>
</el-dialog>
</div> </div>
</template> </template>
@ -555,17 +556,17 @@ export default {
label: "维修委外", label: "维修委外",
}, },
], ],
// //
workStatusOption: [ workStatusOption: [
{ {
workStatus: "1", workStatus: "1",
label: "完成", label: "完成",
}, },
{ {
workStatus: "0", workStatus: "0",
label: "未完成", label: "未完成",
}, },
], ],
// //
form: {}, form: {},
// //
@ -624,7 +625,7 @@ export default {
updateBy: null, updateBy: null,
updateTime: null, updateTime: null,
factoryCode: null, factoryCode: null,
workStatus:null, workStatus: null,
}; };
this.resetForm("form"); this.resetForm("form");
}, },

@ -1,8 +1,9 @@
<template> <template>
<el-dialog title="设备选择" <el-dialog
title="设备选择"
v-if="showFlag" v-if="showFlag"
:visible.sync="showFlag" :visible.sync="showFlag"
:modal= false :modal="false"
width="1100px" width="1100px"
center center
:before-close="cancelEquipmentForm" :before-close="cancelEquipmentForm"
@ -10,26 +11,33 @@
<el-row :gutter="20"> <el-row :gutter="20">
<!--分类数据--> <!--分类数据-->
<el-col :span="5" :xs="24"> <el-col :span="5" :xs="24">
<el-card > <el-card>
<span>请选择设备类型</span> <span>请选择设备类型</span>
<div class="head-container" style="text-align: center"> <div class="head-container" style="text-align: center">
<el-tree <el-tree
:data="treeData1" :data="treeData1"
:props = "{id:'equipmentTypeCode',label:'equipmentTypeName'}" :props="{ id: 'equipmentTypeCode', label: 'equipmentTypeName' }"
node-key="id" node-key="id"
:expand-on-click-node="false" :expand-on-click-node="false"
:filter-node-method="filterNode" :filter-node-method="filterNode"
ref="tree" ref="tree"
default-expand-all default-expand-all
@node-click="handleNodeClick" @node-click="handleNodeClick"
/> />
</div> </div>
</el-card> </el-card>
</el-col> </el-col>
<!--设备数据--> <!--设备数据-->
<el-col :span="19" :xs="24"> <el-col :span="19" :xs="24">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px"> <el-form
:model="queryParams"
ref="queryForm"
size="small"
:inline="true"
v-show="showSearch"
label-width="68px"
>
<el-form-item label="设备编码" prop="itemCode"> <el-form-item label="设备编码" prop="itemCode">
<el-input <el-input
v-model="queryParams.itemCode" v-model="queryParams.itemCode"
@ -49,23 +57,61 @@
/> />
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery"></el-button> <el-button
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery"></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-item>
</el-form> </el-form>
<el-table v-loading="loading" :data="itemList" @selection-change="handleEquipmentSelectionChange" ref="myTable"> <el-table
v-loading="loading"
:data="itemList"
@selection-change="handleEquipmentSelectionChange"
ref="myTable"
>
<el-table-column width="50" align="center" type="selection"> <el-table-column width="50" align="center" type="selection">
<!-- <template v-slot="scope"> <!-- <template v-slot="scope">
<el-radio v-model="selectedItemId" :label="scope.row.itemId" @change="handleRowChange(scope.row)">{{""}}</el-radio> <el-radio v-model="selectedItemId" :label="scope.row.itemId" @change="handleRowChange(scope.row)">{{""}}</el-radio>
</template> --> </template> -->
</el-table-column> </el-table-column>
<!-- 序号 --> <!-- 序号 -->
<el-table-column type="index" width="90" align="center" :index="indexMethod" label="序号"></el-table-column> <el-table-column
<el-table-column label="设备编码" align="center" key="itemCode" prop="equipmentCode" v-if="columns[0].visible" > type="index"
width="90"
align="center"
:index="indexMethod"
label="序号"
></el-table-column>
<el-table-column
label="设备编码"
align="center"
key="itemCode"
prop="equipmentCode"
v-if="columns[0].visible"
>
</el-table-column> </el-table-column>
<el-table-column label="设备类型编码" align="center" key="itemTypeCode" prop="equipmentTypeCode" v-if="columns[2].visible" > <el-table-column
label="设备类型编码"
align="center"
key="itemTypeCode"
prop="equipmentTypeCode"
v-if="columns[2].visible"
>
</el-table-column> </el-table-column>
<el-table-column label="设备名称" align="left" key="itemName" prop="equipmentName" v-if="columns[1].visible" :show-overflow-tooltip="true" /> <el-table-column
label="设备名称"
align="left"
key="itemName"
prop="equipmentName"
v-if="columns[1].visible"
:show-overflow-tooltip="true"
/>
</el-table> </el-table>
<pagination <pagination
@ -78,23 +124,26 @@
</el-col> </el-col>
</el-row> </el-row>
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitEquipmentForm"> </el-button> <el-button type="primary" @click="submitEquipmentForm"> </el-button>
<el-button @click="cancelEquipmentForm"> </el-button> <el-button @click="cancelEquipmentForm"> </el-button>
</div> </div>
</el-dialog> </el-dialog>
</template> </template>
<script> <script>
import { getEquipmentList,getEquipmentTypeList} from "@/api/device/faultReport"; import {
import { Message } from 'element-ui' getEquipmentList,
getEquipmentTypeList,
} from "@/api/device/faultReport";
import { Message } from "element-ui";
export default { export default {
name: "MdItemSingle", name: "MdItemSingle",
// components: { Treeselect }, // components: { Treeselect },
data() { data() {
return { return {
treeData1:[], treeData1: [],
showFlag:false, showFlag: false,
// //
selectedItemId: undefined, selectedItemId: undefined,
selectedRows: undefined, selectedRows: undefined,
@ -105,7 +154,7 @@ export default {
// //
showSearch: true, showSearch: true,
// //
total:0, total: 0,
// //
itemList: null, itemList: null,
// //
@ -119,17 +168,17 @@ export default {
itemName: undefined, itemName: undefined,
equipmentTypeCode: undefined, equipmentTypeCode: undefined,
itemTypeId: 0, itemTypeId: 0,
itemCodeGet: '', itemCodeGet: "",
itemCode : undefined, itemCode: undefined,
equipmentCode : null, equipmentCode: null,
equipmentName : null, equipmentName: null,
}, },
// //
columns: [ columns: [
{ key: 0, label: `设备编码`, visible: true }, { key: 0, label: `设备编码`, visible: true },
{ key: 1, label: `设备名称`, visible: true }, { key: 1, label: `设备名称`, visible: true },
{ key: 2, label: `设备类型`, visible: true }, { key: 2, label: `设备类型`, visible: true },
] ],
}; };
}, },
created() { created() {
@ -148,31 +197,30 @@ export default {
this.resetForm("form"); this.resetForm("form");
}, },
handleEquipmentSelectionChange (val) { handleEquipmentSelectionChange(val) {
this.itemList = val this.itemList = val;
}, },
// //
indexMethod(index){ indexMethod(index) {
return index+1 ; return index + 1;
}, },
/** 查询设备编码列表*/ /** 查询设备编码列表*/
getList() { getList() {
this.loading = true; this.loading = true;
this.queryParams.equipmentCode = this.queryParams.itemCode; this.queryParams.equipmentCode = this.queryParams.itemCode;
this.queryParams.equipmentName = this.queryParams.itemName; this.queryParams.equipmentName = this.queryParams.itemName;
getEquipmentList(this.queryParams).then(response => { getEquipmentList(this.queryParams).then((response) => {
this.itemList = response.rows; this.itemList = response.rows;
this.total = response.total; this.total = response.total;
this.loading = false; this.loading = false;
} });
);
}, },
/** 查询分类下拉树结构 */ /** 查询分类下拉树结构 */
getEquipmentType() { getEquipmentType() {
getEquipmentTypeList().then(response => { getEquipmentTypeList().then((response) => {
console.log(response.rows); console.log(response.rows);
this.treeData1 = response.rows; this.treeData1 = response.rows;
console.log(this.treeData1); console.log(this.treeData1);
@ -188,7 +236,7 @@ export default {
// //
handleNodeClick(data) { handleNodeClick(data) {
console.log('id',data.id); console.log("id", data.id);
this.queryParams.equipmentTypeCode = data.equipmentTypeCode; this.queryParams.equipmentTypeCode = data.equipmentTypeCode;
console.log(this.equipmentTypeCode); console.log(this.equipmentTypeCode);
this.handleQuery(); this.handleQuery();
@ -207,43 +255,42 @@ export default {
this.handleQuery(); this.handleQuery();
}, },
// //
handleEquipmentSelectionChange(selection) { handleEquipmentSelectionChange(selection) {
this.ids = selection.map(item => item.equipmentCode); this.ids = selection.map((item) => item.equipmentCode);
this.single = selection.length!==1; this.single = selection.length !== 1;
this.multiple = !selection.length; this.multiple = !selection.length;
console.log("多选框",this.ids); console.log("多选框", this.ids);
}, },
submitEquipmentForm() { submitEquipmentForm() {
const data = this.ids; const data = this.ids;
if(data.length >1){ if (data.length > 1) {
Message.warning("只能选择一个报修机器,请勿选择多个!"); Message.warning("只能选择一个报修机器,请勿选择多个!");
}else{ } else {
const equipmentCode = data.toString(); const equipmentCode = data.toString();
if(this.queryParams.itemCodeGet == ""){ if (this.queryParams.itemCodeGet == "") {
this.queryParams.itemCodeGet = equipmentCode; this.queryParams.itemCodeGet = equipmentCode;
}else{ } else {
this.queryParams.itemCodeGet = this.queryParams.itemCodeGet + ','+ equipmentCode; this.queryParams.itemCodeGet =
this.queryParams.itemCodeGet + "," + equipmentCode;
} }
this.selectedRows = this.queryParams.itemCodeGet; this.selectedRows = this.queryParams.itemCodeGet;
this.$emit('onSelected', this.selectedRows); this.$emit("onSelected", this.selectedRows);
this.queryParams.equipmentTypeCode = null; this.queryParams.equipmentTypeCode = null;
this.getList();
console.log('111111',this.queryParams.equipmentTypeCode);
this.showFlag = false;
this.queryParams.itemCodeGet = "";
}
},
cancelEquipmentForm(){
this.queryParams.equipmentTypeCode = null;
this.getList(); this.getList();
console.log('111111',this.queryParams.equipmentTypeCode); console.log("111111", this.queryParams.equipmentTypeCode);
this.showFlag = false; this.showFlag = false;
} this.queryParams.itemCodeGet = "";
}
},
} cancelEquipmentForm() {
this.queryParams.equipmentTypeCode = null;
this.getList();
console.log("111111", this.queryParams.equipmentTypeCode);
this.showFlag = false;
},
},
}; };
</script> </script>

@ -1444,27 +1444,27 @@ export default {
this.detailList = null; this.detailList = null;
this.detailList = response.data.detailList; this.detailList = response.data.detailList;
if (this.detailList != null) { if (this.detailList != null) {
// //
var standards = []; var standards = [];
this.detailList.forEach((item1) => { this.detailList.forEach((item1) => {
// //
item1.standardList.forEach((item) => { item1.standardList.forEach((item) => {
var standard = {}; var standard = {};
standard.id = item.id; standard.id = item.id;
standard.itemName = item1.itemName; standard.itemName = item1.itemName;
standard.itemMethod = item1.itemMethod; standard.itemMethod = item1.itemMethod;
standard.standardName = item.standardName; standard.standardName = item.standardName;
standard.detailUpLimit = item.detailUpLimit; standard.detailUpLimit = item.detailUpLimit;
standard.detailDownLimit = item.detailDownLimit; standard.detailDownLimit = item.detailDownLimit;
standard.detailUnit = item.detailUnit; standard.detailUnit = item.detailUnit;
standard.detailReach = item.detailReach; standard.detailReach = item.detailReach;
standard.actualValue = item.actualValue; standard.actualValue = item.actualValue;
standard.standardType = item.standardType; standard.standardType = item.standardType;
standards.push(standard); standards.push(standard);
});
}); });
}); this.detailList = standards;
this.detailList = standards; console.log("111111111111", this.detailList);
console.log("111111111111",this.detailList);
} }
this.openWrite = true; this.openWrite = true;
this.title = "填写维修记录"; this.title = "填写维修记录";

@ -1,8 +1,9 @@
<template> <template>
<el-dialog title="设备选择" <el-dialog
title="设备选择"
v-if="showFlag" v-if="showFlag"
:visible.sync="showFlag" :visible.sync="showFlag"
:modal= false :modal="false"
width="1100px" width="1100px"
center center
:before-close="cancelEquipmentForm" :before-close="cancelEquipmentForm"
@ -10,26 +11,33 @@
<el-row :gutter="20"> <el-row :gutter="20">
<!--分类数据--> <!--分类数据-->
<el-col :span="5" :xs="24"> <el-col :span="5" :xs="24">
<el-card > <el-card>
<span>请选择设备类型</span> <span>请选择设备类型</span>
<div class="head-container" style="text-align: center"> <div class="head-container" style="text-align: center">
<el-tree <el-tree
:data="treeData1" :data="treeData1"
:props = "{id:'equipmentTypeCode',label:'equipmentTypeName'}" :props="{ id: 'equipmentTypeCode', label: 'equipmentTypeName' }"
node-key="id" node-key="id"
:expand-on-click-node="false" :expand-on-click-node="false"
:filter-node-method="filterNode" :filter-node-method="filterNode"
ref="tree" ref="tree"
default-expand-all default-expand-all
@node-click="handleNodeClick" @node-click="handleNodeClick"
/> />
</div> </div>
</el-card> </el-card>
</el-col> </el-col>
<!--设备数据--> <!--设备数据-->
<el-col :span="19" :xs="24"> <el-col :span="19" :xs="24">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px"> <el-form
:model="queryParams"
ref="queryForm"
size="small"
:inline="true"
v-show="showSearch"
label-width="68px"
>
<el-form-item label="设备编码" prop="itemCode"> <el-form-item label="设备编码" prop="itemCode">
<el-input <el-input
v-model="queryParams.itemCode" v-model="queryParams.itemCode"
@ -49,23 +57,61 @@
/> />
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery"></el-button> <el-button
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery"></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-item>
</el-form> </el-form>
<el-table v-loading="loading" :data="itemList" @selection-change="handleEquipmentSelectionChange" ref="myTable"> <el-table
v-loading="loading"
:data="itemList"
@selection-change="handleEquipmentSelectionChange"
ref="myTable"
>
<el-table-column width="50" align="center" type="selection"> <el-table-column width="50" align="center" type="selection">
<!-- <template v-slot="scope"> <!-- <template v-slot="scope">
<el-radio v-model="selectedItemId" :label="scope.row.itemId" @change="handleRowChange(scope.row)">{{""}}</el-radio> <el-radio v-model="selectedItemId" :label="scope.row.itemId" @change="handleRowChange(scope.row)">{{""}}</el-radio>
</template> --> </template> -->
</el-table-column> </el-table-column>
<!-- 序号 --> <!-- 序号 -->
<el-table-column type="index" width="90" align="center" :index="indexMethod" label="序号"></el-table-column> <el-table-column
<el-table-column label="设备编码" align="center" key="itemCode" prop="equipmentCode" v-if="columns[0].visible" > type="index"
width="90"
align="center"
:index="indexMethod"
label="序号"
></el-table-column>
<el-table-column
label="设备编码"
align="center"
key="itemCode"
prop="equipmentCode"
v-if="columns[0].visible"
>
</el-table-column> </el-table-column>
<el-table-column label="设备类型编码" align="center" key="itemTypeCode" prop="equipmentTypeCode" v-if="columns[2].visible" > <el-table-column
label="设备类型编码"
align="center"
key="itemTypeCode"
prop="equipmentTypeCode"
v-if="columns[2].visible"
>
</el-table-column> </el-table-column>
<el-table-column label="设备名称" align="left" key="itemName" prop="equipmentName" v-if="columns[1].visible" :show-overflow-tooltip="true" /> <el-table-column
label="设备名称"
align="left"
key="itemName"
prop="equipmentName"
v-if="columns[1].visible"
:show-overflow-tooltip="true"
/>
</el-table> </el-table>
<pagination <pagination
@ -78,24 +124,27 @@
</el-col> </el-col>
</el-row> </el-row>
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitEquipmentForm"> </el-button> <el-button type="primary" @click="submitEquipmentForm"> </el-button>
<el-button @click="cancelEquipmentForm"> </el-button> <el-button @click="cancelEquipmentForm"> </el-button>
</div> </div>
</el-dialog> </el-dialog>
</template> </template>
<script> <script>
import { getEquipmentList,getEquipmentTypeList} from "@/api/device/faultReport"; import {
getEquipmentList,
getEquipmentTypeList,
} from "@/api/device/faultReport";
import { treeselect } from "@/api/wms/equipment"; import { treeselect } from "@/api/wms/equipment";
import { Message } from 'element-ui' import { Message } from "element-ui";
export default { export default {
name: "MdItemSingle", name: "MdItemSingle",
// components: { Treeselect }, // components: { Treeselect },
data() { data() {
return { return {
treeData1:[], treeData1: [],
showFlag:false, showFlag: false,
// //
selectedItemId: undefined, selectedItemId: undefined,
selectedRows: undefined, selectedRows: undefined,
@ -106,7 +155,7 @@ export default {
// //
showSearch: true, showSearch: true,
// //
total:0, total: 0,
// //
itemList: null, itemList: null,
// //
@ -120,8 +169,8 @@ export default {
itemName: undefined, itemName: undefined,
equipmentTypeCode: undefined, equipmentTypeCode: undefined,
itemTypeId: 0, itemTypeId: 0,
itemCodeGet: '', itemCodeGet: "",
itemCode : undefined, itemCode: undefined,
equipmentCode: null, equipmentCode: null,
equipmentName: null, equipmentName: null,
}, },
@ -130,7 +179,7 @@ export default {
{ key: 0, label: `设备编码`, visible: true }, { key: 0, label: `设备编码`, visible: true },
{ key: 1, label: `设备名称`, visible: true }, { key: 1, label: `设备名称`, visible: true },
{ key: 2, label: `设备类型`, visible: true }, { key: 2, label: `设备类型`, visible: true },
] ],
}; };
}, },
created() { created() {
@ -149,31 +198,30 @@ export default {
this.resetForm("form"); this.resetForm("form");
}, },
handleEquipmentSelectionChange (val) { handleEquipmentSelectionChange(val) {
this.itemList = val this.itemList = val;
}, },
// //
indexMethod(index){ indexMethod(index) {
return index+1 ; return index + 1;
}, },
/** 查询设备编码列表*/ /** 查询设备编码列表*/
getList() { getList() {
this.loading = true; this.loading = true;
this.queryParams.equipmentCode = this.queryParams.itemCode; this.queryParams.equipmentCode = this.queryParams.itemCode;
this.queryParams.equipmentName = this.queryParams.itemName; this.queryParams.equipmentName = this.queryParams.itemName;
getEquipmentList(this.queryParams).then(response => { getEquipmentList(this.queryParams).then((response) => {
this.itemList = response.rows; this.itemList = response.rows;
this.total = response.total; this.total = response.total;
this.loading = false; this.loading = false;
} });
);
}, },
/** 查询分类下拉树结构 */ /** 查询分类下拉树结构 */
getEquipmentType() { getEquipmentType() {
getEquipmentTypeList().then(response => { getEquipmentTypeList().then((response) => {
console.log(response.rows); console.log(response.rows);
this.treeData1 = response.rows; this.treeData1 = response.rows;
console.log(this.treeData1); console.log(this.treeData1);
@ -189,7 +237,7 @@ export default {
// //
handleNodeClick(data) { handleNodeClick(data) {
console.log('id',data.id); console.log("id", data.id);
this.queryParams.equipmentTypeCode = data.equipmentTypeCode; this.queryParams.equipmentTypeCode = data.equipmentTypeCode;
console.log(this.equipmentTypeCode); console.log(this.equipmentTypeCode);
this.handleQuery(); this.handleQuery();
@ -208,43 +256,42 @@ export default {
this.handleQuery(); this.handleQuery();
}, },
// //
handleEquipmentSelectionChange(selection) { handleEquipmentSelectionChange(selection) {
this.ids = selection.map(item => item.equipmentCode); this.ids = selection.map((item) => item.equipmentCode);
this.single = selection.length!==1; this.single = selection.length !== 1;
this.multiple = !selection.length; this.multiple = !selection.length;
console.log("多选框",this.ids); console.log("多选框", this.ids);
}, },
submitEquipmentForm() { submitEquipmentForm() {
const data = this.ids; const data = this.ids;
if(data.length >1){ if (data.length > 1) {
Message.warning("只能选择一个报修机器,请勿选择多个!"); Message.warning("只能选择一个报修机器,请勿选择多个!");
}else{ } else {
const equipmentCode = data.toString(); const equipmentCode = data.toString();
if(this.queryParams.itemCodeGet == ""){ if (this.queryParams.itemCodeGet == "") {
this.queryParams.itemCodeGet = equipmentCode; this.queryParams.itemCodeGet = equipmentCode;
}else{ } else {
this.queryParams.itemCodeGet = this.queryParams.itemCodeGet + ','+ equipmentCode; this.queryParams.itemCodeGet =
this.queryParams.itemCodeGet + "," + equipmentCode;
} }
this.selectedRows = this.queryParams.itemCodeGet; this.selectedRows = this.queryParams.itemCodeGet;
this.$emit('onSelected', this.selectedRows); this.$emit("onSelected", this.selectedRows);
this.queryParams.equipmentTypeCode = null; this.queryParams.equipmentTypeCode = null;
this.getList();
console.log('111111',this.queryParams.equipmentTypeCode);
this.showFlag = false;
this.queryParams.itemCodeGet = "";
}
},
cancelEquipmentForm(){
this.queryParams.equipmentTypeCode = null;
this.getList(); this.getList();
console.log('111111',this.queryParams.equipmentTypeCode); console.log("111111", this.queryParams.equipmentTypeCode);
this.showFlag = false; this.showFlag = false;
} this.queryParams.itemCodeGet = "";
}
},
} cancelEquipmentForm() {
this.queryParams.equipmentTypeCode = null;
this.getList();
console.log("111111", this.queryParams.equipmentTypeCode);
this.showFlag = false;
},
},
}; };
</script> </script>

@ -1,8 +1,9 @@
<template> <template>
<el-dialog title="人员选择" <el-dialog
title="人员选择"
v-if="showFlag" v-if="showFlag"
:visible.sync="showFlag" :visible.sync="showFlag"
:modal= false :modal="false"
width="800px" width="800px"
center center
:before-close="cancel" :before-close="cancel"
@ -10,7 +11,14 @@
<el-row :gutter="20"> <el-row :gutter="20">
<!--人员数据--> <!--人员数据-->
<el-col :span="24"> <el-col :span="24">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px"> <el-form
:model="queryParams"
ref="queryForm"
size="small"
:inline="true"
v-show="showSearch"
label-width="68px"
>
<el-form-item label="人员编码" prop="itemCode"> <el-form-item label="人员编码" prop="itemCode">
<el-input <el-input
v-model="queryParams.itemCode" v-model="queryParams.itemCode"
@ -30,17 +38,53 @@
/> />
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery"></el-button> <el-button
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery"></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-item>
</el-form> </el-form>
<el-table v-loading="loading" :data="itemList" @selection-change="handleSelectionChange" ref="multipleTable"> <el-table
<el-table-column width="50" align="center" type="selection"></el-table-column> v-loading="loading"
:data="itemList"
@selection-change="handleSelectionChange"
ref="multipleTable"
>
<el-table-column
width="50"
align="center"
type="selection"
></el-table-column>
<!-- 序号 --> <!-- 序号 -->
<el-table-column type="index" width="90" align="center" :index="indexMethod" label="序号"></el-table-column> <el-table-column
<el-table-column label="人员编码" align="center" key="itemCode" prop="userName" v-if="columns[0].visible" > type="index"
width="90"
align="center"
:index="indexMethod"
label="序号"
></el-table-column>
<el-table-column
label="人员编码"
align="center"
key="itemCode"
prop="userName"
v-if="columns[0].visible"
>
</el-table-column> </el-table-column>
<el-table-column label="人员名称" align="left" key="itemName" prop="nickName" v-if="columns[1].visible" :show-overflow-tooltip="true" /> <el-table-column
label="人员名称"
align="left"
key="itemName"
prop="nickName"
v-if="columns[1].visible"
:show-overflow-tooltip="true"
/>
</el-table> </el-table>
<pagination <pagination
@ -53,22 +97,24 @@
</el-col> </el-col>
</el-row> </el-row>
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm" :disabled="multiple"> </el-button> <el-button type="primary" @click="submitForm" :disabled="multiple"
<el-button @click="cancel"> </el-button> > </el-button
>
<el-button @click="cancel"> </el-button>
</div> </div>
</el-dialog> </el-dialog>
</template> </template>
<script> <script>
import { getRepairPersonList} from "@/api/device/faultReport"; import { getRepairPersonList } from "@/api/device/faultReport";
import { Message } from 'element-ui' import { Message } from "element-ui";
export default { export default {
name: "MdItemSingle", name: "MdItemSingle",
data() { data() {
return { return {
treeData1:[], treeData1: [],
showFlag:false, showFlag: false,
// //
selectedItemId: undefined, selectedItemId: undefined,
selectedRows: undefined, selectedRows: undefined,
@ -79,7 +125,7 @@ export default {
// //
showSearch: true, showSearch: true,
// //
total:0, total: 0,
// //
itemList: null, itemList: null,
// //
@ -87,8 +133,8 @@ export default {
pageNum: 1, pageNum: 1,
pageSize: 10, pageSize: 10,
itemName: undefined, itemName: undefined,
itemCodeGet: '', itemCodeGet: "",
itemCode : undefined, itemCode: undefined,
nickName: null, nickName: null,
userName: null, userName: null,
}, },
@ -96,7 +142,7 @@ export default {
columns: [ columns: [
{ key: 0, label: `人员编码`, visible: true }, { key: 0, label: `人员编码`, visible: true },
{ key: 1, label: `人员名称`, visible: true }, { key: 1, label: `人员名称`, visible: true },
] ],
}; };
}, },
created() { created() {
@ -104,24 +150,24 @@ export default {
}, },
methods: { methods: {
// //
reset() { reset() {
this.form = { this.form = {
itemId: null, itemId: null,
itemCode: this.processId, itemCode: this.processId,
itemType: null, itemType: null,
}; };
this.resetForm("form"); this.resetForm("form");
}, },
handleSelectionChange (val) { handleSelectionChange(val) {
this.itemList = val; this.itemList = val;
}, },
// //
indexMethod(index){ indexMethod(index) {
return index+1 ; return index + 1;
}, },
// //
/** 查询人员列表*/ /** 查询人员列表*/
@ -129,12 +175,11 @@ export default {
this.loading = true; this.loading = true;
this.queryParams.userName = this.queryParams.itemCode; this.queryParams.userName = this.queryParams.itemCode;
this.queryParams.nickName = this.queryParams.itemName; this.queryParams.nickName = this.queryParams.itemName;
getRepairPersonList(this.queryParams).then(response => { getRepairPersonList(this.queryParams).then((response) => {
this.itemList = response.rows; this.itemList = response.rows;
this.total = response.total; this.total = response.total;
this.loading = false; this.loading = false;
} });
);
}, },
/** 搜索按钮操作 */ /** 搜索按钮操作 */
@ -151,23 +196,23 @@ export default {
}, },
// //
handleSelectionChange(selection) { handleSelectionChange(selection) {
this.ids = selection.map(item => item.userId); this.ids = selection.map((item) => item.userId);
this.userCodes = selection.map(item => item.userName); this.userCodes = selection.map((item) => item.userName);
this.single = selection.length!==1; this.single = selection.length !== 1;
this.multiple = !selection.length; this.multiple = !selection.length;
}, },
submitForm() { submitForm() {
if(this.$refs.multipleTable.selection.length > 1){ if (this.$refs.multipleTable.selection.length > 1) {
Message.warning("只能选择一个维修人,请勿选择多个!"); Message.warning("只能选择一个维修人,请勿选择多个!");
}else{ } else {
console.log(this.$refs.multipleTable.selection); console.log(this.$refs.multipleTable.selection);
this.$emit('onSelected', this.$refs.multipleTable.selection); this.$emit("onSelected", this.$refs.multipleTable.selection);
this.showFlag = false; this.showFlag = false;
this.getList(); this.getList();
} }
} },
} },
}; };
</script> </script>

@ -1,280 +1,358 @@
<template> <template>
<div class="app-container"> <div class="app-container">
<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="handleSelectSparePartsLedger" @click="handleSelectSparePartsLedger"
v-hasPermi="['device:sparePartsApplicationRecord:add']" v-hasPermi="['device:sparePartsApplicationRecord:add']"
>新增</el-button> >新增</el-button
<ItemSelectSparePartsLedger ref="itemSelectSparePartsLedger" @onSelected="selectSparePartsLedger"></ItemSelectSparePartsLedger> >
</el-col> <ItemSelectSparePartsLedger
<el-col :span="1.5"> ref="itemSelectSparePartsLedger"
<el-button @onSelected="selectSparePartsLedger"
type="danger" ></ItemSelectSparePartsLedger>
plain </el-col>
icon="el-icon-delete" <el-col :span="1.5">
size="mini" <el-button
:disabled="multiple" type="danger"
@click="handleDelete" plain
v-hasPermi="['device:sparePartsApplicationRecord:remove']" icon="el-icon-delete"
>删除</el-button> size="mini"
</el-col> :disabled="multiple"
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar> @click="handleDelete"
</el-row> v-hasPermi="['device:sparePartsApplicationRecord:remove']"
>删除</el-button
>
</el-col>
<right-toolbar
:showSearch.sync="showSearch"
@queryTable="getList"
></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="sparePartsApplicationRecordList" @selection-change="handleSelectionChange"> <el-table
<el-table-column type="selection" width="55" align="center" /> v-loading="loading"
<!-- 序号 --> :data="sparePartsApplicationRecordList"
<el-table-column type="index" width="90" align="center" :index="indexMethod" label="序号" fixed/> @selection-change="handleSelectionChange"
<el-table-column label="维修单号" align="center" prop="workCode" width="200" fixed/> >
<el-table-column label="使用设备" align="center" prop="spareUseEquipment" /> <el-table-column type="selection" width="55" align="center" />
<el-table-column label="备品备件编码" align="center" prop="spareCode" width="120"/> <!-- 序号 -->
<el-table-column label="备品备件名称" align="center" prop="spareName" width="120"/> <el-table-column
<el-table-column label="规格型号" align="center" prop="spareModel" width="150"/> type="index"
<el-table-column label="数量" align="center" prop="spareQuantity" /> width="90"
<el-table-column label="领用时间" align="center" prop="applyTime" width="180"> align="center"
<template slot-scope="scope"> :index="indexMethod"
<span>{{ parseTime(scope.row.applyTime) }}</span> label="序号"
</template> fixed
</el-table-column> />
<el-table-column label="申领人" align="center" prop="applyPeople" width="80"/> <el-table-column
<el-table-column label="批准人" align="center" prop="applyApprovePeople" width="80"/> label="维修单号"
</el-table> align="center"
prop="workCode"
width="200"
fixed
/>
<el-table-column
label="使用设备"
align="center"
prop="spareUseEquipment"
/>
<el-table-column
label="备品备件编码"
align="center"
prop="spareCode"
width="120"
/>
<el-table-column
label="备品备件名称"
align="center"
prop="spareName"
width="120"
/>
<el-table-column
label="规格型号"
align="center"
prop="spareModel"
width="150"
/>
<el-table-column label="数量" align="center" prop="spareQuantity" />
<el-table-column
label="领用时间"
align="center"
prop="applyTime"
width="180"
>
<template slot-scope="scope">
<span>{{ parseTime(scope.row.applyTime) }}</span>
</template>
</el-table-column>
<el-table-column
label="申领人"
align="center"
prop="applyPeople"
width="80"
/>
<el-table-column
label="批准人"
align="center"
prop="applyApprovePeople"
width="80"
/>
</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="1000px" append-to-body> <el-dialog
<el-form ref="form" :model="form" :rules="rules" label-width="80px"> :title="title"
</el-form> :visible.sync="open"
<div slot="footer" class="dialog-footer"> width="1000px"
<el-button type="primary" @click="submitForm"> </el-button> append-to-body
<el-button @click="cancel"> </el-button> >
</div> <el-form ref="form" :model="form" :rules="rules" label-width="80px">
</el-dialog> </el-form>
</div> <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 { listSparePartsApplicationRecord, getSparePartsApplicationRecord, delSparePartsApplicationRecord, addSparePartsApplicationRecord, updateSparePartsApplicationRecord , listRepairSparePartsRecord } from "@/api/device/sparePartsApplicationRecord"; import {
listSparePartsApplicationRecord,
getSparePartsApplicationRecord,
delSparePartsApplicationRecord,
addSparePartsApplicationRecord,
updateSparePartsApplicationRecord,
listRepairSparePartsRecord,
} from "@/api/device/sparePartsApplicationRecord";
import ItemSelectSparePartsLedger from "./selectSparePartsLedger.vue"; import ItemSelectSparePartsLedger from "./selectSparePartsLedger.vue";
export default { export default {
name: "SelectSpareParts", name: "SelectSpareParts",
components: { ItemSelectSparePartsLedger }, components: { ItemSelectSparePartsLedger },
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,
// //
sparePartsApplicationRecordList: [], sparePartsApplicationRecordList: [],
// //
title: "", title: "",
// //
open: false, open: false,
// //
queryParams: { queryParams: {
pageNum: 1, pageNum: 1,
pageSize: 10, pageSize: 10,
workCode: this.workCode, workCode: this.workCode,
equipmentCode: this.equipmentCode, equipmentCode: this.equipmentCode,
applyType: null, applyType: null,
applyCode: null, applyCode: null,
spareCode: null, spareCode: null,
spareName: null, spareName: null,
spareModel: null, spareModel: null,
spareQuantity: null, spareQuantity: null,
spareGroupLine: null, spareGroupLine: null,
spareUseEquipment: null, spareUseEquipment: null,
applyTime: null, applyTime: null,
applyPeople: null, applyPeople: null,
applyApprovePeople: null, applyApprovePeople: null,
attr1: null, attr1: null,
attr2: null, attr2: null,
attr3: null, attr3: null,
factoryCode: null factoryCode: null,
}, },
// //
form: {}, form: {},
// //
rules: { rules: {},
}, componentKey: 0,
componentKey:0 };
}; },
},
props: { props: {
equipmentCode: undefined, equipmentCode: undefined,
workCode: undefined, workCode: undefined,
optType: undefined, optType: undefined,
}, },
created() { created() {
this.getList(); this.getList();
}, },
methods: { methods: {
// //
handleSelectSparePartsLedger() { handleSelectSparePartsLedger() {
this.$forceUpdate(); this.$forceUpdate();
this.$refs.itemSelectSparePartsLedger.showFlag = true; this.$refs.itemSelectSparePartsLedger.showFlag = true;
}, },
// //
indexMethod(index) { indexMethod(index) {
return index + 1; return index + 1;
}, },
/** 查询申领记录列表 */ /** 查询申领记录列表 */
getList() { getList() {
this.loading = true; this.loading = true;
listRepairSparePartsRecord(this.queryParams).then(response => { listRepairSparePartsRecord(this.queryParams).then((response) => {
this.sparePartsApplicationRecordList = response.rows; this.sparePartsApplicationRecordList = response.rows;
this.total = response.total; this.total = response.total;
this.loading = false; this.loading = false;
}); });
}, },
// //
cancel() { cancel() {
this.open = false; this.open = false;
this.reset(); this.reset();
}, },
// //
reset() { reset() {
this.form = { this.form = {
workCode: this.workCode, workCode: this.workCode,
equipmentCode: this.equipmentCode, equipmentCode: this.equipmentCode,
applyType: null, applyType: null,
applyId: null, applyId: null,
applyCode: null, applyCode: null,
spareCode: null, spareCode: null,
spareName: null, spareName: null,
spareModel: null, spareModel: null,
spareQuantity: null, spareQuantity: null,
spareGroupLine: null, spareGroupLine: null,
spareUseEquipment: null, spareUseEquipment: null,
applyTime: null, applyTime: null,
applyPeople: null, applyPeople: null,
applyApprovePeople: null, applyApprovePeople: null,
attr1: null, attr1: null,
attr2: null, attr2: null,
attr3: null, attr3: null,
delFlag: null, delFlag: null,
createBy: null, createBy: null,
createTime: null, createTime: null,
updateBy: null, updateBy: null,
updateTime: null, updateTime: null,
factoryCode: null, factoryCode: null,
spareApplyLists : [] spareApplyLists: [],
}; };
this.resetForm("form"); this.resetForm("form");
}, },
/** 搜索按钮操作 */ /** 搜索按钮操作 */
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.applyId) this.ids = selection.map((item) => item.applyId);
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 applyId = row.applyId || this.ids const applyId = row.applyId || this.ids;
getSparePartsApplicationRecord(applyId).then(response => { getSparePartsApplicationRecord(applyId).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.applyId != null) { if (this.form.applyId != null) {
updateSparePartsApplicationRecord(this.form).then(response => { updateSparePartsApplicationRecord(this.form).then((response) => {
this.$modal.msgSuccess("修改成功"); this.$modal.msgSuccess("修改成功");
this.open = false; this.open = false;
this.getList(); this.getList();
}); });
} else { } else {
addSparePartsApplicationRecord(this.form).then(response => { addSparePartsApplicationRecord(this.form).then((response) => {
this.$modal.msgSuccess("新增成功"); this.$modal.msgSuccess("新增成功");
this.open = false; this.open = false;
this.getList(); this.getList();
}); });
} }
} }
}); });
}, },
// //
selectSparePartsLedger(obj){ selectSparePartsLedger(obj) {
console.log("接收参数",obj); console.log("接收参数", obj);
//使 //使
var spareApplyLists = []; var spareApplyLists = [];
obj.forEach(item => { obj.forEach((item) => {
var spareApplyList = {}; var spareApplyList = {};
spareApplyList.spareCode = item.materialCode; spareApplyList.spareCode = item.materialCode;
spareApplyList.spareName = item.materialDesc; spareApplyList.spareName = item.materialDesc;
spareApplyList.spareModel = item.spareMode; spareApplyList.spareModel = item.spareMode;
spareApplyList.spareUseEquipment = this.queryParams.equipmentCode; spareApplyList.spareUseEquipment = this.queryParams.equipmentCode;
spareApplyList.spareQuantity = item.spareQuantity; spareApplyList.spareQuantity = item.spareQuantity;
spareApplyList.workCode = this.queryParams.workCode; spareApplyList.workCode = this.queryParams.workCode;
spareApplyList.storageId = item.storageId; spareApplyList.storageId = item.storageId;
spareApplyList.amount = item.amount; spareApplyList.amount = item.amount;
spareApplyLists.push(spareApplyList); spareApplyLists.push(spareApplyList);
}); });
this.form.spareApplyLists = spareApplyLists; this.form.spareApplyLists = spareApplyLists;
addSparePartsApplicationRecord(this.form).then(response => { addSparePartsApplicationRecord(this.form).then((response) => {
this.open = false; this.open = false;
this.getList(); this.getList();
}); });
}, },
/** 删除按钮操作 */ /** 删除按钮操作 */
handleDelete(row) { handleDelete(row) {
const applyIds = row.applyId || this.ids; const applyIds = row.applyId || this.ids;
this.$modal.confirm('是否确认删除申领记录编号为"' + applyIds + '"的数据项?').then(function() { this.$modal
return delSparePartsApplicationRecord(applyIds); .confirm('是否确认删除申领记录编号为"' + applyIds + '"的数据项?')
}).then(() => { .then(function () {
this.getList(); return delSparePartsApplicationRecord(applyIds);
this.$modal.msgSuccess("删除成功"); })
}).catch(() => {}); .then(() => {
}, this.getList();
/** 导出按钮操作 */ this.$modal.msgSuccess("删除成功");
handleExport() { })
this.download('device/sparePartsApplicationRecord/export', { .catch(() => {});
...this.queryParams },
}, `sparePartsApplicationRecord_${new Date().getTime()}.xlsx`) /** 导出按钮操作 */
} handleExport() {
} this.download(
"device/sparePartsApplicationRecord/export",
{
...this.queryParams,
},
`sparePartsApplicationRecord_${new Date().getTime()}.xlsx`
);
},
},
}; };
</script> </script>

@ -1,275 +1,358 @@
<template> <template>
<el-dialog title="备品备件选择" <el-dialog
title="备品备件选择"
v-if="showFlag" v-if="showFlag"
:visible.sync="showFlag" :visible.sync="showFlag"
:modal= false :modal="false"
width="1100px" width="1100px"
center center
:before-close="cancel" :before-close="cancel"
> >
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="98px"> <el-form
<el-form-item label="备品备件号" prop="materialCode"> :model="queryParams"
<el-input ref="queryForm"
v-model="queryParams.materialCode" size="small"
placeholder="请输入备品备件号" :inline="true"
clearable v-show="showSearch"
@keyup.enter.native="handleQuery" label-width="98px"
style="width:150px" >
/> <el-form-item label="备品备件号" prop="materialCode">
</el-form-item> <el-input
<el-form-item label="备件类型" prop="spareType"> v-model="queryParams.materialCode"
<el-select v-model="queryParams.spareType" placeholder="请选择备件类型" @keyup.enter.native="handleQuery" @change="$forceUpdate()" clearable style="width:150px"> placeholder="请输入备品备件号"
<el-option v-for="item in options" :key="item.spareType" :label="item.label" :value="item.spareType"></el-option> clearable
</el-select> @keyup.enter.native="handleQuery"
</el-form-item> style="width: 150px"
<el-form-item> />
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery"></el-button> </el-form-item>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery"></el-button> <el-form-item label="备件类型" prop="spareType">
</el-form-item> <el-select
v-model="queryParams.spareType"
placeholder="请选择备件类型"
@keyup.enter.native="handleQuery"
@change="$forceUpdate()"
clearable
style="width: 150px"
>
<el-option
v-for="item in options"
:key="item.spareType"
:label="item.label"
:value="item.spareType"
></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-row :gutter="10" class="mb8">
<right-toolbar
:showSearch.sync="showSearch"
@queryTable="getList"
></right-toolbar>
</el-row>
<el-row :gutter="10" class="mb8"> <el-table
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar> v-loading="loading"
</el-row> :data="sparePartsLedgerList"
@selection-change="handleSelectionChange"
ref="multipleTable"
>
<el-table-column type="selection" width="55" align="center" />
<!-- 序号 -->
<el-table-column
type="index"
width="90"
align="center"
:index="indexMethod"
label="序号"
/>
<el-table-column
label="备品备件号"
align="center"
prop="materialCode"
width="120"
/>
<el-table-column
label="备品备件描述"
align="center"
prop="materialDesc"
width="120"
/>
<el-table-column
label="备品备件类型"
align="center"
prop="spareType"
width="120"
/>
<el-table-column label="规格型号" align="center" prop="spareMode" />
<el-table-column label="库存总数量" align="center" prop="amount" />
<el-table-column
label="库存冻结数量"
align="center"
prop="storageAmount"
/>
<el-table-column
label="库存可用数量"
align="center"
prop="availableQuantity"
>
<template slot-scope="scope">
<span>{{ scope.row.amount - scope.row.storageAmount }}</span>
</template>
</el-table-column>
<el-table-column label="领用数量" align="center" prop="spareQuantity">
<template slot-scope="scope">
<el-input
size="small"
v-model="scope.row.spareQuantity"
@change="handleEdit(scope.$index, scope.row)"
></el-input>
</template>
</el-table-column>
</el-table>
<el-table v-loading="loading" :data="sparePartsLedgerList" @selection-change="handleSelectionChange" ref="multipleTable" > <pagination
<el-table-column type="selection" width="55" align="center" /> v-show="total > 0"
<!-- 序号 --> :total="total"
<el-table-column type="index" width="90" align="center" :index="indexMethod" label="序号"/> :page.sync="queryParams.pageNum"
<el-table-column label="备品备件号" align="center" prop="materialCode" width="120"/> :limit.sync="queryParams.pageSize"
<el-table-column label="备品备件描述" align="center" prop="materialDesc" width="120"/> @pagination="getList"
<el-table-column label="备品备件类型" align="center" prop="spareType" width="120"/> />
<el-table-column label="规格型号" align="center" prop="spareMode" /> </el-form>
<el-table-column label="库存总数量" align="center" prop="amount" />
<el-table-column label="库存冻结数量" align="center" prop="storageAmount" />
<el-table-column label="库存可用数量" align="center" prop="availableQuantity" >
<template slot-scope="scope">
<span>{{ scope.row.amount-scope.row.storageAmount}}</span>
</template>
</el-table-column>
<el-table-column label="领用数量" align="center" prop="spareQuantity">
<template slot-scope="scope">
<el-input size="small" v-model="scope.row.spareQuantity" @change="handleEdit(scope.$index,scope.row)"></el-input>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
</el-form>
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm" :disabled="multiple"> </el-button> <el-button type="primary" @click="submitForm" :disabled="multiple"
<el-button @click="cancel"> </el-button> > </el-button
>
<el-button @click="cancel"> </el-button>
</div> </div>
</el-dialog> </el-dialog>
</template> </template>
<script> <script>
import { listSparePartsLedger, getSparePartsLedger, delSparePartsLedger, addSparePartsLedger, updateSparePartsLedger } from "@/api/device/sparePartsLedger"; import {
listSparePartsLedger,
getSparePartsLedger,
delSparePartsLedger,
addSparePartsLedger,
updateSparePartsLedger,
} from "@/api/device/sparePartsLedger";
import { Message } from "element-ui"; import { Message } from "element-ui";
export default { export default {
name: "SparePartsLedger", name: "SparePartsLedger",
data() { data() {
return { return {
// //
showFlag:false, showFlag: false,
// //
loading: true, loading: true,
// //
ids: [], ids: [],
// //
single: true, single: true,
// //
multiple: true, multiple: true,
// //
showSearch: true, showSearch: true,
// //
total: 0, total: 0,
// //
sparePartsLedgerList: [], sparePartsLedgerList: [],
// //
title: "", title: "",
// //
open: false, open: false,
// //
queryParams: { queryParams: {
pageNum: 1, pageNum: 1,
pageSize: 10, pageSize: 10,
storageId: null, storageId: null,
whCode: null, whCode: null,
regionCode: null, regionCode: null,
waCode: null, waCode: null,
storageType: null, storageType: null,
wlCode: null, wlCode: null,
materialCode: null, materialCode: null,
materialDesc: null, materialDesc: null,
amount: null, amount: null,
storageAmount: null, storageAmount: null,
occupyAmount: null, occupyAmount: null,
lpn: null, lpn: null,
productBatch: null, productBatch: null,
receiveDate: null, receiveDate: null,
productDate: null, productDate: null,
userDefined1: null, userDefined1: null,
userDefined2: null, userDefined2: null,
userDefined3: null, userDefined3: null,
userDefined4: null, userDefined4: null,
userDefined5: null, userDefined5: null,
userDefined6: null, userDefined6: null,
userDefined7: null, userDefined7: null,
userDefined8: null, userDefined8: null,
userDefined9: null, userDefined9: null,
userDefined10: null, userDefined10: null,
gmtCreate: null, gmtCreate: null,
lastModifiedBy: null, lastModifiedBy: null,
gmtModified: null, gmtModified: null,
activeFlag: null, activeFlag: null,
factoryCode: null, factoryCode: null,
sapFactoryCode: null, sapFactoryCode: null,
wlName: null, wlName: null,
spareUseLife: null, spareUseLife: null,
spareName: null, spareName: null,
spareMode: null, spareMode: null,
spareManufacturer: null, spareManufacturer: null,
spareSupplier: null, spareSupplier: null,
spareReplacementCycle: null, spareReplacementCycle: null,
spareMeasurementUnit: null, spareMeasurementUnit: null,
spareConversionUnit: null, spareConversionUnit: null,
spareConversionRatio: null, spareConversionRatio: null,
spareInventoryFloor: null, spareInventoryFloor: null,
spareInventoryUpper: null spareInventoryUpper: null,
}, },
options: [{ options: [
spareType: "专用", {
label: '专用' spareType: "专用",
}, { label: "专用",
spareType: "通用", },
label: '通用' {
}], spareType: "通用",
// label: "通用",
form: {}, },
// ],
rules: { //
storageId: [ form: {},
{ required: true, message: "唯一序列不能为空", trigger: "blur" } //
], rules: {
} storageId: [
}; { required: true, message: "唯一序列不能为空", trigger: "blur" },
}, ],
created() { },
this.getList(); };
}, },
methods: { created() {
this.getList();
},
methods: {
handleEdit(index, row) { handleEdit(index, row) {
console.log('row:',index, row); console.log("row:", index, row);
}, },
// //
indexMethod(index) { indexMethod(index) {
return index + 1; return index + 1;
}, },
/** 查询备品备件台账管理列表 */ /** 查询备品备件台账管理列表 */
getList() { getList() {
this.loading = true; this.loading = true;
listSparePartsLedger(this.queryParams).then(response => { listSparePartsLedger(this.queryParams).then((response) => {
this.sparePartsLedgerList = response.rows; this.sparePartsLedgerList = response.rows;
this.total = response.total; this.total = response.total;
this.loading = false; this.loading = false;
}); });
}, },
// //
cancel() { cancel() {
this.showFlag = false; this.showFlag = false;
this.reset(); this.reset();
this.getList(); this.getList();
}, },
// //
reset() { reset() {
this.form = { this.form = {
storageId: null, storageId: null,
whCode: null, whCode: null,
regionCode: null, regionCode: null,
waCode: null, waCode: null,
storageType: null, storageType: null,
wlCode: null, wlCode: null,
materialCode: null, materialCode: null,
materialDesc: null, materialDesc: null,
amount: null, amount: null,
storageAmount: null, storageAmount: null,
occupyAmount: null, occupyAmount: null,
lpn: null, lpn: null,
productBatch: null, productBatch: null,
receiveDate: null, receiveDate: null,
productDate: null, productDate: null,
userDefined1: null, userDefined1: null,
userDefined2: null, userDefined2: null,
userDefined3: null, userDefined3: null,
userDefined4: null, userDefined4: null,
userDefined5: null, userDefined5: null,
userDefined6: null, userDefined6: null,
userDefined7: null, userDefined7: null,
userDefined8: null, userDefined8: null,
userDefined9: null, userDefined9: null,
userDefined10: null, userDefined10: null,
createBy: null, createBy: null,
gmtCreate: null, gmtCreate: null,
lastModifiedBy: null, lastModifiedBy: null,
gmtModified: null, gmtModified: null,
activeFlag: null, activeFlag: null,
factoryCode: null, factoryCode: null,
sapFactoryCode: null, sapFactoryCode: null,
wlName: null, wlName: null,
delFlag: null, delFlag: null,
spareUseLife: null, spareUseLife: null,
spareName: null, spareName: null,
spareMode: null, spareMode: null,
spareManufacturer: null, spareManufacturer: null,
spareSupplier: null, spareSupplier: null,
spareReplacementCycle: null, spareReplacementCycle: null,
spareMeasurementUnit: null, spareMeasurementUnit: null,
spareConversionUnit: null, spareConversionUnit: null,
spareConversionRatio: null, spareConversionRatio: null,
spareInventoryFloor: null, spareInventoryFloor: null,
spareInventoryUpper: null spareInventoryUpper: null,
}; };
this.resetForm("form"); this.resetForm("form");
}, },
/** 搜索按钮操作 */ /** 搜索按钮操作 */
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.storageId); this.ids = selection.map((item) => item.storageId);
this.codes = selection.map(item => item.materialCode); this.codes = selection.map((item) => item.materialCode);
this.single = selection.length!==1 this.single = selection.length !== 1;
this.multiple = !selection.length this.multiple = !selection.length;
}, },
/** 提交按钮 */ /** 提交按钮 */
submitForm(){ submitForm() {
console.log('data:',this.sparePartsLedgerList); console.log("data:", this.sparePartsLedgerList);
console.log("选择的数据",this.$refs.multipleTable.selection); console.log("选择的数据", this.$refs.multipleTable.selection);
this.$refs.multipleTable.selection.forEach(item => { this.$refs.multipleTable.selection.forEach((item) => {
if(item.spareQuantity >(item.amount - item.storageAmount)){ if (item.spareQuantity > item.amount - item.storageAmount) {
Message.warning('备件编码"' + item.materialCode + '"的申领数量大于可用数量,请重新填写!'); Message.warning(
this.$refs.multipleTable.clearSelection(); '备件编码"' +
} item.materialCode +
'"的申领数量大于可用数量,请重新填写!'
);
this.$refs.multipleTable.clearSelection();
}
}); });
this.$emit('onSelected',this.$refs.multipleTable.selection); this.$emit("onSelected", this.$refs.multipleTable.selection);
this.showFlag = false; this.showFlag = false;
this.getList(); this.getList();
}, },
} },
}; };
</script> </script>

@ -203,11 +203,9 @@
fixed fixed
> >
<template slot-scope="scope"> <template slot-scope="scope">
<el-button <el-button type="text" @click="handleView(scope.row)">{{
type="text" scope.row.workCode
@click="handleView(scope.row)" }}</el-button>
>{{ scope.row.workCode }}</el-button
>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column

File diff suppressed because it is too large Load Diff

@ -1,8 +1,9 @@
<template> <template>
<el-dialog title="设备选择" <el-dialog
title="设备选择"
v-if="showFlag" v-if="showFlag"
:visible.sync="showFlag" :visible.sync="showFlag"
:modal= false :modal="false"
width="1100px" width="1100px"
center center
:before-close="cancelEquipmentForm" :before-close="cancelEquipmentForm"
@ -10,26 +11,33 @@
<el-row :gutter="20"> <el-row :gutter="20">
<!--分类数据--> <!--分类数据-->
<el-col :span="5" :xs="24"> <el-col :span="5" :xs="24">
<el-card > <el-card>
<span>请选择设备类型</span> <span>请选择设备类型</span>
<div class="head-container" style="text-align: center"> <div class="head-container" style="text-align: center">
<el-tree <el-tree
:data="treeData1" :data="treeData1"
:props = "{id:'equipmentTypeCode',label:'equipmentTypeName'}" :props="{ id: 'equipmentTypeCode', label: 'equipmentTypeName' }"
node-key="id" node-key="id"
:expand-on-click-node="false" :expand-on-click-node="false"
:filter-node-method="filterNode" :filter-node-method="filterNode"
ref="tree" ref="tree"
default-expand-all default-expand-all
@node-click="handleNodeClick" @node-click="handleNodeClick"
/> />
</div> </div>
</el-card> </el-card>
</el-col> </el-col>
<!--设备数据--> <!--设备数据-->
<el-col :span="19" :xs="24"> <el-col :span="19" :xs="24">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px"> <el-form
:model="queryParams"
ref="queryForm"
size="small"
:inline="true"
v-show="showSearch"
label-width="68px"
>
<el-form-item label="设备编码" prop="itemCode"> <el-form-item label="设备编码" prop="itemCode">
<el-input <el-input
v-model="queryParams.itemCode" v-model="queryParams.itemCode"
@ -49,23 +57,61 @@
/> />
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery"></el-button> <el-button
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery"></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-item>
</el-form> </el-form>
<el-table v-loading="loading" :data="itemList" @selection-change="handleEquipmentSelectionChange" ref="myTable"> <el-table
v-loading="loading"
:data="itemList"
@selection-change="handleEquipmentSelectionChange"
ref="myTable"
>
<el-table-column width="50" align="center" type="selection"> <el-table-column width="50" align="center" type="selection">
<!-- <template v-slot="scope"> <!-- <template v-slot="scope">
<el-radio v-model="selectedItemId" :label="scope.row.itemId" @change="handleRowChange(scope.row)">{{""}}</el-radio> <el-radio v-model="selectedItemId" :label="scope.row.itemId" @change="handleRowChange(scope.row)">{{""}}</el-radio>
</template> --> </template> -->
</el-table-column> </el-table-column>
<!-- 序号 --> <!-- 序号 -->
<el-table-column type="index" width="90" align="center" :index="indexMethod" label="序号"></el-table-column> <el-table-column
<el-table-column label="设备编码" align="center" key="itemCode" prop="equipmentCode" v-if="columns[0].visible" > type="index"
width="90"
align="center"
:index="indexMethod"
label="序号"
></el-table-column>
<el-table-column
label="设备编码"
align="center"
key="itemCode"
prop="equipmentCode"
v-if="columns[0].visible"
>
</el-table-column> </el-table-column>
<el-table-column label="设备类型编码" align="center" key="itemTypeCode" prop="equipmentTypeCode" v-if="columns[2].visible" > <el-table-column
label="设备类型编码"
align="center"
key="itemTypeCode"
prop="equipmentTypeCode"
v-if="columns[2].visible"
>
</el-table-column> </el-table-column>
<el-table-column label="设备名称" align="left" key="itemName" prop="equipmentName" v-if="columns[1].visible" :show-overflow-tooltip="true" /> <el-table-column
label="设备名称"
align="left"
key="itemName"
prop="equipmentName"
v-if="columns[1].visible"
:show-overflow-tooltip="true"
/>
</el-table> </el-table>
<pagination <pagination
@ -78,24 +124,27 @@
</el-col> </el-col>
</el-row> </el-row>
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitEquipmentForm"> </el-button> <el-button type="primary" @click="submitEquipmentForm"> </el-button>
<el-button @click="cancelEquipmentForm"> </el-button> <el-button @click="cancelEquipmentForm"> </el-button>
</div> </div>
</el-dialog> </el-dialog>
</template> </template>
<script> <script>
import { getEquipmentList,getEquipmentTypeList} from "@/api/device/faultReport"; import {
getEquipmentList,
getEquipmentTypeList,
} from "@/api/device/faultReport";
import { treeselect } from "@/api/wms/equipment"; import { treeselect } from "@/api/wms/equipment";
import { Message } from 'element-ui' import { Message } from "element-ui";
export default { export default {
name: "MdItemSingle", name: "MdItemSingle",
// components: { Treeselect }, // components: { Treeselect },
data() { data() {
return { return {
treeData1:[], treeData1: [],
showFlag:false, showFlag: false,
// //
selectedItemId: undefined, selectedItemId: undefined,
selectedRows: undefined, selectedRows: undefined,
@ -106,7 +155,7 @@ export default {
// //
showSearch: true, showSearch: true,
// //
total:0, total: 0,
// //
itemList: null, itemList: null,
// //
@ -120,15 +169,15 @@ export default {
itemName: undefined, itemName: undefined,
equipmentTypeCode: undefined, equipmentTypeCode: undefined,
itemTypeId: 0, itemTypeId: 0,
itemCodeGet: '', itemCodeGet: "",
itemCode : undefined, itemCode: undefined,
}, },
// //
columns: [ columns: [
{ key: 0, label: `设备编码`, visible: true }, { key: 0, label: `设备编码`, visible: true },
{ key: 1, label: `设备名称`, visible: true }, { key: 1, label: `设备名称`, visible: true },
{ key: 2, label: `设备类型`, visible: true }, { key: 2, label: `设备类型`, visible: true },
] ],
}; };
}, },
created() { created() {
@ -147,29 +196,28 @@ export default {
this.resetForm("form"); this.resetForm("form");
}, },
handleEquipmentSelectionChange (val) { handleEquipmentSelectionChange(val) {
this.itemList = val this.itemList = val;
}, },
// //
indexMethod(index){ indexMethod(index) {
return index+1 ; return index + 1;
}, },
/** 查询设备编码列表*/ /** 查询设备编码列表*/
getList() { getList() {
this.loading = true; this.loading = true;
getEquipmentList(this.queryParams).then(response => { getEquipmentList(this.queryParams).then((response) => {
this.itemList = response.rows; this.itemList = response.rows;
this.total = response.total; this.total = response.total;
this.loading = false; this.loading = false;
} });
);
}, },
/** 查询分类下拉树结构 */ /** 查询分类下拉树结构 */
getEquipmentType() { getEquipmentType() {
getEquipmentTypeList().then(response => { getEquipmentTypeList().then((response) => {
console.log(response.rows); console.log(response.rows);
this.treeData1 = response.rows; this.treeData1 = response.rows;
console.log(this.treeData1); console.log(this.treeData1);
@ -185,7 +233,7 @@ export default {
// //
handleNodeClick(data) { handleNodeClick(data) {
console.log('id',data.id); console.log("id", data.id);
this.queryParams.equipmentTypeCode = data.equipmentTypeCode; this.queryParams.equipmentTypeCode = data.equipmentTypeCode;
console.log(this.equipmentTypeCode); console.log(this.equipmentTypeCode);
this.handleQuery(); this.handleQuery();
@ -204,43 +252,42 @@ export default {
this.handleQuery(); this.handleQuery();
}, },
// //
handleEquipmentSelectionChange(selection) { handleEquipmentSelectionChange(selection) {
this.ids = selection.map(item => item.equipmentCode); this.ids = selection.map((item) => item.equipmentCode);
this.single = selection.length!==1; this.single = selection.length !== 1;
this.multiple = !selection.length; this.multiple = !selection.length;
console.log("多选框",this.ids); console.log("多选框", this.ids);
}, },
submitEquipmentForm() { submitEquipmentForm() {
const data = this.ids; const data = this.ids;
if(data.length >1){ if (data.length > 1) {
Message.warning("只能选择一个备件使用机器,请勿选择多个!"); Message.warning("只能选择一个备件使用机器,请勿选择多个!");
}else{ } else {
const equipmentCode = data.toString(); const equipmentCode = data.toString();
if(this.queryParams.itemCodeGet == ""){ if (this.queryParams.itemCodeGet == "") {
this.queryParams.itemCodeGet = equipmentCode; this.queryParams.itemCodeGet = equipmentCode;
}else{ } else {
this.queryParams.itemCodeGet = this.queryParams.itemCodeGet + ','+ equipmentCode; this.queryParams.itemCodeGet =
this.queryParams.itemCodeGet + "," + equipmentCode;
} }
this.selectedRows = this.queryParams.itemCodeGet; this.selectedRows = this.queryParams.itemCodeGet;
this.$emit('onSelected', this.selectedRows); this.$emit("onSelected", this.selectedRows);
this.queryParams.equipmentTypeCode = null; this.queryParams.equipmentTypeCode = null;
this.getList();
console.log('111111',this.queryParams.equipmentTypeCode);
this.showFlag = false;
this.queryParams.itemCodeGet = "";
}
},
cancelEquipmentForm(){
this.queryParams.equipmentTypeCode = null;
this.getList(); this.getList();
console.log('111111',this.queryParams.equipmentTypeCode); console.log("111111", this.queryParams.equipmentTypeCode);
this.showFlag = false; this.showFlag = false;
} this.queryParams.itemCodeGet = "";
}
},
} cancelEquipmentForm() {
this.queryParams.equipmentTypeCode = null;
this.getList();
console.log("111111", this.queryParams.equipmentTypeCode);
this.showFlag = false;
},
},
}; };
</script> </script>

@ -1,8 +1,9 @@
<template> <template>
<el-dialog title="人员选择" <el-dialog
title="人员选择"
v-if="showFlag" v-if="showFlag"
:visible.sync="showFlag" :visible.sync="showFlag"
:modal= false :modal="false"
width="800px" width="800px"
center center
:before-close="cancelEquipmentForm" :before-close="cancelEquipmentForm"
@ -10,7 +11,14 @@
<el-row :gutter="20"> <el-row :gutter="20">
<!--人员数据--> <!--人员数据-->
<el-col :span="24"> <el-col :span="24">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px"> <el-form
:model="queryParams"
ref="queryForm"
size="small"
:inline="true"
v-show="showSearch"
label-width="68px"
>
<el-form-item label="人员编码" prop="itemCode"> <el-form-item label="人员编码" prop="itemCode">
<el-input <el-input
v-model="queryParams.itemCode" v-model="queryParams.itemCode"
@ -30,18 +38,64 @@
/> />
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery"></el-button> <el-button
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery"></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-item>
</el-form> </el-form>
<el-table v-loading="loading" :data="itemList" @selection-change="handleEquipmentSelectionChange" ref="myTable"> <el-table
<el-table-column width="50" align="center" type="selection"></el-table-column> v-loading="loading"
:data="itemList"
@selection-change="handleEquipmentSelectionChange"
ref="myTable"
>
<el-table-column
width="50"
align="center"
type="selection"
></el-table-column>
<!-- 序号 --> <!-- 序号 -->
<el-table-column type="index" width="90" align="center" :index="indexMethod" label="序号"></el-table-column> <el-table-column
<el-table-column label="人员编码" align="center" key="itemCode" prop="userName" v-if="columns[0].visible" ></el-table-column> type="index"
<el-table-column label="人员名称" align="left" key="itemName" prop="nickName" v-if="columns[1].visible" :show-overflow-tooltip="true" /> width="90"
<el-table-column label="部门编码" align="center" prop="postCode" v-if="columns[2].visible" ></el-table-column> align="center"
<el-table-column label="部门名称" align="center" prop="postName" v-if="columns[3].visible" ></el-table-column> :index="indexMethod"
label="序号"
></el-table-column>
<el-table-column
label="人员编码"
align="center"
key="itemCode"
prop="userName"
v-if="columns[0].visible"
></el-table-column>
<el-table-column
label="人员名称"
align="left"
key="itemName"
prop="nickName"
v-if="columns[1].visible"
:show-overflow-tooltip="true"
/>
<el-table-column
label="部门编码"
align="center"
prop="postCode"
v-if="columns[2].visible"
></el-table-column>
<el-table-column
label="部门名称"
align="center"
prop="postName"
v-if="columns[3].visible"
></el-table-column>
</el-table> </el-table>
<pagination <pagination
@ -54,22 +108,22 @@
</el-col> </el-col>
</el-row> </el-row>
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitPersonForm"> </el-button> <el-button type="primary" @click="submitPersonForm"> </el-button>
<el-button @click="cancelEquipmentForm"> </el-button> <el-button @click="cancelEquipmentForm"> </el-button>
</div> </div>
</el-dialog> </el-dialog>
</template> </template>
<script> <script>
import { getMaintenancePersonList} from "@/api/device/repairOrder"; import { getMaintenancePersonList } from "@/api/device/repairOrder";
import { Message } from 'element-ui' import { Message } from "element-ui";
export default { export default {
name: "MdItemSingle", name: "MdItemSingle",
data() { data() {
return { return {
treeData1:[], treeData1: [],
showFlag:false, showFlag: false,
// //
selectedItemId: undefined, selectedItemId: undefined,
selectedRows: undefined, selectedRows: undefined,
@ -80,7 +134,7 @@ export default {
// //
showSearch: true, showSearch: true,
// //
total:0, total: 0,
// //
itemList: null, itemList: null,
// //
@ -88,8 +142,8 @@ export default {
pageNum: 1, pageNum: 1,
pageSize: 10, pageSize: 10,
itemName: undefined, itemName: undefined,
itemCodeGet: '', itemCodeGet: "",
itemCode : undefined, itemCode: undefined,
}, },
// //
columns: [ columns: [
@ -97,7 +151,7 @@ export default {
{ key: 1, label: `人员名称`, visible: true }, { key: 1, label: `人员名称`, visible: true },
{ key: 2, label: `部门编码`, visible: true }, { key: 2, label: `部门编码`, visible: true },
{ key: 3, label: `部门名称`, visible: true }, { key: 3, label: `部门名称`, visible: true },
] ],
}; };
}, },
created() { created() {
@ -105,40 +159,39 @@ export default {
}, },
methods: { methods: {
// //
reset() { reset() {
this.form = { this.form = {
itemId: null, itemId: null,
itemCode: this.processId, itemCode: this.processId,
itemType: null, itemType: null,
}; };
this.resetForm("form"); this.resetForm("form");
}, },
handleEquipmentSelectionChange (val) { handleEquipmentSelectionChange(val) {
this.itemList = val; this.itemList = val;
}, },
// //
indexMethod(index){ indexMethod(index) {
return index+1 ; return index + 1;
}, },
// //
/** 查询设备编码列表*/ /** 查询设备编码列表*/
getList() { getList() {
this.loading = true; this.loading = true;
getMaintenancePersonList(this.queryParams).then(response => { getMaintenancePersonList(this.queryParams).then((response) => {
this.itemList = response.rows; this.itemList = response.rows;
this.total = response.total; this.total = response.total;
this.loading = false; this.loading = false;
} });
);
}, },
// //
handleNodeClick(data) { handleNodeClick(data) {
console.log('id',data.id); console.log("id", data.id);
this.queryParams.equipmentTypeCode = data.equipmentTypeCode; this.queryParams.equipmentTypeCode = data.equipmentTypeCode;
console.log(this.equipmentTypeCode); console.log(this.equipmentTypeCode);
this.handleQuery(); this.handleQuery();
@ -158,29 +211,29 @@ export default {
}, },
// //
handleEquipmentSelectionChange(selection) { handleEquipmentSelectionChange(selection) {
this.ids = selection.map(item => item.nickName); this.ids = selection.map((item) => item.nickName);
this.single = selection.length!==1; this.single = selection.length !== 1;
this.multiple = !selection.length; this.multiple = !selection.length;
console.log("多选框",this.ids); console.log("多选框", this.ids);
}, },
submitPersonForm() { submitPersonForm() {
const data = this.ids; const data = this.ids;
const nickName = data.toString(); const nickName = data.toString();
if(data.length >1){ if (data.length > 1) {
Message.warning("只能选择一个维修人,请勿选择多个!"); Message.warning("只能选择一个维修人,请勿选择多个!");
}else{ } else {
if(this.queryParams.itemCodeGet == ""){ if (this.queryParams.itemCodeGet == "") {
this.queryParams.itemCodeGet = nickName; this.queryParams.itemCodeGet = nickName;
} }
this.selectedRows = this.queryParams.itemCodeGet; this.selectedRows = this.queryParams.itemCodeGet;
this.$emit('onSelected', this.selectedRows); this.$emit("onSelected", this.selectedRows);
this.getList(); this.getList();
this.showFlag = false; this.showFlag = false;
this.queryParams.itemCodeGet = ""; this.queryParams.itemCodeGet = "";
} }
} },
} },
}; };
</script> </script>

@ -1,37 +1,64 @@
<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="materialCode"> :model="queryParams"
<el-input ref="queryForm"
v-model="queryParams.materialCode" size="small"
placeholder="请输入备品备件号" :inline="true"
clearable v-show="showSearch"
@keyup.enter.native="handleQuery" label-width="98px"
style="width:150px" >
/> <el-form-item label="备品备件号" prop="materialCode">
</el-form-item> <el-input
<el-form-item label="规格型号" prop="spareMode"> v-model="queryParams.materialCode"
<el-input placeholder="请输入备品备件号"
v-model="queryParams.spareMode" clearable
placeholder="请输入规格型号" @keyup.enter.native="handleQuery"
clearable style="width: 150px"
@keyup.enter.native="handleQuery" />
style="width:150px" </el-form-item>
/> <el-form-item label="规格型号" prop="spareMode">
</el-form-item> <el-input
<el-form-item label="备件类型" prop="spareType"> v-model="queryParams.spareMode"
<el-select v-model="queryParams.spareType" placeholder="请选择备件类型" @keyup.enter.native="handleQuery" @change="$forceUpdate()" clearable style="width:150px"> placeholder="请输入规格型号"
<el-option v-for="item in options" :key="item.spareType" :label="item.label" :value="item.spareType"></el-option> clearable
</el-select> @keyup.enter.native="handleQuery"
</el-form-item> style="width: 150px"
<el-form-item> />
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery"></el-button> </el-form-item>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery"></el-button> <el-form-item label="备件类型" prop="spareType">
</el-form-item> <el-select
</el-form> v-model="queryParams.spareType"
placeholder="请选择备件类型"
@keyup.enter.native="handleQuery"
@change="$forceUpdate()"
clearable
style="width: 150px"
>
<el-option
v-for="item in options"
:key="item.spareType"
:label="item.label"
:value="item.spareType"
></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
@ -63,49 +90,126 @@
v-hasPermi="['device:sparePartsLedger:remove']" v-hasPermi="['device:sparePartsLedger:remove']"
>删除</el-button> >删除</el-button>
</el-col> --> </el-col> -->
<el-col :span="1.5"> <el-col :span="1.5">
<el-button <el-button
type="warning" type="warning"
plain plain
icon="el-icon-download" icon="el-icon-download"
size="mini" size="mini"
@click="handleExport" @click="handleExport"
v-hasPermi="['device:sparePartsLedger:export']" v-hasPermi="['device:sparePartsLedger:export']"
>导出</el-button> >导出</el-button
</el-col> >
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar> </el-col>
</el-row> <right-toolbar
:showSearch.sync="showSearch"
@queryTable="getList"
></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="sparePartsLedgerList" @selection-change="handleSelectionChange"> <el-table
<el-table-column type="selection" width="55" align="center" /> v-loading="loading"
<!-- 序号 --> :data="sparePartsLedgerList"
<el-table-column type="index" width="90" align="center" :index="indexMethod" label="序号"/> @selection-change="handleSelectionChange"
<el-table-column label="备品备件号" align="center" prop="materialCode" width="120"/> >
<el-table-column label="备品备件描述" align="center" prop="materialDesc" width="120"/> <el-table-column type="selection" width="55" align="center" />
<el-table-column label="备品备件类型" align="center" prop="spareType" width="120"/> <!-- 序号 -->
<el-table-column label="规格型号" align="center" prop="spareMode" /> <el-table-column
<el-table-column label="生产厂商" align="center" prop="spareManufacturer" /> type="index"
<el-table-column label="供应商" align="center" prop="spareSupplier" /> width="90"
<el-table-column label="循环周期" align="center" prop="spareReplacementCycle" /> align="center"
<el-table-column label="计量单位" align="center" prop="spareMeasurementUnit" /> :index="indexMethod"
<el-table-column label="换算单位" align="center" prop="spareConversionUnit" /> label="序号"
<el-table-column label="换算比例" align="center" prop="spareConversionRatio" /> />
<el-table-column label="库存上限" align="center" prop="spareInventoryFloor" /> <el-table-column
<el-table-column label="库存下限" align="center" prop="spareInventoryUpper" /> label="备品备件号"
<el-table-column v-if="false" label="工厂号" align="center" prop="factoryCode" /> align="center"
<el-table-column label="创建人" align="center" prop="createBy"/> prop="materialCode"
<el-table-column label="创建时间" align="center" prop="gmtCreate" width="180"> width="120"
<template slot-scope="scope"> />
<span>{{ parseTime(scope.row.gmtCreate, '{y}-{m}-{d}') }}</span> <el-table-column
</template> label="备品备件描述"
</el-table-column> align="center"
<el-table-column label="最后更新人" align="center" prop="lastModifiedBy" width="100"/> prop="materialDesc"
<el-table-column label="最后更新时间" align="center" prop="gmtModified" width="200"> width="120"
<template slot-scope="scope"> />
<span>{{ parseTime(scope.row.gmtModified, '{y}-{m}-{d}') }}</span> <el-table-column
</template> label="备品备件类型"
</el-table-column> align="center"
<!-- <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="200"> prop="spareType"
width="120"
/>
<el-table-column label="规格型号" align="center" prop="spareMode" />
<el-table-column
label="生产厂商"
align="center"
prop="spareManufacturer"
/>
<el-table-column label="供应商" align="center" prop="spareSupplier" />
<el-table-column
label="循环周期"
align="center"
prop="spareReplacementCycle"
/>
<el-table-column
label="计量单位"
align="center"
prop="spareMeasurementUnit"
/>
<el-table-column
label="换算单位"
align="center"
prop="spareConversionUnit"
/>
<el-table-column
label="换算比例"
align="center"
prop="spareConversionRatio"
/>
<el-table-column
label="库存上限"
align="center"
prop="spareInventoryFloor"
/>
<el-table-column
label="库存下限"
align="center"
prop="spareInventoryUpper"
/>
<el-table-column
v-if="false"
label="工厂号"
align="center"
prop="factoryCode"
/>
<el-table-column label="创建人" align="center" prop="createBy" />
<el-table-column
label="创建时间"
align="center"
prop="gmtCreate"
width="180"
>
<template slot-scope="scope">
<span>{{ parseTime(scope.row.gmtCreate, "{y}-{m}-{d}") }}</span>
</template>
</el-table-column>
<el-table-column
label="最后更新人"
align="center"
prop="lastModifiedBy"
width="100"
/>
<el-table-column
label="最后更新时间"
align="center"
prop="gmtModified"
width="200"
>
<template slot-scope="scope">
<span>{{ parseTime(scope.row.gmtModified, "{y}-{m}-{d}") }}</span>
</template>
</el-table-column>
<!-- <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="200">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button <el-button
size="mini" size="mini"
@ -123,18 +227,18 @@
>删除</el-button> >删除</el-button>
</template> </template>
</el-table-column> --> </el-table-column> -->
</el-table> </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="80px"> <el-form ref="form" :model="form" :rules="rules" label-width="80px">
<el-form-item label="唯一序列" prop="storageId"> <el-form-item label="唯一序列" prop="storageId">
<el-input v-model="form.storageId" placeholder="请输入唯一序列" /> <el-input v-model="form.storageId" placeholder="请输入唯一序列" />
@ -291,240 +395,259 @@
<el-button @click="cancel"> </el-button> <el-button @click="cancel"> </el-button>
</div> </div>
</el-dialog> --> </el-dialog> -->
</div> </div>
</template> </template>
<script> <script>
import { listSparePartsLedger, getSparePartsLedger, delSparePartsLedger, addSparePartsLedger, updateSparePartsLedger } from "@/api/device/sparePartsLedger"; import {
listSparePartsLedger,
getSparePartsLedger,
delSparePartsLedger,
addSparePartsLedger,
updateSparePartsLedger,
} from "@/api/device/sparePartsLedger";
export default { export default {
name: "SparePartsLedger", name: "SparePartsLedger",
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,
// //
sparePartsLedgerList: [], sparePartsLedgerList: [],
// //
title: "", title: "",
// //
open: false, open: false,
// //
queryParams: { queryParams: {
pageNum: 1, pageNum: 1,
pageSize: 10, pageSize: 10,
storageId: null, storageId: null,
whCode: null, whCode: null,
regionCode: null, regionCode: null,
waCode: null, waCode: null,
storageType: null, storageType: null,
wlCode: null, wlCode: null,
materialCode: null, materialCode: null,
materialDesc: null, materialDesc: null,
amount: null, amount: null,
storageAmount: null, storageAmount: null,
occupyAmount: null, occupyAmount: null,
lpn: null, lpn: null,
productBatch: null, productBatch: null,
receiveDate: null, receiveDate: null,
productDate: null, productDate: null,
userDefined1: null, userDefined1: null,
userDefined2: null, userDefined2: null,
userDefined3: null, userDefined3: null,
userDefined4: null, userDefined4: null,
userDefined5: null, userDefined5: null,
userDefined6: null, userDefined6: null,
userDefined7: null, userDefined7: null,
userDefined8: null, userDefined8: null,
userDefined9: null, userDefined9: null,
userDefined10: null, userDefined10: null,
gmtCreate: null, gmtCreate: null,
lastModifiedBy: null, lastModifiedBy: null,
gmtModified: null, gmtModified: null,
activeFlag: null, activeFlag: null,
factoryCode: null, factoryCode: null,
sapFactoryCode: null, sapFactoryCode: null,
wlName: null, wlName: null,
spareUseLife: null, spareUseLife: null,
spareName: null, spareName: null,
spareMode: null, spareMode: null,
spareManufacturer: null, spareManufacturer: null,
spareSupplier: null, spareSupplier: null,
spareReplacementCycle: null, spareReplacementCycle: null,
spareMeasurementUnit: null, spareMeasurementUnit: null,
spareConversionUnit: null, spareConversionUnit: null,
spareConversionRatio: null, spareConversionRatio: null,
spareInventoryFloor: null, spareInventoryFloor: null,
spareInventoryUpper: null spareInventoryUpper: null,
}, },
options: [{ options: [
spareType: "专用", {
label: '专用' spareType: "专用",
}, { label: "专用",
spareType: "通用", },
label: '通用' {
}], spareType: "通用",
// label: "通用",
form: {}, },
// ],
rules: { //
storageId: [ form: {},
{ required: true, message: "唯一序列不能为空", trigger: "blur" } //
], rules: {
} storageId: [
}; { required: true, message: "唯一序列不能为空", trigger: "blur" },
}, ],
created() { },
this.getList(); };
}, },
methods: { created() {
// this.getList();
},
methods: {
//
indexMethod(index) { indexMethod(index) {
return index + 1; return index + 1;
}, },
/** 查询备品备件台账管理列表 */ /** 查询备品备件台账管理列表 */
getList() { getList() {
this.loading = true; this.loading = true;
listSparePartsLedger(this.queryParams).then(response => { listSparePartsLedger(this.queryParams).then((response) => {
this.sparePartsLedgerList = response.rows; this.sparePartsLedgerList = response.rows;
this.total = response.total; this.total = response.total;
this.loading = false; this.loading = false;
}); });
}, },
// //
cancel() { cancel() {
this.open = false; this.open = false;
this.reset(); this.reset();
}, },
// //
reset() { reset() {
this.form = { this.form = {
storageId: null, storageId: null,
whCode: null, whCode: null,
regionCode: null, regionCode: null,
waCode: null, waCode: null,
storageType: null, storageType: null,
wlCode: null, wlCode: null,
materialCode: null, materialCode: null,
materialDesc: null, materialDesc: null,
amount: null, amount: null,
storageAmount: null, storageAmount: null,
occupyAmount: null, occupyAmount: null,
lpn: null, lpn: null,
productBatch: null, productBatch: null,
receiveDate: null, receiveDate: null,
productDate: null, productDate: null,
userDefined1: null, userDefined1: null,
userDefined2: null, userDefined2: null,
userDefined3: null, userDefined3: null,
userDefined4: null, userDefined4: null,
userDefined5: null, userDefined5: null,
userDefined6: null, userDefined6: null,
userDefined7: null, userDefined7: null,
userDefined8: null, userDefined8: null,
userDefined9: null, userDefined9: null,
userDefined10: null, userDefined10: null,
createBy: null, createBy: null,
gmtCreate: null, gmtCreate: null,
lastModifiedBy: null, lastModifiedBy: null,
gmtModified: null, gmtModified: null,
activeFlag: null, activeFlag: null,
factoryCode: null, factoryCode: null,
sapFactoryCode: null, sapFactoryCode: null,
wlName: null, wlName: null,
delFlag: null, delFlag: null,
spareUseLife: null, spareUseLife: null,
spareName: null, spareName: null,
spareMode: null, spareMode: null,
spareManufacturer: null, spareManufacturer: null,
spareSupplier: null, spareSupplier: null,
spareReplacementCycle: null, spareReplacementCycle: null,
spareMeasurementUnit: null, spareMeasurementUnit: null,
spareConversionUnit: null, spareConversionUnit: null,
spareConversionRatio: null, spareConversionRatio: null,
spareInventoryFloor: null, spareInventoryFloor: null,
spareInventoryUpper: null spareInventoryUpper: null,
}; };
this.resetForm("form"); this.resetForm("form");
}, },
/** 搜索按钮操作 */ /** 搜索按钮操作 */
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.storageId) this.ids = selection.map((item) => item.storageId);
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 storageId = row.storageId || this.ids const storageId = row.storageId || this.ids;
getSparePartsLedger(storageId).then(response => { getSparePartsLedger(storageId).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.storageId != null) { if (this.form.storageId != null) {
updateSparePartsLedger(this.form).then(response => { updateSparePartsLedger(this.form).then((response) => {
this.$modal.msgSuccess("修改成功"); this.$modal.msgSuccess("修改成功");
this.open = false; this.open = false;
this.getList(); this.getList();
}); });
} else { } else {
addSparePartsLedger(this.form).then(response => { addSparePartsLedger(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 storageIds = row.storageId || this.ids; const storageIds = row.storageId || this.ids;
this.$modal.confirm('是否确认删除备品备件台账管理编号为"' + storageIds + '"的数据项?').then(function() { this.$modal
return delSparePartsLedger(storageIds); .confirm(
}).then(() => { '是否确认删除备品备件台账管理编号为"' + storageIds + '"的数据项?'
this.getList(); )
this.$modal.msgSuccess("删除成功"); .then(function () {
}).catch(() => {}); return delSparePartsLedger(storageIds);
}, })
/** 导出按钮操作 */ .then(() => {
handleExport() { this.getList();
this.download('device/sparePartsLedger/export', { this.$modal.msgSuccess("删除成功");
...this.queryParams })
}, `sparePartsLedger_${new Date().getTime()}.xlsx`) .catch(() => {});
} },
} /** 导出按钮操作 */
handleExport() {
this.download(
"device/sparePartsLedger/export",
{
...this.queryParams,
},
`sparePartsLedger_${new Date().getTime()}.xlsx`
);
},
},
}; };
</script> </script>

@ -161,6 +161,18 @@
>工单详情 >工单详情
</el-button> </el-button>
</el-col> </el-col>
<el-col :span="1.5">
<el-button
type="warning"
plain
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="editMachine"
v-hasPermi="['mes:pro:workorder:edit']"
>设备修改
</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar> <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row> </el-row>
@ -538,6 +550,75 @@
<el-button @click="subMaterielBP" class="my-materiel-btn" type="primary">确定</el-button> <el-button @click="subMaterielBP" class="my-materiel-btn" type="primary">确定</el-button>
</el-dialog> </el-dialog>
<!-- 工单设备修改模块 -->
<el-dialog :title="titleM" :visible.sync="openM" width="1000px" append-to-body>
<el-table
border
v-if="refreshProTable"
v-loading="proLoading"
:data="productData"
row-key="orderCode"
:tree-props="{children: 'children', hasChildren: 'hasChildren'}"
>
<el-table-column width="60" align="center" label="序号" type="index"></el-table-column>
<el-table-column width="150" label="订单编号" prop="orderCode"/>
<el-table-column width="380" label="产品名称" align="center" prop="prodDesc"/>
<el-table-column width="60" label="单位" align="center" prop="unit"/>
<el-table-column width="130" label="产品数量" align="center" prop="quantity"/>
<el-table-column label="已拆分数量" align="center" prop="quantitySplit"/>
<el-table-column label="拆分数量" align="center" prop="atrr1"/>
</el-table>
<el-form class="my-margin" :model="splitFormM" ref="dynamicForm" label-width="80px">
<el-row>
<el-col :span="7">
<el-form-item label="选择设备:">
<div style="height: 130px;overflow-y: auto;">
<el-cascader
:options="eRouteOptionsM"
:props="eRouteProps"
v-model="splitFormM.prodLineCodeArray"
clearable></el-cascader>
</div>
</el-form-item>
</el-col>
</el-row>
</el-form>
<!-- 拆分尾 -->
<el-table
border
:data="splitData"
v-if="refreshWorkerTable"
v-loading="workerLoading"
row-key="workorderCode"
style="width: 100%"
max-height="240"
:tree-props="{children: 'children', hasChildren: 'hasChildren'}"
>
<el-table-column width="60" align="center" label="序号" type="index"></el-table-column>
<el-table-column width="200" align="center" prop="workorderCode" label="工单号"></el-table-column>
<el-table-column width="100" align="center" prop="productDate" label="工单日期"></el-table-column>
<el-table-column width="150" align="center" label="生产线体设备">
<template slot-scope="scope">
<el-popover width="250" placement="top-start" trigger="hover" :content="scope.row.prodLineCode">
<span slot="reference" class="btn">{{ scope.row.prodLineCode }}</span>
</el-popover>
</template>
</el-table-column>
<el-table-column width="80" align="center" prop="quantitySplit" label="数量"></el-table-column>
<el-table-column width="60" label="单位" align="center" prop="unit"/>
<el-table-column width="90" label="工艺编码" align="center" prop="routeCode"/>
<el-table-column width="90" label="班次" align="center" prop="shiftDesc" :formatter="shiftFormat"/>
<el-table-column align="center" width="230" prop="batchCodeList" label="批次号"></el-table-column>
<el-table-column align="center" width="150" prop="batchNumList" label="批次数量"></el-table-column>
</el-table>
<!-- 测试 -->
<!-- 操作按钮 -->
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitFormM"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div> </div>
</template> </template>
@ -549,7 +630,7 @@ import {
downWorkorder, downWorkorder,
getOrderAndWork,getProSortNo, getOrderAndWork,getProSortNo,
getWorkBatchList, getWorkBatchList,
subChangeWorkOrder, subChangeWorkOrder,subChangeWorkOrderM,
checkWorkOrder checkWorkOrder
} from '@/api/plan/workorder' } from '@/api/plan/workorder'
import moment from 'moment'; import moment from 'moment';
@ -625,6 +706,9 @@ export default {
materialCode:null, materialCode:null,
materialName:null materialName:null
}, },
splitFormM: {
prodLineCodeArray: []
},
// //
loading: true, loading: true,
// //
@ -646,6 +730,7 @@ export default {
title: "", title: "",
// //
open: false, open: false,
openM:false,
// //
queryParams: { queryParams: {
productDateArray: [new Date(), new Date()], productDateArray: [new Date(), new Date()],
@ -703,6 +788,7 @@ export default {
/**********************************/ /**********************************/
eRouteProps: {multiple: true}, eRouteProps: {multiple: true},
eRouteOptions: [], eRouteOptions: [],
eRouteOptionsM: [],
// //
workShift: [], workShift: [],
// //
@ -940,7 +1026,7 @@ export default {
} }
setAtrr1(this.productData[0], this.splitData[0]); setAtrr1(this.productData[0], this.splitData[0]);
} }
}) })
@ -1434,7 +1520,7 @@ export default {
} }
setAtrr1(this.productData[0], this.splitData[0]); setAtrr1(this.productData[0], this.splitData[0]);
} }
}) })
@ -1443,10 +1529,72 @@ export default {
this.title = "生产工单详情"; this.title = "生产工单详情";
this.showDetail = false; this.showDetail = false;
}, },
//-----
editMachine(row) {
//
this.reset();
this.splitData = [];
this.productData = [];
this.splitFormM = {
prodLineCodeArray: [],
}
//
getProEquipment(this.selectWork.routeCode).then(response2 => {
this.eRouteOptionsM = response2.data
})
getOrderAndWork(this.selectWork).then(response => {
//
this.splitFormM.prodLineCodeArray = response.data.workOrder.prodLineCodeArray
this.splitData.push(response.data.workOrder)
this.productData.push(response.data.order)
this.refreshProTable = false // refreshProTablefalse
this.refreshWorkerTable = false // refreshProTablefalse
this.$nextTick(() => {
// 使$nextTickDOM
this.refreshProTable = true // refreshProTabletrue
this.proLoading = false // false
})
this.$nextTick(() => {
// 使$nextTickDOM
this.refreshWorkerTable = true // refreshProTabletrue
this.workerLoading = false // false
})
})
this.openM = true;
this.titleM = "生产工单设备修改";
},
//-----
// -
submitFormM() {
//
const data = {
proOrderWorkorder: this.selectWork,
prodLineCodeArray: this.splitFormM.prodLineCodeArray
}
subChangeWorkOrderM(data).then(response => {
if (response.code == 500) {
this.$modal.msgError(response.msg)
return
}
this.getList()
this.$modal.msgSuccess('提交成功')
})
//
this.splitFormM = {
prodLineCodeArray: []
}
this.openM = false
},
// //
cancel() { cancel() {
this.open = false; this.open = false;
this.openM = false;
this.showDetail = true; this.showDetail = true;
this.reset(); this.reset();
}, },

Loading…
Cancel
Save