444 lines
12 KiB
Vue
444 lines
12 KiB
Vue
<!--
|
|
* @Author: zhp
|
|
* @Date: 2024-01-30 10:52:01
|
|
* @LastEditTime: 2024-03-15 14:06:55
|
|
* @LastEditors: zhp
|
|
* @Description:
|
|
-->
|
|
|
|
<template>
|
|
<section class="process-bom">
|
|
<!-- <SearchBar :formConfigs="searchBarFormConfig" ref="search-bar" />
|
|
|
|
<div
|
|
class="btns"
|
|
style="
|
|
text-align: right;
|
|
position: absolute;
|
|
top: 20px;
|
|
right: 20px;
|
|
display: flex;
|
|
">
|
|
<el-button
|
|
type="primary"
|
|
plain
|
|
:disabled="currentDet == null"
|
|
class="btn-create"
|
|
@click="handleAddEquipment"
|
|
icon="el-icon-plus">
|
|
分配设备
|
|
</el-button>
|
|
<el-input
|
|
icon="el-icon-search"
|
|
placeholder="搜索"
|
|
v-model="searchText"
|
|
:disabled="currentDet == null"
|
|
@change="handleSearchTextChange"
|
|
clearable
|
|
style="margin-left: 20px">
|
|
<i slot="prefix" class="el-input__icon el-icon-search"></i>
|
|
</el-input>
|
|
</div> -->
|
|
|
|
<!-- 列表 -->
|
|
<!-- <base-table
|
|
:table-props="tableProps"
|
|
:page="queryParams.pageNo"
|
|
:limit="queryParams.pageSize"
|
|
:table-data="list"
|
|
@emitFun="handleEmitFun">
|
|
<method-btn
|
|
v-if="tableBtn.length"
|
|
slot="handleBtn"
|
|
label="操作"
|
|
:width="120"
|
|
:method-list="tableBtn"
|
|
@clickBtn="handleTableBtnClick" />
|
|
</base-table> -->
|
|
|
|
<!-- 分页组件 -->
|
|
<!-- <pagination
|
|
v-show="total > 0"
|
|
:total="total"
|
|
:page.sync="queryParams.pageNo"
|
|
:limit.sync="queryParams.pageSize"
|
|
@pagination="getList" /> -->
|
|
|
|
<base-dialog dialogTitle="选择产线工段" :dialogVisible="open" width="45%" @close="cancel" @cancel="cancel"
|
|
@confirm="submitForm">
|
|
<el-row>
|
|
<el-form ref="dataForm" :model="dataForm" label-width="120px" :inline="true" class="demo-form-inline">
|
|
<el-col :span="12">
|
|
<el-form-item label="用户名" prop="userId" :rules="[{ required: true, message: '不能为空', trigger: 'blur' }]">
|
|
<el-select v-model="dataForm.userId" placeholder="用户名" filterable @change="handleProductlineChange">
|
|
<el-option v-for="opt in userList" :key="opt.id" :label="opt.name" :value="opt.id" />
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="用户昵称" prop="nickname" :rules="[{ required: true, message: '不能为空', trigger: 'blur' }]">
|
|
<el-input v-model="dataForm.nickname">
|
|
<!-- <el-option v-for="opt in workshopSectionList" :key="opt.value" :label="opt.label" :value="opt.value" /> -->
|
|
</el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-form>
|
|
</el-row>
|
|
<BomSelector ref="bomSelector" v-if="open" :bom-list="bomList" :value="selectedBoms"
|
|
@update="selectedBoms = $event" />
|
|
|
|
<el-row slot="footer">
|
|
<el-button size="small" @click="cancel">取消</el-button>
|
|
<el-button type="primary" size="small" @click="submitForm" :loading="btnLoading">
|
|
确定
|
|
</el-button>
|
|
</el-row>
|
|
</base-dialog>
|
|
</section>
|
|
</template>
|
|
|
|
<script>
|
|
import BomSelector from './BomSelector.vue';
|
|
import {
|
|
getUserList,
|
|
getQualityInspectionBoxBtn,
|
|
} from '@/api/base/qualityInspectionBoxPermissions';
|
|
// import {
|
|
// createQualityInspectionBoxBtn,
|
|
// updateQualityInspectionBoxBtn,
|
|
// deleteQualityInspectionBoxBtn,
|
|
|
|
// getPage,
|
|
// exportQualityInspectionBoxBtnExcel,
|
|
// getUserList
|
|
// } from '@/api/base/qualityInspectionBoxPermissions';
|
|
export default {
|
|
name: 'ProcessBom',
|
|
components: { BomSelector },
|
|
props: {
|
|
currentDet: {
|
|
type: Object,
|
|
default: null,
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
btnLoading: false,
|
|
open: false,
|
|
eqList: [],
|
|
bomList: [],
|
|
finalList: [],
|
|
choosedEquipments: [],
|
|
searchBarFormConfig: [{ label: '工序下设备' }],
|
|
tableProps: [
|
|
{ prop: 'equName', label: '设备名称' },
|
|
{ prop: 'materialName', label: '物料BOM' },
|
|
{ prop: 'valueName', label: '参数BOM' },
|
|
],
|
|
list: [],
|
|
total: 0,
|
|
tableBtn: [],
|
|
chooseList:[],
|
|
queryParams: {
|
|
pageNo: 1,
|
|
pageSize: 10,
|
|
equipmentName: '',
|
|
},
|
|
dataForm: {
|
|
userId: null,
|
|
nickname: null,
|
|
list: [],
|
|
},
|
|
userList: [],
|
|
data:{},
|
|
searchText: '',
|
|
selectedBoms: {},
|
|
timer: null,
|
|
};
|
|
},
|
|
// watch: {
|
|
// currentDet: {
|
|
// handler(val) {
|
|
// console.log('currentDet', val);
|
|
// if (val != null) {
|
|
// this.getList(val);
|
|
// } else {
|
|
// this.clearList();
|
|
// }
|
|
// },
|
|
// immediate: true,
|
|
// deep: true,
|
|
// },
|
|
// },
|
|
methods: {
|
|
getDict() {
|
|
getUserList({
|
|
pageNo: 1,
|
|
pageSize: 999
|
|
}).then((res) => {
|
|
this.userList = res.data.map((item) => {
|
|
return {
|
|
id: item.id,
|
|
name: item.username,
|
|
nickname: item.nickname
|
|
}
|
|
})
|
|
})
|
|
},
|
|
async handleProductlineChange(id) {
|
|
this.userList.forEach((ele) => {
|
|
if (ele.id === id) {
|
|
this.dataForm.nickname = ele.nickname
|
|
}
|
|
})
|
|
},
|
|
handleEmitFun() { },
|
|
getData() {
|
|
this.selectedBoms = [];
|
|
// 获取设备及bom列表
|
|
this.http('base/quality-inspection-box-btn-auth/getQualityAuthTree', 'get',
|
|
// {
|
|
// sectionId,
|
|
// flowDetId: detId,
|
|
// }
|
|
)
|
|
.then(({ code, data }) => {
|
|
console.log(data)
|
|
if (code == 0) {
|
|
this.bomList = data.map((eq) => {
|
|
eq.materialsBom = eq.children || [];
|
|
// eq.valuesBom = eq.valuesBom || [];
|
|
// 设置选中状态
|
|
eq.materialsBom.chosen = eq.materialsBomChoseId ?? null;
|
|
// eq.valuesBom.chosen = eq.valuesBomChoseId ?? null;
|
|
if (
|
|
eq.equChose ||
|
|
eq.materialsBom.chosen
|
|
// eq.valuesBom.chosen
|
|
) {
|
|
// this.selectedBoms.push({
|
|
// equipmentId: eq.id,
|
|
// equMaterialBomId: eq.materialsBom.chosen,
|
|
// // equValueBomId: eq.valuesBom.chosen,
|
|
// });
|
|
}
|
|
// 设置设备id
|
|
eq.materialsBom.equipmentId = eq.id;
|
|
// eq.valuesBom.equipmentId = eq.id;
|
|
return eq;
|
|
});
|
|
} else {
|
|
this.bomList.splice(0);
|
|
}
|
|
})
|
|
.catch((err) => {
|
|
this.bomList.splice(0);
|
|
this.selectedBoms = [];
|
|
});
|
|
},
|
|
handleTableBtnClick() {},
|
|
|
|
handleSearchTextChange(val) {
|
|
if (this.timer) clearTimeout(this.timer);
|
|
this.timer = setTimeout(() => {
|
|
console.log('geting list.......');
|
|
this.queryParams.equipmentName = val;
|
|
this.$nextTick(() => {
|
|
this.getList(this.currentDet);
|
|
});
|
|
}, 300);
|
|
},
|
|
|
|
put(payload) {
|
|
return this.http(this.updateUrl, 'put', payload);
|
|
},
|
|
post(payload) {
|
|
return this.http(this.addUrl, 'post', payload);
|
|
},
|
|
recv(payload) {
|
|
return this.http(this.pageUrl, 'get', payload);
|
|
},
|
|
info(payload) {
|
|
return this.http(this.infoUrl, 'get', payload);
|
|
},
|
|
http(url, method, payload) {
|
|
return this.$axios({
|
|
url,
|
|
method,
|
|
params: method === 'get' ? payload : null,
|
|
data: method !== 'get' ? payload : null,
|
|
});
|
|
},
|
|
submitForm() {
|
|
this.btnLoading = true;
|
|
// 现将子组件的修改提交更新至本组件
|
|
this.$refs.bomSelector.commit();
|
|
// 再提交至后端
|
|
this.$nextTick(async () => {
|
|
console.log('selectedBoms', this.selectedBoms);
|
|
// console.log('selectedBoms', this.data);
|
|
this.dataForm.list = this.selectedBoms.map((ele) => {
|
|
return {
|
|
id: ele.equipmentId,
|
|
children: ele.children
|
|
}
|
|
})
|
|
console.log(this.dataForm);
|
|
if (!this.dataForm.userId) {
|
|
const { code, data } = await this.http(
|
|
'base/quality-inspection-box-btn-auth/create',
|
|
'post',
|
|
this.dataForm
|
|
);
|
|
if (code == 0) {
|
|
this.$message.success('操作成功');
|
|
// this.getList(this.currentDet);
|
|
this.btnLoading = false;
|
|
this.$emit('getList')
|
|
this.cancel();
|
|
} else {
|
|
this.btnLoading = false;
|
|
this.$message.error('操作失败');
|
|
}
|
|
} else {
|
|
const { code, data } = await this.http(
|
|
'base/quality-inspection-box-btn-auth/update',
|
|
'put',
|
|
this.dataForm
|
|
);
|
|
if (code == 0) {
|
|
this.$message.success('操作成功');
|
|
// this.getList(this.currentDet);
|
|
this.btnLoading = false;
|
|
this.$emit('getList')
|
|
this.cancel();
|
|
} else {
|
|
this.btnLoading = false;
|
|
this.$message.error('操作失败');
|
|
}
|
|
}
|
|
});
|
|
},
|
|
// async getList({
|
|
// detId,
|
|
// detName,
|
|
// detDesc,
|
|
// flowId,
|
|
// sectionName,
|
|
// sectionId,
|
|
// } = {}) {
|
|
// console.log('get list', detId, detName, flowId);
|
|
// const { data, code } = await this.http(
|
|
// '/extend/process-flow-det-equipment/page',
|
|
// 'get',
|
|
// { flowDetId: detId, ...this.queryParams }
|
|
// );
|
|
// if (code == 0) {
|
|
// this.list = data.list;
|
|
// this.total = data.total;
|
|
// } else {
|
|
// this.list.splice(0);
|
|
// this.total = 0;
|
|
// }
|
|
|
|
// // this.selectedBoms = [];
|
|
// // // 获取设备及bom列表
|
|
// // this.http('base/quality-inspection-box-btn-auth/getQualityAuthTree', 'get',
|
|
// // // {
|
|
// // // sectionId,
|
|
// // // flowDetId: detId,
|
|
// // // }
|
|
// // )
|
|
// // .then(({ code, data }) => {
|
|
// // console.log(data)
|
|
// // if (code == 0) {
|
|
// // this.bomList = data.map((eq) => {
|
|
// // eq.materialsBom = eq.materialsBom || [];
|
|
// // eq.valuesBom = eq.valuesBom || [];
|
|
// // // 设置选中状态
|
|
// // eq.materialsBom.chosen = eq.materialsBomChoseId ?? null;
|
|
// // eq.valuesBom.chosen = eq.valuesBomChoseId ?? null;
|
|
// // if (
|
|
// // eq.equChose ||
|
|
// // eq.materialsBom.chosen ||
|
|
// // eq.valuesBom.chosen
|
|
// // ) {
|
|
// // this.selectedBoms.push({
|
|
// // equipmentId: eq.id,
|
|
// // equMaterialBomId: eq.materialsBom.chosen,
|
|
// // equValueBomId: eq.valuesBom.chosen,
|
|
// // });
|
|
// // }
|
|
// // // 设置设备id
|
|
// // eq.materialsBom.equipmentId = eq.id;
|
|
// // eq.valuesBom.equipmentId = eq.id;
|
|
// // return eq;
|
|
// // });
|
|
// // } else {
|
|
// // this.bomList.splice(0);
|
|
// // this.selectedBoms = [];
|
|
// // }
|
|
// // })
|
|
// // .catch((err) => {
|
|
// // this.bomList.splice(0);
|
|
// // this.selectedBoms = [];
|
|
// // });
|
|
// },
|
|
async handleAddEquipment(userId) {
|
|
this.open = true
|
|
this.selectedBoms = []
|
|
this.getData()
|
|
this.getDict()
|
|
if (userId) {
|
|
getQualityInspectionBoxBtn(userId).then((res) => {
|
|
// console.log(res)
|
|
this.$nextTick(() => {
|
|
this.dataForm.userId = userId
|
|
this.dataForm.nickname = res.data.nickName
|
|
this.dataList = res.data.datas
|
|
let arr = []
|
|
res.data.datas.forEach((item) => {
|
|
// console.log(item.children);
|
|
// item.children.forEach((ele) => {
|
|
// console.log(ele)
|
|
this.selectedBoms.push({
|
|
equipmentId: item.id,
|
|
children: Object.keys(item).length > 0 ? item.children.map((ele) => {
|
|
console.log(ele)
|
|
return {
|
|
id: ele.id
|
|
}
|
|
}) : []
|
|
})
|
|
// })
|
|
})
|
|
})
|
|
// console.log(arr)
|
|
// this.chooseList = arr
|
|
// console.log(this.chooseList)
|
|
})
|
|
}
|
|
},
|
|
cancel() {
|
|
this.open = false
|
|
this.bomList = []
|
|
this.selectedBoms = []
|
|
this.$refs.dataForm.resetFields();
|
|
},
|
|
clearList() {
|
|
this.list = [];
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.process-bom {
|
|
position: relative;
|
|
flex: 1;
|
|
padding: 12px 20px;
|
|
background: #fff;
|
|
border-radius: 8px;
|
|
}
|
|
</style>
|