解决冲突
This commit is contained in:
commit
974ebc53df
2
.env.dev
2
.env.dev
@ -1,7 +1,7 @@
|
|||||||
###
|
###
|
||||||
# @Author: Do not edit
|
# @Author: Do not edit
|
||||||
# @Date: 2023-08-29 09:40:39
|
# @Date: 2023-08-29 09:40:39
|
||||||
# @LastEditTime: 2024-03-22 10:57:53
|
# @LastEditTime: 2024-03-22 14:18:33
|
||||||
# @LastEditors: zhp
|
# @LastEditors: zhp
|
||||||
# @Description:
|
# @Description:
|
||||||
###
|
###
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* @Author: Do not edit
|
* @Author: Do not edit
|
||||||
* @Date: 2023-10-21 11:50:46
|
* @Date: 2023-10-21 11:50:46
|
||||||
* @LastEditTime: 2023-11-15 17:19:19
|
* @LastEditTime: 2024-03-21 10:49:24
|
||||||
* @LastEditors: DY
|
* @LastEditors: DY
|
||||||
* @Description:
|
* @Description:
|
||||||
*/
|
*/
|
||||||
@ -118,6 +118,24 @@ export function getCoreWOMaPage(query) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 获得工单预使用原料分页----根据产品id
|
||||||
|
export function getlistByProductId(query) {
|
||||||
|
return request({
|
||||||
|
url: '/base/material-product-bom-det/listByProductId',
|
||||||
|
method: 'get',
|
||||||
|
params: query
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 获得工单预使用原料分页----根据工艺流程
|
||||||
|
export function getlistByFlowId(query) {
|
||||||
|
return request({
|
||||||
|
url: '/extend/process-equ-material-bom-det/listByFlowId',
|
||||||
|
method: 'get',
|
||||||
|
params: query
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
// 获得预计用料信息分页
|
// 获得预计用料信息分页
|
||||||
export function getMaterialBomPage(query) {
|
export function getMaterialBomPage(query) {
|
||||||
return request({
|
return request({
|
||||||
@ -162,3 +180,12 @@ export function updateConCoreWOr(data) {
|
|||||||
data: data
|
data: data
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 修改分配产量----批量
|
||||||
|
export function updateBatchConCoreWOr(data) {
|
||||||
|
return request({
|
||||||
|
url: '/base/core-order-con-work-order/updateBatch',
|
||||||
|
method: 'put',
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
@ -94,7 +94,7 @@
|
|||||||
:show-file-list="false"
|
:show-file-list="false"
|
||||||
icon="el-icon-upload2"
|
icon="el-icon-upload2"
|
||||||
:disabled="disabled"
|
:disabled="disabled"
|
||||||
:before-upload="beforeUpload"
|
:before-upload="col.uploadTips ? beforeUploadPic : beforeUpload"
|
||||||
:on-success="
|
:on-success="
|
||||||
(response, file, fileList) => {
|
(response, file, fileList) => {
|
||||||
handleUploadSuccess(response, file, col.prop);
|
handleUploadSuccess(response, file, col.prop);
|
||||||
@ -110,7 +110,7 @@
|
|||||||
上传文件
|
上传文件
|
||||||
</el-button>
|
</el-button>
|
||||||
<div class="el-upload__tip" slot="tip" v-if="col.uploadTips">
|
<div class="el-upload__tip" slot="tip" v-if="col.uploadTips">
|
||||||
{{ col.uploadTips || '只能上传jpg/png文件, 大小不超过2MB' }}
|
{{ '只能上传jpg/png文件, 大小不超过2MB' }}
|
||||||
</div>
|
</div>
|
||||||
</el-upload>
|
</el-upload>
|
||||||
|
|
||||||
@ -416,6 +416,26 @@ export default {
|
|||||||
|
|
||||||
// 上传成功的特殊处理
|
// 上传成功的特殊处理
|
||||||
beforeUpload(file) {
|
beforeUpload(file) {
|
||||||
|
const checkFileSize = () => {
|
||||||
|
const isLt2M = file.size / 1024 / 1024 < 2;
|
||||||
|
if (!isLt2M) {
|
||||||
|
this.$modal.msgError('上传文件大小不能超过 2MB!');
|
||||||
|
}
|
||||||
|
return isLt2M;
|
||||||
|
};
|
||||||
|
// const checkFileType = () => {
|
||||||
|
// const isJPG =
|
||||||
|
// file.type === 'image/jpeg' ||
|
||||||
|
// file.type === 'image/png' ||
|
||||||
|
// file.type === 'image/jpg';
|
||||||
|
// return isJPG;
|
||||||
|
// };
|
||||||
|
// return checkFileSize() && checkFileType();
|
||||||
|
return checkFileSize();
|
||||||
|
},
|
||||||
|
|
||||||
|
// 上传成功的特殊处理----图片
|
||||||
|
beforeUploadPic(file) {
|
||||||
const checkFileSize = () => {
|
const checkFileSize = () => {
|
||||||
const isLt2M = file.size / 1024 / 1024 < 2;
|
const isLt2M = file.size / 1024 / 1024 < 2;
|
||||||
if (!isLt2M) {
|
if (!isLt2M) {
|
||||||
@ -428,6 +448,9 @@ export default {
|
|||||||
file.type === 'image/jpeg' ||
|
file.type === 'image/jpeg' ||
|
||||||
file.type === 'image/png' ||
|
file.type === 'image/png' ||
|
||||||
file.type === 'image/jpg';
|
file.type === 'image/jpg';
|
||||||
|
if (!isJPG) {
|
||||||
|
this.$modal.msgError('只能上传jpg/png文件!');
|
||||||
|
}
|
||||||
return isJPG;
|
return isJPG;
|
||||||
};
|
};
|
||||||
return checkFileSize() && checkFileType();
|
return checkFileSize() && checkFileType();
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2021-11-18 14:16:25
|
* @Date: 2021-11-18 14:16:25
|
||||||
* @LastEditors: DY
|
* @LastEditors: DY
|
||||||
* @LastEditTime: 2023-12-12 16:04:44
|
* @LastEditTime: 2024-03-20 16:20:39
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -130,6 +130,11 @@ export default {
|
|||||||
if (this.dataForm.id) {
|
if (this.dataForm.id) {
|
||||||
this.urlOptions.infoURL(id).then(response => {
|
this.urlOptions.infoURL(id).then(response => {
|
||||||
this.dataForm = response.data;
|
this.dataForm = response.data;
|
||||||
|
const tempPic = []
|
||||||
|
this.dataForm.files?.forEach(item => {
|
||||||
|
tempPic.push(item.fileUrl)
|
||||||
|
})
|
||||||
|
this.files = tempPic.join(',')
|
||||||
if (this.setData) {
|
if (this.setData) {
|
||||||
this.setDataForm()
|
this.setDataForm()
|
||||||
}
|
}
|
||||||
@ -150,8 +155,8 @@ export default {
|
|||||||
}
|
}
|
||||||
|
|
||||||
this.dataForm.files = []
|
this.dataForm.files = []
|
||||||
if (this.files.length > 0) {
|
if (this.files.split(',').length > 0) {
|
||||||
this.files.forEach(item => {
|
this.files.split(',').forEach(item => {
|
||||||
const temp = {
|
const temp = {
|
||||||
fileType: 1,
|
fileType: 1,
|
||||||
fileUrl: item
|
fileUrl: item
|
||||||
|
@ -387,6 +387,7 @@ export default {
|
|||||||
label: '设备图片',
|
label: '设备图片',
|
||||||
prop: 'files2',
|
prop: 'files2',
|
||||||
fileType: 1,
|
fileType: 1,
|
||||||
|
uploadTips: true
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
[{ input: true, label: '备注', prop: 'remark' }],
|
[{ input: true, label: '备注', prop: 'remark' }],
|
||||||
|
@ -161,7 +161,7 @@ export default {
|
|||||||
{
|
{
|
||||||
upload: true,
|
upload: true,
|
||||||
label: '上传资料',
|
label: '上传资料',
|
||||||
prop: 'files',
|
prop: 'files'
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
[{ input: true, label: '备注', prop: 'remark' }],
|
[{ input: true, label: '备注', prop: 'remark' }],
|
||||||
|
@ -186,8 +186,8 @@ export default {
|
|||||||
code: '',
|
code: '',
|
||||||
planProductId: '',
|
planProductId: '',
|
||||||
specifications: '',
|
specifications: '',
|
||||||
planStartTime: '',
|
planStartTime: undefined,
|
||||||
planFinishTime: '',
|
planFinishTime: undefined,
|
||||||
planAssignQuantity: 0,
|
planAssignQuantity: 0,
|
||||||
planQuantity: 0,
|
planQuantity: 0,
|
||||||
processFlowId: '',
|
processFlowId: '',
|
||||||
@ -248,7 +248,31 @@ export default {
|
|||||||
this.dataForm.materialMethod = 1
|
this.dataForm.materialMethod = 1
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
reset() {
|
||||||
|
this.dataForm = {
|
||||||
|
id: undefined,
|
||||||
|
workOrderId: '',
|
||||||
|
name: '',
|
||||||
|
code: '',
|
||||||
|
planProductId: '',
|
||||||
|
specifications: '',
|
||||||
|
planStartTime: undefined,
|
||||||
|
planFinishTime: undefined,
|
||||||
|
planAssignQuantity: 0,
|
||||||
|
planQuantity: 0,
|
||||||
|
processFlowId: '',
|
||||||
|
materialMethod: 1,
|
||||||
|
triggerOrigin: 1,
|
||||||
|
priority: '',
|
||||||
|
productLineIds: [],
|
||||||
|
type: '',
|
||||||
|
workers: '',
|
||||||
|
roomNameDict: '',
|
||||||
|
status: 1
|
||||||
|
}
|
||||||
|
},
|
||||||
init(id) {
|
init(id) {
|
||||||
|
this.reset();
|
||||||
this.dataForm.id = id || "";
|
this.dataForm.id = id || "";
|
||||||
this.visible = true;
|
this.visible = true;
|
||||||
if (this.urlOptions.getOption) {
|
if (this.urlOptions.getOption) {
|
||||||
@ -256,6 +280,7 @@ export default {
|
|||||||
}
|
}
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.$refs["dataForm"].resetFields();
|
this.$refs["dataForm"].resetFields();
|
||||||
|
console.log('222', this.dataForm)
|
||||||
this.planStartTime = ''
|
this.planStartTime = ''
|
||||||
this.planFinishTime = ''
|
this.planFinishTime = ''
|
||||||
if (this.dataForm.id) {
|
if (this.dataForm.id) {
|
||||||
@ -264,6 +289,12 @@ export default {
|
|||||||
if (this.dataForm.priority !== undefined) {
|
if (this.dataForm.priority !== undefined) {
|
||||||
this.dataForm.priority = String(this.dataForm.priority)
|
this.dataForm.priority = String(this.dataForm.priority)
|
||||||
}
|
}
|
||||||
|
if (this.dataForm.planStartTime === 0) {
|
||||||
|
this.dataForm.planStartTime = undefined
|
||||||
|
}
|
||||||
|
if (this.dataForm.planFinishTime === 0) {
|
||||||
|
this.dataForm.planFinishTime = undefined
|
||||||
|
}
|
||||||
if (this.dataForm.roomNameDict !== undefined) {
|
if (this.dataForm.roomNameDict !== undefined) {
|
||||||
this.dataForm.roomNameDict = String(this.dataForm.roomNameDict)
|
this.dataForm.roomNameDict = String(this.dataForm.roomNameDict)
|
||||||
}
|
}
|
||||||
|
@ -2,16 +2,19 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2021-11-18 14:16:25
|
* @Date: 2021-11-18 14:16:25
|
||||||
* @LastEditors: DY
|
* @LastEditors: DY
|
||||||
* @LastEditTime: 2024-03-15 15:34:58
|
* @LastEditTime: 2024-03-22 08:53:20
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
<el-drawer
|
<el-drawer
|
||||||
:visible.sync="visible"
|
:visible.sync="visible"
|
||||||
:show-close="false"
|
:show-close="false"
|
||||||
:wrapper-closable="false"
|
:wrapper-closable="true"
|
||||||
class="drawer"
|
class="drawer"
|
||||||
size="55%">
|
size="55%"
|
||||||
|
:before-close="beforeClose"
|
||||||
|
@closed="$emit('destroy')"
|
||||||
|
>
|
||||||
<small-title slot="title" :no-padding="true">
|
<small-title slot="title" :no-padding="true">
|
||||||
{{ '分配产量' }}
|
{{ '分配产量' }}
|
||||||
</small-title>
|
</small-title>
|
||||||
@ -52,60 +55,47 @@
|
|||||||
<el-date-picker
|
<el-date-picker
|
||||||
v-model="dataForm.finishProduceTime"
|
v-model="dataForm.finishProduceTime"
|
||||||
type="datetime"
|
type="datetime"
|
||||||
value-format="yyyy-MM-dd HH:mm:ss"
|
value-format="timestamp"
|
||||||
placeholder="选择日期时间" />
|
placeholder="选择实际生产完成时间" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-form>
|
</el-form>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="attr-list">
|
<div v-show="!isdetail" class="attr-list">
|
||||||
<!-- <el-button v-show="!isdetail" type="success" size="small" style="float: right" @click="addRow()">添加一行</el-button> -->
|
<!-- <el-button v-show="!isdetail" type="success" size="small" style="float: right" @click="addRow()">添加一行</el-button> -->
|
||||||
<el-table
|
<el-form ref="tableForm" :model="form" style="padding: 0">
|
||||||
:data="tableData"
|
<el-table
|
||||||
style="width: 100%">
|
ref="table"
|
||||||
<el-table-column type="index" label="序号" />
|
:data="form.tableData"
|
||||||
<el-table-column prop="orderName" label="订单名称" />
|
row-key="id"
|
||||||
<el-table-column prop="orderCode" label="订单编码" />
|
style="width: 100%">
|
||||||
<el-table-column prop="priority" label="优先级" />
|
<el-table-column type="index" label="序号" />
|
||||||
<el-table-column prop="planAssignmentQuantity" label="计划分配数量" >
|
<el-table-column prop="orderName" label="订单名称" />
|
||||||
<template slot-scope="scope">
|
<el-table-column prop="orderCode" label="订单编码" />
|
||||||
<el-input v-model="scope.row.planAssignmentQuantity" :disabled="scope.row.isallocation"></el-input>
|
<el-table-column prop="priority" label="优先级" />
|
||||||
</template>
|
<el-table-column prop="planAssignmentQuantity" label="计划分配数量" >
|
||||||
</el-table-column>
|
<template slot-scope="scope">
|
||||||
<el-table-column prop="actualAssignmentQuantity" label="实际分配数量">
|
<el-form-item prop="planAssignmentQuantity">
|
||||||
<template slot-scope="scope">
|
<el-input v-model.number="scope.row.planAssignmentQuantity" :disabled="scope.row.isallocation"></el-input>
|
||||||
<el-input v-model="scope.row.actualAssignmentQuantity" :disabled="scope.row.isallocation"></el-input>
|
</el-form-item>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="操作">
|
<el-table-column label="*实际分配数量">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-button type="text" size="small" @click="saveData(scope.row)">保存</el-button>
|
<el-form-item :prop="`tableData.${scope.$index}.actualAssignmentQuantity`" :rules="[{ required: true, message: '实际分配数量不能为空', trigger: 'blur' }]">
|
||||||
<!-- <el-tooltip v-if="!scope.row.isEdit" placement="top" content="编辑">
|
<el-input v-model.number="scope.row.actualAssignmentQuantity" :disabled="scope.row.isallocation"></el-input>
|
||||||
<el-button
|
</el-form-item>
|
||||||
type="text"
|
</template>
|
||||||
:style="{color:'#0B58FF'}"
|
</el-table-column>
|
||||||
size="mini"
|
<!-- <el-table-column label="操作">
|
||||||
@click="edit(scope.row)"
|
<template slot-scope="scope">
|
||||||
>
|
<el-button type="text" size="small" @click="saveData(scope.row)">保存</el-button>
|
||||||
<svg-icon style="width: 18px; height: 18px" class="item-icon" icon-class="edit" />
|
</template>
|
||||||
</el-button>
|
</el-table-column> -->
|
||||||
</el-tooltip> -->
|
</el-table>
|
||||||
|
</el-form>
|
||||||
<!-- <el-tooltip placement="top" content="删除">
|
|
||||||
<el-button
|
|
||||||
type="text"
|
|
||||||
:style="{color:'#FF5454'}"
|
|
||||||
size="mini"
|
|
||||||
@click="deleteDetail(scope.row)"
|
|
||||||
>
|
|
||||||
<svg-icon style="width: 18px; height: 18px" class="item-icon" icon-class="table_delete" />
|
|
||||||
</el-button>
|
|
||||||
</el-tooltip> -->
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
|
||||||
</el-table>
|
|
||||||
<pagination
|
<pagination
|
||||||
v-show="listQuery.total > 0"
|
v-show="listQuery.total > 0"
|
||||||
:total="listQuery.total"
|
:total="listQuery.total"
|
||||||
@ -134,7 +124,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import basicAdd from '../../core/mixins/basic-add';
|
import basicAdd from '../../core/mixins/basic-add';
|
||||||
import { getConOrderList, updateConCoreWOr, getCoreWO, statusChange } from '@/api/base/coreWorkOrder';
|
import { getConOrderList, updateConCoreWOr, updateBatchConCoreWOr, getCoreWO, statusChange } from '@/api/base/coreWorkOrder';
|
||||||
import SmallTitle from '../material/SmallTitle';
|
import SmallTitle from '../material/SmallTitle';
|
||||||
// import { parseTime } from '../../core/mixins/code-filter';
|
// import { parseTime } from '../../core/mixins/code-filter';
|
||||||
// import attrAdd from './attr-add';
|
// import attrAdd from './attr-add';
|
||||||
@ -158,6 +148,10 @@ export default {
|
|||||||
code: undefined,
|
code: undefined,
|
||||||
productId: '',
|
productId: '',
|
||||||
remark: undefined,
|
remark: undefined,
|
||||||
|
|
||||||
|
},
|
||||||
|
form: {
|
||||||
|
tableData: []
|
||||||
},
|
},
|
||||||
productList: [],
|
productList: [],
|
||||||
materialAttrList: [],
|
materialAttrList: [],
|
||||||
@ -174,26 +168,77 @@ export default {
|
|||||||
},
|
},
|
||||||
mounted() {},
|
mounted() {},
|
||||||
methods: {
|
methods: {
|
||||||
|
beforeClose(done) {
|
||||||
|
// if (this.mode.includes('edit')) {
|
||||||
|
this.$confirm('确认关闭?')
|
||||||
|
.then(_ => {
|
||||||
|
done();
|
||||||
|
})
|
||||||
|
.catch(_ => {});
|
||||||
|
},
|
||||||
// 表单提交
|
// 表单提交
|
||||||
dataFormSubmit() {
|
dataFormSubmit() {
|
||||||
|
// console.log('嗨害嗨', this.$refs['table'])
|
||||||
|
console.log('nihc ', this.form.tableData)
|
||||||
|
// this.$refs['tableForm'].validate((valid) => {
|
||||||
|
// if (valid) {
|
||||||
|
// alert('提交成功!');
|
||||||
|
// } else {
|
||||||
|
// alert('表单验证失败!');
|
||||||
|
// return false;
|
||||||
|
// }
|
||||||
|
// });
|
||||||
this.$refs["dataForm"].validate((valid) => {
|
this.$refs["dataForm"].validate((valid) => {
|
||||||
if (!valid) {
|
if (!valid) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
this.$refs['tableForm'].validate((valid) => {
|
||||||
|
if (!valid) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
// 修改的提交
|
||||||
|
console.log('aaaaaaa', this.form.tableData)
|
||||||
|
// 判断分配数量
|
||||||
|
let num = 0
|
||||||
|
const tempList = this.form.tableData.map((item) => {
|
||||||
|
item.workOrderId = this.dataForm.id
|
||||||
|
num += item.actualAssignmentQuantity
|
||||||
|
return item
|
||||||
|
})
|
||||||
|
if (num <= this.dataForm.actualQuantity) {
|
||||||
|
if (this.dataForm.id) {
|
||||||
|
statusChange({
|
||||||
|
id: this.dataForm.id,
|
||||||
|
status: 4,
|
||||||
|
finishProduceTime: this.dataForm.finishProduceTime,
|
||||||
|
actualQuantity: this.dataForm.actualQuantity
|
||||||
|
}).then(response => {
|
||||||
|
this.$modal.msgSuccess("操作成功!工单状态稍后将会更新!");
|
||||||
|
this.saveData(tempList)
|
||||||
|
this.visible = false;
|
||||||
|
this.$emit("refreshDataList");
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
this.$message.error('实际分配数量超过实际生产数量!')
|
||||||
|
}
|
||||||
|
console.log('2111', num, tempList)
|
||||||
|
});
|
||||||
// 修改的提交
|
// 修改的提交
|
||||||
if (this.dataForm.id) {
|
// if (this.dataForm.id) {
|
||||||
statusChange({
|
// statusChange({
|
||||||
id: this.dataForm.id,
|
// id: this.dataForm.id,
|
||||||
status: 4,
|
// status: 4,
|
||||||
finishProduceTime: this.dataForm.finishProduceTime,
|
// finishProduceTime: this.dataForm.finishProduceTime,
|
||||||
actualQuantity: this.dataForm.actualQuantity
|
// actualQuantity: this.dataForm.actualQuantity
|
||||||
}).then(response => {
|
// }).then(response => {
|
||||||
this.$modal.msgSuccess("操作成功!工单状态稍后将会更新!");
|
// this.$modal.msgSuccess("操作成功!工单状态稍后将会更新!");
|
||||||
this.visible = false;
|
// this.visible = false;
|
||||||
this.$emit("refreshDataList");
|
// this.$emit("refreshDataList");
|
||||||
});
|
// });
|
||||||
return;
|
// return;
|
||||||
}
|
// }
|
||||||
// 添加的提交
|
// 添加的提交
|
||||||
// this.urlOptions.createURL(this.dataForm).then(response => {
|
// this.urlOptions.createURL(this.dataForm).then(response => {
|
||||||
// this.$modal.msgSuccess("新增成功");
|
// this.$modal.msgSuccess("新增成功");
|
||||||
@ -209,30 +254,14 @@ export default {
|
|||||||
edit(row) {
|
edit(row) {
|
||||||
row.isEdit = true
|
row.isEdit = true
|
||||||
},
|
},
|
||||||
saveData(row) {
|
saveData(list) {
|
||||||
if (row.actualAssignmentQuantity) {
|
console.log('你好', list)
|
||||||
if (row.id) {
|
// 修改的提交
|
||||||
// updateMaterialPBDet({
|
updateBatchConCoreWOr(list).then((response) => {
|
||||||
// ...row
|
this.$modal.msgSuccess('分配成功');
|
||||||
// }).then((response) => {
|
// this.visible = false;
|
||||||
// this.$modal.msgSuccess('修改成功');
|
this.getList();
|
||||||
// // this.visible = false;
|
});
|
||||||
// this.getList();
|
|
||||||
// });
|
|
||||||
// return;
|
|
||||||
}
|
|
||||||
// 修改的提交
|
|
||||||
updateConCoreWOr({
|
|
||||||
...row,
|
|
||||||
workOrderId: this.dataForm.id
|
|
||||||
}).then((response) => {
|
|
||||||
this.$modal.msgSuccess('分配成功');
|
|
||||||
// this.visible = false;
|
|
||||||
this.getList();
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
this.$message.warning('请填写实际分配数量');
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
getList() {
|
getList() {
|
||||||
// 获取工单分配详细列表
|
// 获取工单分配详细列表
|
||||||
@ -245,6 +274,7 @@ export default {
|
|||||||
item.isallocation = item.actualAssignmentQuantity ? true : false
|
item.isallocation = item.actualAssignmentQuantity ? true : false
|
||||||
return item
|
return item
|
||||||
});
|
});
|
||||||
|
this.$set(this.form, 'tableData', this.tableData)
|
||||||
this.listQuery.total = response.data.length;
|
this.listQuery.total = response.data.length;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2021-11-18 14:16:25
|
* @Date: 2021-11-18 14:16:25
|
||||||
* @LastEditors: DY
|
* @LastEditors: DY
|
||||||
* @LastEditTime: 2024-03-15 15:40:24
|
* @LastEditTime: 2024-03-21 16:52:46
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -16,7 +16,13 @@
|
|||||||
<!-- <small-title slot="title" :no-padding="true">
|
<!-- <small-title slot="title" :no-padding="true">
|
||||||
{{ isdetail ? '详情' : !dataForm.id ? '新增' : '编辑' }}
|
{{ isdetail ? '详情' : !dataForm.id ? '新增' : '编辑' }}
|
||||||
</small-title> -->
|
</small-title> -->
|
||||||
<div v-show="workOrderButton.length" class="buttonDiv">
|
<div v-show="workOrderButton.length" style="position: relative;padding-right: 90px;">
|
||||||
|
<topTabVue :orderIdList='workOrderButton' :orderId="workorderId" @emitFun='toggleName' />
|
||||||
|
<el-button type="primary" plain size="small"
|
||||||
|
style="position: absolute;right: 0; top: 0;height: 48px;font-size: 14px;" @click="goback"><svg-icon
|
||||||
|
icon-class="return" /> 返回</el-button>
|
||||||
|
</div>
|
||||||
|
<!-- <div v-show="workOrderButton.length" class="buttonDiv">
|
||||||
<div style="display: flex; width: 100%;">
|
<div style="display: flex; width: 100%;">
|
||||||
<el-button v-show="showScroll" type="text" style="width: 30px; background: white; margin-right: 8px" @click="scrollLeft" icon="el-icon-caret-left"></el-button>
|
<el-button v-show="showScroll" type="text" style="width: 30px; background: white; margin-right: 8px" @click="scrollLeft" icon="el-icon-caret-left"></el-button>
|
||||||
<div ref="content" class="scrollDiv">
|
<div ref="content" class="scrollDiv">
|
||||||
@ -27,7 +33,7 @@
|
|||||||
<svg-icon icon-class="return"/>返回
|
<svg-icon icon-class="return"/>返回
|
||||||
</el-button>
|
</el-button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div> -->
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<div class="boxTitle">
|
<div class="boxTitle">
|
||||||
@ -157,7 +163,7 @@
|
|||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="3">
|
<el-col :span="3">
|
||||||
<div class="blodTip">废片数量</div>
|
<div class="blodTip">废片数量</div>
|
||||||
<div class="lightTip">{{ dataForm.nokQuantity }}</div>
|
<div class="lightTip">{{ dataForm.nokNum }}</div>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="3">
|
<el-col :span="3">
|
||||||
<div class="blodTip">检测瑕疵数</div>
|
<div class="blodTip">检测瑕疵数</div>
|
||||||
@ -222,12 +228,13 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
// import basicAdd from '../../core/mixins/basic-add';
|
// import basicAdd from '../../core/mixins/basic-add';
|
||||||
import { getCoreWO, getCoreWOMaPage, getConOrderList, getCoreWOListById } from "@/api/base/coreWorkOrder";
|
import { getCoreWO, getCoreWOMaPage, getlistByProductId, getlistByFlowId, getConOrderList, getCoreWOListById } from "@/api/base/coreWorkOrder";
|
||||||
// import { orderList } from "@/api/base/orderManage";
|
// import { orderList } from "@/api/base/orderManage";
|
||||||
import { getProcessFlowList } from '@/api/base/orderManage'
|
import { getProcessFlowList } from '@/api/base/orderManage'
|
||||||
import SmallTitle from './SmallTitle';
|
import SmallTitle from './SmallTitle';
|
||||||
import { publicFormatter } from "@/utils/dict";
|
import { publicFormatter } from "@/utils/dict";
|
||||||
import { parseTime } from '@/utils/ruoyi'
|
import { parseTime } from '@/utils/ruoyi'
|
||||||
|
import topTabVue from '../../order/base/orderManage/components/topTab.vue';
|
||||||
|
|
||||||
const tableBtn = [
|
const tableBtn = [
|
||||||
{
|
{
|
||||||
@ -265,9 +272,9 @@ const tableProps = [
|
|||||||
|
|
||||||
const tableProps1 = [
|
const tableProps1 = [
|
||||||
{
|
{
|
||||||
prop: 'material',
|
prop: 'materialName',
|
||||||
label: '物料名称',
|
label: '物料名称'
|
||||||
filter: publicFormatter('material')
|
// filter: publicFormatter('material')
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'unit',
|
prop: 'unit',
|
||||||
@ -285,7 +292,7 @@ const tableProps1 = [
|
|||||||
];
|
];
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: { SmallTitle },
|
components: { SmallTitle, topTabVue },
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
tableBtn,
|
tableBtn,
|
||||||
@ -308,6 +315,7 @@ export default {
|
|||||||
dataForm: {},
|
dataForm: {},
|
||||||
orderList: [],
|
orderList: [],
|
||||||
materialList: [],
|
materialList: [],
|
||||||
|
workorderId: '',
|
||||||
// orderArray: [],
|
// orderArray: [],
|
||||||
visible: false,
|
visible: false,
|
||||||
isdetail: false,
|
isdetail: false,
|
||||||
@ -331,13 +339,15 @@ export default {
|
|||||||
name: work.name
|
name: work.name
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
const contentRef = this.$refs.content
|
this.workorderId = this.workOrderButton[0].id
|
||||||
if (contentRef.scrollWidth > contentRef.clientWidth) {
|
console.log('wawa ew', this.workorderId, this.workOrderButton)
|
||||||
this.showScroll = true
|
// const contentRef = this.$refs.content
|
||||||
} else {
|
// if (contentRef.scrollWidth > contentRef.clientWidth) {
|
||||||
this.showScroll = false
|
// this.showScroll = true
|
||||||
}
|
// } else {
|
||||||
console.log(contentRef.scrollWidth, contentRef.clientWidth)
|
// this.showScroll = false
|
||||||
|
// }
|
||||||
|
// console.log(contentRef.scrollWidth, contentRef.clientWidth)
|
||||||
this.init(this.workOrderButton[0].id, true)
|
this.init(this.workOrderButton[0].id, true)
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
@ -345,6 +355,11 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
// 切换tab获取订单详情
|
||||||
|
toggleName(val) {
|
||||||
|
this.workorderId = val
|
||||||
|
this.init(val, true)
|
||||||
|
},
|
||||||
scrolRight() {
|
scrolRight() {
|
||||||
// let contentRef = this.$refs.content
|
// let contentRef = this.$refs.content
|
||||||
// console.log('你好啊啊', contentRef.scrollWidth, contentRef.clientWidth)
|
// console.log('你好啊啊', contentRef.scrollWidth, contentRef.clientWidth)
|
||||||
@ -442,17 +457,38 @@ export default {
|
|||||||
// 获取预使用原料列表
|
// 获取预使用原料列表
|
||||||
console.log()
|
console.log()
|
||||||
if (this.dataForm.id) {
|
if (this.dataForm.id) {
|
||||||
getCoreWOMaPage({
|
if (this.dataForm.materialMethod === 1) {
|
||||||
workOrderId: this.dataForm.id,
|
// 产品
|
||||||
pageNo: 1,
|
getlistByProductId({
|
||||||
pageSize: 100
|
id: this.dataForm.planProductId
|
||||||
}).then((response) => {
|
}).then((response) => {
|
||||||
this.materialList = response.data.records.map((item) => {
|
this.materialList = response.data.map((item) => {
|
||||||
item.remaining = item?.num * this.dataForm.remainingQuantity || 0
|
item.remaining = item?.num * this.dataForm.remainingQuantity || 0
|
||||||
return item
|
return item
|
||||||
|
});
|
||||||
});
|
});
|
||||||
// this.listQuery.total = response.data.length;
|
} else {
|
||||||
});
|
// 工艺流程
|
||||||
|
getlistByFlowId({
|
||||||
|
id: this.dataForm.processFlowId
|
||||||
|
}).then((response) => {
|
||||||
|
this.materialList = response.data.map((item) => {
|
||||||
|
item.remaining = item?.num * this.dataForm.remainingQuantity || 0
|
||||||
|
return item
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
// getCoreWOMaPage({
|
||||||
|
// workOrderId: this.dataForm.id,
|
||||||
|
// pageNo: 1,
|
||||||
|
// pageSize: 100
|
||||||
|
// }).then((response) => {
|
||||||
|
// this.materialList = response.data.records.map((item) => {
|
||||||
|
// item.remaining = item?.num * this.dataForm.remainingQuantity || 0
|
||||||
|
// return item
|
||||||
|
// });
|
||||||
|
// // this.listQuery.total = response.data.length;
|
||||||
|
// });
|
||||||
}
|
}
|
||||||
// 获取订单相关信息
|
// 获取订单相关信息
|
||||||
// orderList({
|
// orderList({
|
||||||
|
@ -43,7 +43,8 @@
|
|||||||
<allocation
|
<allocation
|
||||||
v-if="allocationVisible"
|
v-if="allocationVisible"
|
||||||
ref="allocation"
|
ref="allocation"
|
||||||
@refreshDataList="getDataList" />
|
@refreshDataList="searchStatus"
|
||||||
|
@destroy="allocationVisible = false" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -353,6 +354,11 @@ export default {
|
|||||||
this.getDataList()
|
this.getDataList()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
searchStatus() {
|
||||||
|
setTimeout(() => {
|
||||||
|
this.getDataList()
|
||||||
|
}, 20000)
|
||||||
|
},
|
||||||
getWorkOrder() {
|
getWorkOrder() {
|
||||||
getCoreWOList().then(res => {
|
getCoreWOList().then(res => {
|
||||||
this.formConfig[0].selectOptions = res.data.map(item => {
|
this.formConfig[0].selectOptions = res.data.map(item => {
|
||||||
@ -444,7 +450,7 @@ export default {
|
|||||||
type: 'success',
|
type: 'success',
|
||||||
duration: 1500,
|
duration: 1500,
|
||||||
onClose: () => {
|
onClose: () => {
|
||||||
this.getDataList();
|
this.searchStatus();
|
||||||
// 分配产量
|
// 分配产量
|
||||||
// if (param.status === 4) {
|
// if (param.status === 4) {
|
||||||
// this.allocationOrder(param);
|
// this.allocationOrder(param);
|
||||||
@ -478,7 +484,7 @@ export default {
|
|||||||
// 有绑定订单带id
|
// 有绑定订单带id
|
||||||
this.$refs.allocation.init(val.id);
|
this.$refs.allocation.init(val.id);
|
||||||
} else {
|
} else {
|
||||||
this.$refs.allocation.init();
|
this.$refs.allocation.init(val.id, true);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
|
@ -2,14 +2,15 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2021-11-18 14:16:25
|
* @Date: 2021-11-18 14:16:25
|
||||||
* @LastEditors: DY
|
* @LastEditors: DY
|
||||||
* @LastEditTime: 2024-02-21 09:41:39
|
* @LastEditTime: 2024-03-21 15:21:32
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
<el-drawer
|
<el-drawer
|
||||||
:visible.sync="visible"
|
:visible.sync="visible"
|
||||||
:show-close="false"
|
:show-close="false"
|
||||||
:wrapper-closable="isdetail"
|
:wrapper-closable="true"
|
||||||
|
:before-close="beforeClose"
|
||||||
class="drawer"
|
class="drawer"
|
||||||
size="60%">
|
size="60%">
|
||||||
<small-title slot="title" :no-padding="true">
|
<small-title slot="title" :no-padding="true">
|
||||||
@ -256,6 +257,17 @@ export default {
|
|||||||
this.getDict()
|
this.getDict()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
beforeClose(done) {
|
||||||
|
if (!this.isdetail) {
|
||||||
|
this.$confirm('确认关闭?')
|
||||||
|
.then(_ => {
|
||||||
|
done();
|
||||||
|
})
|
||||||
|
.catch(_ => {});
|
||||||
|
} else {
|
||||||
|
done()
|
||||||
|
}
|
||||||
|
},
|
||||||
async getDict() {
|
async getDict() {
|
||||||
// 物料类型列表
|
// 物料类型列表
|
||||||
// const res = await listData({
|
// const res = await listData({
|
||||||
|
@ -2,14 +2,15 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2021-11-18 14:16:25
|
* @Date: 2021-11-18 14:16:25
|
||||||
* @LastEditors: DY
|
* @LastEditors: DY
|
||||||
* @LastEditTime: 2023-11-27 19:50:36
|
* @LastEditTime: 2024-03-21 14:39:52
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
<el-drawer
|
<el-drawer
|
||||||
:visible.sync="visible"
|
:visible.sync="visible"
|
||||||
:show-close="false"
|
:show-close="false"
|
||||||
:wrapper-closable="isdetail"
|
:wrapper-closable="true"
|
||||||
|
:before-close="beforeClose"
|
||||||
class="drawer"
|
class="drawer"
|
||||||
size="70%">
|
size="70%">
|
||||||
<small-title slot="title" :no-padding="true">
|
<small-title slot="title" :no-padding="true">
|
||||||
@ -196,6 +197,17 @@ export default {
|
|||||||
this.getDict()
|
this.getDict()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
beforeClose(done) {
|
||||||
|
if (!this.isdetail) {
|
||||||
|
this.$confirm('确认关闭?')
|
||||||
|
.then(_ => {
|
||||||
|
done();
|
||||||
|
})
|
||||||
|
.catch(_ => {});
|
||||||
|
} else {
|
||||||
|
done()
|
||||||
|
}
|
||||||
|
},
|
||||||
handleClick(raw) {
|
handleClick(raw) {
|
||||||
if (raw.type === 'delete') {
|
if (raw.type === 'delete') {
|
||||||
this.deleteDetail(raw.data);
|
this.deleteDetail(raw.data);
|
||||||
@ -246,7 +258,7 @@ export default {
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
initData() {
|
initData() {
|
||||||
// this.materialAttrList.splice(0);
|
this.tableData.splice(0);
|
||||||
this.listQuery.total = 0;
|
this.listQuery.total = 0;
|
||||||
},
|
},
|
||||||
deleteDetail(raw) {
|
deleteDetail(raw) {
|
||||||
@ -284,18 +296,18 @@ export default {
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
// 构造一行
|
// 构造一行
|
||||||
addRow() {
|
// addRow() {
|
||||||
const row = {
|
// const row = {
|
||||||
bomId: this.dataForm.id,
|
// bomId: this.dataForm.id,
|
||||||
materialId: '',
|
// materialId: '',
|
||||||
num: 0,
|
// num: 0,
|
||||||
materialCode: undefined,
|
// materialCode: undefined,
|
||||||
unit: undefined,
|
// unit: undefined,
|
||||||
remark: '',
|
// remark: '',
|
||||||
isEdit: true
|
// isEdit: true
|
||||||
}
|
// }
|
||||||
this.tableData.push(row)
|
// this.tableData.push(row)
|
||||||
},
|
// },
|
||||||
init(id, isdetail) {
|
init(id, isdetail) {
|
||||||
this.initData();
|
this.initData();
|
||||||
this.isdetail = isdetail || false;
|
this.isdetail = isdetail || false;
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
:table-props="tableProps"
|
:table-props="tableProps"
|
||||||
:table-data="tableData"
|
:table-data="tableData"
|
||||||
@emitFun="handleEmitFun"
|
@emitFun="handleEmitFun"
|
||||||
|
:max-height="tableH"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -45,6 +46,7 @@ export default {
|
|||||||
arr: [],
|
arr: [],
|
||||||
spanArr: [],
|
spanArr: [],
|
||||||
timeList: [],
|
timeList: [],
|
||||||
|
tableH: this.tableHeight(240),
|
||||||
tableData: [],
|
tableData: [],
|
||||||
tableProps: [],
|
tableProps: [],
|
||||||
spanInfo: {},
|
spanInfo: {},
|
||||||
@ -54,6 +56,9 @@ export default {
|
|||||||
},
|
},
|
||||||
computed: {},
|
computed: {},
|
||||||
mounted() {
|
mounted() {
|
||||||
|
window.addEventListener('resize', () => {
|
||||||
|
this.tableH = this.tableHeight(240)
|
||||||
|
})
|
||||||
this.getList();
|
this.getList();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
@ -148,6 +153,9 @@ export default {
|
|||||||
lineData['spec'] = Array.from(new Set(specs)).join(',')
|
lineData['spec'] = Array.from(new Set(specs)).join(',')
|
||||||
this.tableData.push(lineData)
|
this.tableData.push(lineData)
|
||||||
})
|
})
|
||||||
|
this.tableData.forEach((item, index) => {
|
||||||
|
item._index = index + 1
|
||||||
|
})
|
||||||
console.log('打印', this.tableData)
|
console.log('打印', this.tableData)
|
||||||
// this.setRowSpan(sectionArr)
|
// this.setRowSpan(sectionArr)
|
||||||
// console.log('工段名称列表', sectionArr)
|
// console.log('工段名称列表', sectionArr)
|
||||||
@ -176,22 +184,26 @@ export default {
|
|||||||
console.log('看看数据', res)
|
console.log('看看数据', res)
|
||||||
this.ResData = res.data
|
this.ResData = res.data
|
||||||
this.arr = [
|
this.arr = [
|
||||||
|
{
|
||||||
|
prop: '_index',
|
||||||
|
label: '序号'
|
||||||
|
},
|
||||||
{
|
{
|
||||||
prop: 'proLineName',
|
prop: 'proLineName',
|
||||||
label: '生产线',
|
label: '生产线',
|
||||||
fixed: 'left',
|
// fixed: 'left',
|
||||||
'show-overflow-tooltip': true
|
'show-overflow-tooltip': true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'workOrderName',
|
prop: 'workOrderName',
|
||||||
label: '当前工单',
|
label: '当前工单',
|
||||||
fixed: 'left',
|
// fixed: 'left',
|
||||||
'show-overflow-tooltip': true
|
'show-overflow-tooltip': true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'spec',
|
prop: 'spec',
|
||||||
label: '产品规格',
|
label: '产品规格',
|
||||||
fixed: 'left',
|
// fixed: 'left',
|
||||||
'show-overflow-tooltip': true
|
'show-overflow-tooltip': true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -104,24 +104,24 @@ export default {
|
|||||||
{ name: '故障时长', value: 580 },
|
{ name: '故障时长', value: 580 },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
// {
|
||||||
// 内环
|
// // 内环
|
||||||
name: '',
|
// name: '',
|
||||||
type: 'pie',
|
// type: 'pie',
|
||||||
center: ['50%', '48%'],
|
// center: ['50%', '48%'],
|
||||||
radius: ['60%', '75%'],
|
// radius: ['60%', '75%'],
|
||||||
itemStyle: {
|
// itemStyle: {
|
||||||
borderRadius: 10,
|
// borderRadius: 10,
|
||||||
},
|
// },
|
||||||
label: {
|
// label: {
|
||||||
show: false,
|
// show: false,
|
||||||
},
|
// },
|
||||||
data: [
|
// data: [
|
||||||
//<=========
|
// //<=========
|
||||||
{ name: '总', value: 3000 },
|
// { name: '总', value: 3000 },
|
||||||
{ name: '', value: 1400 },
|
// { name: '', value: 1400 },
|
||||||
],
|
// ],
|
||||||
},
|
// },
|
||||||
// {
|
// {
|
||||||
// name: this.value.equipmentName || 'Default',
|
// name: this.value.equipmentName || 'Default',
|
||||||
// type: 'pie',
|
// type: 'pie',
|
||||||
@ -195,22 +195,22 @@ export default {
|
|||||||
this.config.title.text = lineName;
|
this.config.title.text = lineName;
|
||||||
this.config.title.subtext = equipmentName;
|
this.config.title.subtext = equipmentName;
|
||||||
this.config.series[0].data = [
|
this.config.series[0].data = [
|
||||||
{ name: '工作时长', value: workTime },
|
{ name: '有效时长', value: workTime },
|
||||||
{ name: '停机时长', value: stopTime },
|
{ name: '关机时长', value: stopTime },
|
||||||
{ name: '故障时长', value: downTime },
|
{ name: '中断时长', value: downTime }
|
||||||
];
|
|
||||||
this.config.series[1].data = [
|
|
||||||
{ name: '速度开动率', value: peEfficiency },
|
|
||||||
{ name: '', value: 100 },
|
|
||||||
// { name: '速度开动率', value: peEfficiency },
|
|
||||||
// { name: '', value: Math.ceil(peEfficiency) - peEfficiency },
|
|
||||||
];
|
];
|
||||||
|
// this.config.series[1].data = [
|
||||||
|
// { name: '速度开动率', value: peEfficiency },
|
||||||
|
// // { name: '', value: 100 },
|
||||||
|
// // { name: '速度开动率', value: peEfficiency },
|
||||||
|
// // { name: '', value: Math.ceil(peEfficiency) - peEfficiency },
|
||||||
|
// ];
|
||||||
//
|
//
|
||||||
this.textData = {
|
this.textData = {
|
||||||
workTime: +workTime.toFixed(2),
|
workTime: +workTime?.toFixed(2),
|
||||||
stopTime: +stopTime.toFixed(2),
|
stopTime: +stopTime?.toFixed(2),
|
||||||
downTime: +downTime.toFixed(2),
|
downTime: +downTime?.toFixed(2),
|
||||||
peEfficiency: +peEfficiency.toFixed(2),
|
// peEfficiency: +peEfficiency?.toFixed(2),
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -26,7 +26,8 @@
|
|||||||
:page="queryParams.pageNo"
|
:page="queryParams.pageNo"
|
||||||
:limit="queryParams.pageSize"
|
:limit="queryParams.pageSize"
|
||||||
:table-data="list"
|
:table-data="list"
|
||||||
@emitFun="handleEmitFun"></base-table>
|
@emitFun="handleEmitFun"
|
||||||
|
:max-height="tableH"></base-table>
|
||||||
</el-tab-pane>
|
</el-tab-pane>
|
||||||
<el-tab-pane :label="'\u3000柱状图\u3000'" name="graph">
|
<el-tab-pane :label="'\u3000柱状图\u3000'" name="graph">
|
||||||
<div
|
<div
|
||||||
@ -57,6 +58,7 @@ export default {
|
|||||||
const [y, m, d] = [now.getFullYear(), now.getMonth(), now.getDate()];
|
const [y, m, d] = [now.getFullYear(), now.getMonth(), now.getDate()];
|
||||||
return {
|
return {
|
||||||
dialogVisible: false,
|
dialogVisible: false,
|
||||||
|
tableH: this.tableHeight(260),
|
||||||
urls: {
|
urls: {
|
||||||
page: '/analysis/equipment-analysis/quality',
|
page: '/analysis/equipment-analysis/quality',
|
||||||
},
|
},
|
||||||
@ -155,12 +157,12 @@ export default {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
// width: 160,
|
// width: 160,
|
||||||
prop: 'inQuantity',
|
prop: 'totalQuantity',
|
||||||
label: '加工数量',
|
label: '加工数量',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// width: 160,
|
// width: 160,
|
||||||
prop: 'outQuantity',
|
prop: 'okQuantity',
|
||||||
label: '合格数量',
|
label: '合格数量',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -252,6 +254,9 @@ export default {
|
|||||||
this.fillProductOptions();
|
this.fillProductOptions();
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
|
window.addEventListener('resize', () => {
|
||||||
|
this.tableH = this.tableHeight(260)
|
||||||
|
})
|
||||||
this.$refs['search-bar'].headBtnClick('search');
|
this.$refs['search-bar'].headBtnClick('search');
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2021-11-18 14:16:25
|
* @Date: 2021-11-18 14:16:25
|
||||||
* @LastEditors: DY
|
* @LastEditors: DY
|
||||||
* @LastEditTime: 2024-03-18 15:47:20
|
* @LastEditTime: 2024-03-20 17:58:29
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -36,7 +36,8 @@
|
|||||||
<el-select
|
<el-select
|
||||||
v-model="dataForm.departmentId"
|
v-model="dataForm.departmentId"
|
||||||
:disabled="isdetail"
|
:disabled="isdetail"
|
||||||
:placeholder="`请选择部门`">
|
:placeholder="`请选择部门`"
|
||||||
|
style="width: 100%">
|
||||||
<el-option
|
<el-option
|
||||||
v-for="opt in departmentOptions"
|
v-for="opt in departmentOptions"
|
||||||
:key="opt.id"
|
:key="opt.id"
|
||||||
@ -90,33 +91,32 @@
|
|||||||
type="datetime"
|
type="datetime"
|
||||||
:disabled="isdetail"
|
:disabled="isdetail"
|
||||||
placeholder="请选择巡检时间"
|
placeholder="请选择巡检时间"
|
||||||
value-format="timestamp"></el-date-picker>
|
value-format="timestamp"
|
||||||
|
style="width: 100%" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-form>
|
</el-form>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="attr-list" v-if="idAttrShow">
|
<div v-if="idAttrShow">
|
||||||
<small-title
|
<small-title>
|
||||||
style="margin: 16px 0; padding-left: 8px"
|
|
||||||
:no-padding="true">
|
|
||||||
巡检内容
|
巡检内容
|
||||||
</small-title>
|
</small-title>
|
||||||
|
|
||||||
<div v-if="!isdetail">
|
<div v-if="!isdetail" style="display: flex">
|
||||||
<div>
|
<SearchBar
|
||||||
<SearchBar
|
:formConfigs="searchBarFormConfig"
|
||||||
:formConfigs="searchBarFormConfig"
|
ref="attr-search-bar"
|
||||||
ref="attr-search-bar"
|
@headBtnClick="handleSearchBarBtnClick" />
|
||||||
@headBtnClick="handleSearchBarBtnClick" />
|
<!-- <div class="action_btn"> -->
|
||||||
</div>
|
<el-button type="text" class="action_btn" @click="addNew()">
|
||||||
<!-- <template>
|
<span style="display: inline-block;">
|
||||||
<span style="display: inline-block;" @click="addNew()">
|
|
||||||
<svg-icon style="width: 14px; height: 14px" class="item-icon" icon-class="table_add" />
|
<svg-icon style="width: 14px; height: 14px" class="item-icon" icon-class="table_add" />
|
||||||
<span class="add">添加</span>
|
<span class="add">添加内容</span>
|
||||||
</span>
|
</span>
|
||||||
</template> -->
|
</el-button>
|
||||||
|
<!-- </div> -->
|
||||||
</div>
|
</div>
|
||||||
<base-table
|
<base-table
|
||||||
:table-props="tableProps"
|
:table-props="tableProps"
|
||||||
@ -229,14 +229,14 @@ export default {
|
|||||||
btnName: '查询',
|
btnName: '查询',
|
||||||
name: 'search',
|
name: 'search',
|
||||||
color: 'primary',
|
color: 'primary',
|
||||||
},
|
|
||||||
{
|
|
||||||
type: 'button',
|
|
||||||
btnName: '新增',
|
|
||||||
name: 'add',
|
|
||||||
color: 'success',
|
|
||||||
plain: true
|
|
||||||
}
|
}
|
||||||
|
// {
|
||||||
|
// type: 'button',
|
||||||
|
// btnName: '新增',
|
||||||
|
// name: 'add',
|
||||||
|
// color: 'success',
|
||||||
|
// plain: true
|
||||||
|
// }
|
||||||
],
|
],
|
||||||
listQuery: {
|
listQuery: {
|
||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
@ -519,10 +519,6 @@ export default {
|
|||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
.drawer >>> .el-form-item__label {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.drawer >>> .el-drawer__header {
|
.drawer >>> .el-drawer__header {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 32px 32px 24px;
|
padding: 32px 32px 24px;
|
||||||
@ -551,11 +547,6 @@ export default {
|
|||||||
padding-right: 10px; /* 调整滚动条样式 */
|
padding-right: 10px; /* 调整滚动条样式 */
|
||||||
}
|
}
|
||||||
|
|
||||||
.drawer >>> .el-form,
|
|
||||||
.drawer >>> .attr-list {
|
|
||||||
padding: 0 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.drawer-body__footer {
|
.drawer-body__footer {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: flex-end;
|
justify-content: flex-end;
|
||||||
@ -563,7 +554,7 @@ export default {
|
|||||||
}
|
}
|
||||||
.action_btn {
|
.action_btn {
|
||||||
float: right;
|
float: right;
|
||||||
margin: -32px 15px 0;
|
/* margin: 0 15px 0; */
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
}
|
}
|
||||||
.add {
|
.add {
|
||||||
|
@ -120,7 +120,7 @@ export default {
|
|||||||
tableProps: [
|
tableProps: [
|
||||||
{ prop: 'name', label: '巡检单名称' },
|
{ prop: 'name', label: '巡检单名称' },
|
||||||
{ prop: 'department', label: '部门' },
|
{ prop: 'department', label: '部门' },
|
||||||
{ prop: 'actualCheckTime', label: '巡检时间', filter: parseTime },
|
{ prop: 'planCheckTime', label: '巡检时间', filter: parseTime },
|
||||||
{ prop: 'groupClass', label: '班次' },
|
{ prop: 'groupClass', label: '班次' },
|
||||||
// { prop: 'opt', label: '巡检内容', name: '详情', subcomponent: btn },
|
// { prop: 'opt', label: '巡检内容', name: '详情', subcomponent: btn },
|
||||||
{ prop: 'remark', label: '备注' }
|
{ prop: 'remark', label: '备注' }
|
||||||
|
@ -66,7 +66,7 @@ import { deleteEqMaintainLog, exportMaintainLogExcel } from '@/api/equipment/bas
|
|||||||
import AddContent from './addContent.vue';
|
import AddContent from './addContent.vue';
|
||||||
import { parseTime } from '../../../../core/mixins/code-filter';
|
import { parseTime } from '../../../../core/mixins/code-filter';
|
||||||
|
|
||||||
const timeFilter = (val) => moment(val).format('yyyy-MM-DD HH:mm:ss');
|
// const timeFilter = (val) => moment(val).format('yyyy-MM-DD HH:mm:ss');
|
||||||
|
|
||||||
const btn = {
|
const btn = {
|
||||||
name: 'tableBtn',
|
name: 'tableBtn',
|
||||||
@ -129,20 +129,22 @@ export default {
|
|||||||
// width: 180,
|
// width: 180,
|
||||||
// filter: timeFilter,
|
// filter: timeFilter,
|
||||||
// },
|
// },
|
||||||
{ prop: 'maintainOrderNumber', label: '设备保养单号' },
|
{ prop: 'maintainOrderNumber', label: '设备保养单号', width: 170, showOverflowtooltip: true },
|
||||||
{ prop: 'planName', label: '保养计划名称' },
|
{ prop: 'planName', label: '保养计划名称', width: 150, showOverflowtooltip: true },
|
||||||
{ prop: 'departmentName', label: '部门' },
|
{ prop: 'departmentName', label: '部门', width: 120, showOverflowtooltip: true },
|
||||||
{ prop: 'lineName', label: '产线名' },
|
{ prop: 'lineName', label: '产线名', width: 120, showOverflowtooltip: true },
|
||||||
{ prop: 'planStartTime', label: '计划开始时间', filter: timeFilter },
|
{ prop: 'planStartTime', label: '计划开始时间', filter: parseTime, width: 150, showOverflowtooltip: true },
|
||||||
{ prop: 'planEndTime', label: '计划结束时间', filter: timeFilter },
|
{ prop: 'planEndTime', label: '计划结束时间', filter: parseTime, width: 150, showOverflowtooltip: true },
|
||||||
{ prop: 'startTime', label: '实际开始时间', filter: timeFilter },
|
{ prop: 'startTime', label: '实际开始时间', filter: parseTime, width: 150, showOverflowtooltip: true },
|
||||||
{ prop: 'endTime', label: '实际结束时间', filter: timeFilter },
|
{ prop: 'endTime', label: '实际结束时间', filter: parseTime, width: 150, showOverflowtooltip: true },
|
||||||
// { prop: 'equipmentName', label: '设备名称' },
|
// { prop: 'equipmentName', label: '设备名称' },
|
||||||
// { prop: 'maintainWorker', label: '保养人员' },
|
// { prop: 'maintainWorker', label: '保养人员' },
|
||||||
{
|
{
|
||||||
prop: 'relatePlan',
|
prop: 'relatePlan',
|
||||||
label: '保养计划类型',
|
label: '保养计划类型',
|
||||||
filter: (v) => (v != null ? ['', '计划型', '非计划型'][v] : ''),
|
filter: (v) => (v != null ? ['', '计划型', '非计划型'][v] : ''),
|
||||||
|
width: 170,
|
||||||
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{ prop: 'opt', label: '详情', name: '详情', subcomponent: btn }
|
{ prop: 'opt', label: '详情', name: '详情', subcomponent: btn }
|
||||||
// { prop: 'maintainDuration', label: '计划保养用时(h)' },
|
// { prop: 'maintainDuration', label: '计划保养用时(h)' },
|
||||||
|
@ -393,7 +393,7 @@
|
|||||||
:file="file"
|
:file="file"
|
||||||
:key="file.fileUrl"
|
:key="file.fileUrl"
|
||||||
:disabled="disabled"
|
:disabled="disabled"
|
||||||
@delete="!disabled && handleDeleteFile(file, col.prop)" />
|
@delete="!disabled && handleDeleteFile(file)" />
|
||||||
</div>
|
</div>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
@ -678,10 +678,12 @@ export default {
|
|||||||
file.type === 'image/jpeg' ||
|
file.type === 'image/jpeg' ||
|
||||||
file.type === 'image/png' ||
|
file.type === 'image/png' ||
|
||||||
file.type === 'image/jpg';
|
file.type === 'image/jpg';
|
||||||
|
if (!isJPG) {
|
||||||
|
this.$modal.msgError('只能上传jpg/png文件!');
|
||||||
|
}
|
||||||
return isJPG;
|
return isJPG;
|
||||||
};
|
};
|
||||||
return checkFileSize();
|
return checkFileSize() && checkFileType();
|
||||||
// return checkFileSize() && checkFileType();
|
|
||||||
},
|
},
|
||||||
|
|
||||||
// handlers
|
// handlers
|
||||||
@ -737,7 +739,6 @@ export default {
|
|||||||
fileType: prop == 'files' ? 2 : 1,
|
fileType: prop == 'files' ? 2 : 1,
|
||||||
});
|
});
|
||||||
this.$modal.msgSuccess('上传成功');
|
this.$modal.msgSuccess('上传成功');
|
||||||
console.log('为我', this.form.files)
|
|
||||||
this.$emit('update', this.form);
|
this.$emit('update', this.form);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -92,23 +92,34 @@ export default {
|
|||||||
});
|
});
|
||||||
if (code == 0) {
|
if (code == 0) {
|
||||||
this.listLine = data;
|
this.listLine = data;
|
||||||
return;
|
} else {
|
||||||
|
this.listLine.splice(0);
|
||||||
}
|
}
|
||||||
this.listLine.splice(0);
|
// 获得全部设备
|
||||||
},
|
const res = await this.$axios({
|
||||||
async getEquipmentByLineId(id) {
|
url: '/base/core-equipment/listAll',
|
||||||
const { data, code } = await this.$axios({
|
|
||||||
url: '/base/core-equipment/listByLine',
|
|
||||||
params: {
|
|
||||||
id,
|
|
||||||
},
|
|
||||||
});
|
});
|
||||||
if (code == 0) {
|
if (res.code == 0) {
|
||||||
this.listEq = data;
|
this.listEq = res.data;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.listEq.splice(0);
|
this.listEq.splice(0);
|
||||||
},
|
},
|
||||||
|
async getEquipmentByLineId(id) {
|
||||||
|
if (id) {
|
||||||
|
const { data, code } = await this.$axios({
|
||||||
|
url: '/base/core-equipment/listByLine',
|
||||||
|
params: {
|
||||||
|
id,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
if (code == 0) {
|
||||||
|
this.listEq = data;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this.listEq.splice(0);
|
||||||
|
}
|
||||||
|
},
|
||||||
handleSearch() {
|
handleSearch() {
|
||||||
this.$emit('action', {
|
this.$emit('action', {
|
||||||
action: 'search',
|
action: 'search',
|
||||||
|
Loading…
Reference in New Issue
Block a user