Compare commits
No commits in common. "6a10afd04ee445cde3b8b18670229f3f9ccced12" and "0ae68aacef94d54d885c44b98f8a9f3b13a132e0" have entirely different histories.
6a10afd04e
...
0ae68aacef
8
.env.dev
8
.env.dev
@ -1,8 +1,8 @@
|
|||||||
###
|
###
|
||||||
# @Author: Do not edit
|
# @Author: Do not edit
|
||||||
# @Date: 2023-08-29 09:40:39
|
# @Date: 2023-08-29 09:40:39
|
||||||
# @LastEditTime: 2023-11-15 17:25:58
|
# @LastEditTime: 2023-11-15 09:09:12
|
||||||
# @LastEditors: DY
|
# @LastEditors: zhp
|
||||||
# @Description:
|
# @Description:
|
||||||
###
|
###
|
||||||
# 开发环境配置
|
# 开发环境配置
|
||||||
@ -13,12 +13,12 @@ VUE_APP_TITLE = MES系统
|
|||||||
|
|
||||||
# 芋道管理系统/开发环境
|
# 芋道管理系统/开发环境
|
||||||
# VUE_APP_BASE_API = 'http://100.64.0.26:48082'
|
# VUE_APP_BASE_API = 'http://100.64.0.26:48082'
|
||||||
VUE_APP_BASE_API = 'http://192.168.0.33:48082'
|
# VUE_APP_BASE_API = 'http://192.168.0.33:48082'
|
||||||
# VUE_APP_BASE_API = 'http://192.168.4.173:48080'
|
# VUE_APP_BASE_API = 'http://192.168.4.173:48080'
|
||||||
# VUE_APP_BASE_API = 'http://192.168.2.173:48080'
|
# VUE_APP_BASE_API = 'http://192.168.2.173:48080'
|
||||||
# VUE_APP_BASE_API = 'http://192.168.1.49:48080'
|
# VUE_APP_BASE_API = 'http://192.168.1.49:48080'
|
||||||
# VUE_APP_BASE_API = 'http://192.168.1.8:48080'
|
# VUE_APP_BASE_API = 'http://192.168.1.8:48080'
|
||||||
# VUE_APP_BASE_API = 'http://192.168.0.33:48082'
|
VUE_APP_BASE_API = 'http://192.168.4.159:48080'
|
||||||
# VUE_APP_BASE_API = 'http://192.168.1.56:48080'
|
# VUE_APP_BASE_API = 'http://192.168.1.56:48080'
|
||||||
# VUE_APP_BASE_API = 'http://192.168.4.159:48080'
|
# VUE_APP_BASE_API = 'http://192.168.4.159:48080'
|
||||||
# 路由懒加载
|
# 路由懒加载
|
||||||
|
@ -1,68 +0,0 @@
|
|||||||
/*
|
|
||||||
* @Author: Do not edit
|
|
||||||
* @Date: 2023-10-21 11:50:46
|
|
||||||
* @LastEditTime: 2023-11-15 15:56:14
|
|
||||||
* @LastEditors: DY
|
|
||||||
* @Description:
|
|
||||||
*/
|
|
||||||
import request from '@/utils/request'
|
|
||||||
|
|
||||||
// 创建原料
|
|
||||||
export function createHotMaterial(data) {
|
|
||||||
return request({
|
|
||||||
url: '/base/core-hot-material/create',
|
|
||||||
method: 'post',
|
|
||||||
data: data
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
// 更新原料
|
|
||||||
export function updateHotMaterial(data) {
|
|
||||||
return request({
|
|
||||||
url: '/base/core-hot-material/update',
|
|
||||||
method: 'put',
|
|
||||||
data: data
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
// 删除原料
|
|
||||||
export function deleteHotMaterial(id) {
|
|
||||||
return request({
|
|
||||||
url: '/base/core-hot-material/delete?id=' + id,
|
|
||||||
method: 'delete'
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
// 获得原料
|
|
||||||
export function getHotMaterial(id) {
|
|
||||||
return request({
|
|
||||||
url: '/base/core-hot-material/get?id=' + id,
|
|
||||||
method: 'get'
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
// 获得原料code
|
|
||||||
export function getCode() {
|
|
||||||
return request({
|
|
||||||
url: '/base/core-hot-material/getCode',
|
|
||||||
method: 'get'
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
// 获得原料分页
|
|
||||||
export function getHotMaterialPage(query) {
|
|
||||||
return request({
|
|
||||||
url: '/base/core-hot-material/page',
|
|
||||||
method: 'get',
|
|
||||||
params: query
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
// 获得所有列表
|
|
||||||
export function getHotMaterialList(query) {
|
|
||||||
return request({
|
|
||||||
url: '/base/core-hot-material/listAll',
|
|
||||||
method: 'get',
|
|
||||||
params: query
|
|
||||||
})
|
|
||||||
}
|
|
@ -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: 2023-11-06 17:49:42
|
||||||
* @LastEditors: DY
|
* @LastEditors: DY
|
||||||
* @Description:
|
* @Description:
|
||||||
*/
|
*/
|
||||||
@ -67,14 +67,6 @@ export function getCoreWOList(query) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
// 根据工单id获得所有列表
|
|
||||||
export function getCoreWOListById(ids) {
|
|
||||||
return request({
|
|
||||||
url: '/base/core-work-order/list?ids='+ ids ,
|
|
||||||
method: 'get'
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
// 创建工单预使用原料
|
// 创建工单预使用原料
|
||||||
export function createCoreWOMa(data) {
|
export function createCoreWOMa(data) {
|
||||||
return request({
|
return request({
|
||||||
@ -143,13 +135,4 @@ export function statusChange(data) {
|
|||||||
method: 'post',
|
method: 'post',
|
||||||
data: data
|
data: data
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
// 创建分配产量
|
|
||||||
export function createConCoreWOr(data) {
|
|
||||||
return request({
|
|
||||||
url: '/base/core-order-con-work-order/create',
|
|
||||||
method: 'post',
|
|
||||||
data: data
|
|
||||||
})
|
|
||||||
}
|
|
@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* @Author: Do not edit
|
* @Author: Do not edit
|
||||||
* @Date: 2023-11-08 15:56:52
|
* @Date: 2023-11-08 15:56:52
|
||||||
* @LastEditTime: 2023-11-13 09:15:17
|
* @LastEditTime: 2023-11-11 19:52:54
|
||||||
* @LastEditors: DY
|
* @LastEditors: DY
|
||||||
* @Description:
|
* @Description:
|
||||||
*/
|
*/
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* @Author: Do not edit
|
* @Author: Do not edit
|
||||||
* @Date: 2023-11-08 15:56:52
|
* @Date: 2023-11-08 15:56:52
|
||||||
* @LastEditTime: 2023-11-13 08:52:12
|
* @LastEditTime: 2023-11-10 09:04:50
|
||||||
* @LastEditors: DY
|
* @LastEditors: DY
|
||||||
* @Description:
|
* @Description:
|
||||||
*/
|
*/
|
||||||
@ -58,10 +58,10 @@ export function getCheckDetPage(query) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
// 获得设备巡检所有列表
|
// 获得x巡检所有列表
|
||||||
export function getcheckList(query) {
|
export function getcheckList(query) {
|
||||||
return request({
|
return request({
|
||||||
url: '/base/equipment-check/listAll',
|
url: '/base/equipment-check/list',
|
||||||
method: 'get',
|
method: 'get',
|
||||||
params: query
|
params: query
|
||||||
})
|
})
|
||||||
|
@ -15,9 +15,9 @@
|
|||||||
</el-row>
|
</el-row>
|
||||||
|
|
||||||
<el-row class="container-main flex-col" type="flex">
|
<el-row class="container-main flex-col" type="flex">
|
||||||
<el-row>
|
<el-row :style="{ padding: '0 ' + 9 + 'px' }">
|
||||||
<el-col :span="8" :style="{ padding: '0 ' + 8 + 'px' }">
|
<el-col :span="8">
|
||||||
<el-row>
|
<el-row >
|
||||||
<el-col :style="{ margin: 8 + 'px' + ' 0' }" :span="24">
|
<el-col :style="{ margin: 8 + 'px' + ' 0' }" :span="24">
|
||||||
<base-container :beilv="1" :height="460" :title="'切割数据'" :title-icon="'1_1'">
|
<base-container :beilv="1" :height="460" :title="'切割数据'" :title-icon="'1_1'">
|
||||||
<!-- <div style="width:100%">
|
<!-- <div style="width:100%">
|
||||||
@ -26,7 +26,7 @@
|
|||||||
<p class="now-team-content" style="margin:0">{{ exceptionAlarm.total }}</p>
|
<p class="now-team-content" style="margin:0">{{ exceptionAlarm.total }}</p>
|
||||||
</el-row>
|
</el-row>
|
||||||
</div> -->
|
</div> -->
|
||||||
<base-table1 :page="1" :limit="10" :show-index="false" :beilv="1" :table-config="inciseTableProps"
|
<base-table1 :page="1" :limit="9" :show-index="false" :beilv="1" :table-config="inciseTableProps"
|
||||||
:table-data="inciseList" />
|
:table-data="inciseList" />
|
||||||
</base-container>
|
</base-container>
|
||||||
</el-col>
|
</el-col>
|
||||||
@ -34,16 +34,16 @@
|
|||||||
<!-- 各产线投入数量和产出 -->
|
<!-- 各产线投入数量和产出 -->
|
||||||
<base-container :beilv="1" :height="180" :title="'缺陷数据'" :title-icon="'1_3'">
|
<base-container :beilv="1" :height="180" :title="'缺陷数据'" :title-icon="'1_3'">
|
||||||
<!-- <top-radio-group :data-type="0" @change-time-range="handleChangeChartTable3" /> -->
|
<!-- <top-radio-group :data-type="0" @change-time-range="handleChangeChartTable3" /> -->
|
||||||
<base-table :page="1" :limit="10" :show-index="false" :beilv="1" :table-config="qualityTableProps"
|
<base-table :page="1" :limit="10" :beilv="1" :table-config="qualityTableProps"
|
||||||
:table-data="qualityList" />
|
:table-data="qualityList" />
|
||||||
</base-container>
|
</base-container>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
|
||||||
<el-col :span="16" :style="{ padding: '0 ' + 8 + 'px' }">
|
<el-col :span="16">
|
||||||
<!-- 中间栏 -->
|
<!-- 中间栏 -->
|
||||||
<el-row>
|
<el-row >
|
||||||
<el-col>
|
<el-col>
|
||||||
<!-- 各产线投入数量折线展示 -->
|
<!-- 各产线投入数量折线展示 -->
|
||||||
<el-row>
|
<el-row>
|
||||||
@ -74,7 +74,7 @@
|
|||||||
<el-row>
|
<el-row>
|
||||||
<el-col :style="{ margin: 8 + 'px' + ' 0' }" :span="24">
|
<el-col :style="{ margin: 8 + 'px' + ' 0' }" :span="24">
|
||||||
<base-container1 :beilv="1" :title="'下片数量统计'" :title-icon="'1_5'">
|
<base-container1 :beilv="1" :title="'下片数量统计'" :title-icon="'1_5'">
|
||||||
<linear-bar-chart :id=" 'NumCharts' " :name-list="NumList" :data-list="NumDataList" :height="235"
|
<linear-bar-chart :id=" 'NumCharts' " :name-list="NumList" :data-list="NumDataList" :height="225"
|
||||||
:beilv="1" :show-legend="true" />
|
:beilv="1" :show-legend="true" />
|
||||||
</base-container1>
|
</base-container1>
|
||||||
<!-- <base-container :beilv="1" :title="'成品率折线展示'" :title-icon="'1_6'">
|
<!-- <base-container :beilv="1" :title="'成品率折线展示'" :title-icon="'1_6'">
|
||||||
@ -497,11 +497,11 @@ const qualityList = [
|
|||||||
{ createTime: '10:30:49', content: '报废', productLine: '钢五线', process: '包装' },
|
{ createTime: '10:30:49', content: '报废', productLine: '钢五线', process: '包装' },
|
||||||
{ createTime: '10:40:35', content: '报废', productLine: '钢六线', process: '钢化' },
|
{ createTime: '10:40:35', content: '报废', productLine: '钢六线', process: '钢化' },
|
||||||
{ createTime: '10:31:35', content: '报废', productLine: '钢七线', process: '包装' },
|
{ createTime: '10:31:35', content: '报废', productLine: '钢七线', process: '包装' },
|
||||||
{ createTime: '10:32:35', content: '报废', productLine: '钢八线', process: '钢化' },
|
// { createTime: '10:32:35', content: '报废', productLine: '钢八线', process: '钢化' },
|
||||||
{ createTime: '10:33:35', content: '报废', productLine: '钢一线', process: '磨边' },
|
// { createTime: '10:33:35', content: '报废', productLine: '钢一线', process: '磨边' },
|
||||||
{ createTime: '10:34:35', content: '报废', productLine: '钢二线', process: '镀膜' },
|
// { createTime: '10:34:35', content: '报废', productLine: '钢二线', process: '镀膜' },
|
||||||
{ createTime: '10:38:35', content: '报废', productLine: '钢三线', process: '钢化' },
|
// { createTime: '10:38:35', content: '报废', productLine: '钢三线', process: '钢化' }
|
||||||
{ createTime: '10:31:35', content: '报废', productLine: '钢四线', process: '镀膜' },
|
// { createTime: '10:31:35', content: '报废', productLine: '钢四线', process: '镀膜' },
|
||||||
// { createTime: '10:43:35', content: '报废', productLine: '钢五线', process: '镀膜' },
|
// { createTime: '10:43:35', content: '报废', productLine: '钢五线', process: '镀膜' },
|
||||||
// { createTime: '10:43:35', content: '报废', productLine: '钢五线', process: '镀膜' },
|
// { createTime: '10:43:35', content: '报废', productLine: '钢五线', process: '镀膜' },
|
||||||
// { createTime: '10:43:35', content: '报废', productLine: '钢五线', process: '镀膜' },
|
// { createTime: '10:43:35', content: '报废', productLine: '钢五线', process: '镀膜' },
|
||||||
@ -538,7 +538,6 @@ const inciseList = [
|
|||||||
{ finishNum: '43423', scrapNum: '14', area: '12235.24' },
|
{ finishNum: '43423', scrapNum: '14', area: '12235.24' },
|
||||||
{ finishNum: '32343', scrapNum: '15', area: '12345.24' },
|
{ finishNum: '32343', scrapNum: '15', area: '12345.24' },
|
||||||
{ finishNum: '43434', scrapNum: '18', area: '12455.24' },
|
{ finishNum: '43434', scrapNum: '18', area: '12455.24' },
|
||||||
{ finishNum: '43432', scrapNum: '19', area: '12345.24' },
|
|
||||||
{ finishNum: '43432', scrapNum: '19', area: '12345.24' }
|
{ finishNum: '43432', scrapNum: '19', area: '12345.24' }
|
||||||
]
|
]
|
||||||
export default {
|
export default {
|
||||||
@ -1021,7 +1020,7 @@ export default {
|
|||||||
top: 2em;
|
top: 2em;
|
||||||
}
|
}
|
||||||
.container-main {
|
.container-main {
|
||||||
// padding: 10px;
|
padding: 10px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1124,7 +1123,7 @@ export default {
|
|||||||
flex: 1 1;
|
flex: 1 1;
|
||||||
}
|
}
|
||||||
.h-full {
|
.h-full {
|
||||||
height: calc(100vh);
|
height: calc(100vh - 150px);
|
||||||
}
|
}
|
||||||
/* .container-main {
|
/* .container-main {
|
||||||
min-height: calc(100vh - 10em);
|
min-height: calc(100vh - 10em);
|
||||||
|
@ -1,86 +0,0 @@
|
|||||||
<!--
|
|
||||||
* @Author: zwq
|
|
||||||
* @Date: 2021-11-18 14:16:25
|
|
||||||
* @LastEditors: DY
|
|
||||||
* @LastEditTime: 2023-11-15 16:23:49
|
|
||||||
* @Description:
|
|
||||||
-->
|
|
||||||
<template>
|
|
||||||
<el-form
|
|
||||||
:model="dataForm"
|
|
||||||
:rules="dataRule"
|
|
||||||
ref="dataForm"
|
|
||||||
@keyup.enter.native="dataFormSubmit()"
|
|
||||||
label-width="100px">
|
|
||||||
<el-row :gutter="20">
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item label="原料名称" prop="name">
|
|
||||||
<el-input v-model="dataForm.name" clearable placeholder="请输入原料名称" />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item label="原料编号" prop="code">
|
|
||||||
<el-input v-model="dataForm.code" clearable placeholder="请输入原料编号" />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
</el-row>
|
|
||||||
<el-row :gutter="20">
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item label="每日消耗量" prop="dailyCost">
|
|
||||||
<el-input-number v-model="dataForm.dailyCost" controls-position="right" clearable placeholder="请输入每日消耗量" style="width: 100%" />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item label="单位" prop="unit">
|
|
||||||
<el-select
|
|
||||||
v-model="dataForm.unit"
|
|
||||||
filterable
|
|
||||||
style="width: 100%"
|
|
||||||
placeholder="请选择单位">
|
|
||||||
<el-option
|
|
||||||
v-for="dict in getDictDatas('unit_dict')"
|
|
||||||
:key="dict.value"
|
|
||||||
:label="dict.label"
|
|
||||||
:value="dict.value" />
|
|
||||||
</el-select>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
</el-row>
|
|
||||||
</el-form>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import basicAdd from '../../core/mixins/basic-add';
|
|
||||||
import { createHotMaterial, updateHotMaterial, getHotMaterial, getCode } from "@/api/base/coreHotMaterial";
|
|
||||||
import { getDictDatas} from "@/utils/dict";
|
|
||||||
|
|
||||||
export default {
|
|
||||||
mixins: [basicAdd],
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
urlOptions: {
|
|
||||||
isGetCode: true,
|
|
||||||
codeURL: getCode,
|
|
||||||
createURL: createHotMaterial,
|
|
||||||
updateURL: updateHotMaterial,
|
|
||||||
infoURL: getHotMaterial,
|
|
||||||
},
|
|
||||||
dataForm: {
|
|
||||||
id: undefined,
|
|
||||||
code: undefined,
|
|
||||||
name: undefined,
|
|
||||||
unit: undefined,
|
|
||||||
dailyCost: undefined
|
|
||||||
},
|
|
||||||
departmentlList: [],
|
|
||||||
menuOptions: [],
|
|
||||||
dataRule: {
|
|
||||||
code: [{ required: true, message: "原料编码不能为空", trigger: "blur" }],
|
|
||||||
name: [{ required: true, message: "原料名称不能为空", trigger: "blur" }]
|
|
||||||
}
|
|
||||||
};
|
|
||||||
},
|
|
||||||
mounted() {},
|
|
||||||
methods: {}
|
|
||||||
};
|
|
||||||
</script>
|
|
@ -1,178 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div class="app-container">
|
|
||||||
<search-bar
|
|
||||||
:formConfigs="formConfig"
|
|
||||||
ref="searchBarForm"
|
|
||||||
@headBtnClick="buttonClick" />
|
|
||||||
<base-table
|
|
||||||
v-loading="dataListLoading"
|
|
||||||
:table-props="tableProps"
|
|
||||||
:page="listQuery.pageNo"
|
|
||||||
:limit="listQuery.pageSize"
|
|
||||||
:table-data="tableData">
|
|
||||||
<method-btn
|
|
||||||
v-if="tableBtn.length"
|
|
||||||
slot="handleBtn"
|
|
||||||
:width="120"
|
|
||||||
label="操作"
|
|
||||||
:method-list="tableBtn"
|
|
||||||
@clickBtn="handleClick" />
|
|
||||||
</base-table>
|
|
||||||
<pagination
|
|
||||||
:limit.sync="listQuery.pageSize"
|
|
||||||
:page.sync="listQuery.pageNo"
|
|
||||||
:total="listQuery.total"
|
|
||||||
@pagination="getDataList" />
|
|
||||||
<base-dialog
|
|
||||||
:dialogTitle="addOrEditTitle"
|
|
||||||
:dialogVisible="addOrUpdateVisible"
|
|
||||||
@cancel="handleCancel"
|
|
||||||
@confirm="handleConfirm"
|
|
||||||
:before-close="handleCancel"
|
|
||||||
width="50%">
|
|
||||||
<add-or-update
|
|
||||||
ref="addOrUpdate"
|
|
||||||
@refreshDataList="successSubmit"></add-or-update>
|
|
||||||
</base-dialog>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import AddOrUpdate from './add-or-updata';
|
|
||||||
import basicPage from '../../core/mixins/basic-page';
|
|
||||||
import { parseTime } from '../../core/mixins/code-filter';
|
|
||||||
import { getHotMaterialPage, deleteHotMaterial } from '@/api/base/coreHotMaterial';
|
|
||||||
import { publicFormatter } from "@/utils/dict";
|
|
||||||
|
|
||||||
const tableProps = [
|
|
||||||
{
|
|
||||||
prop: 'createTime',
|
|
||||||
label: '添加时间',
|
|
||||||
filter: parseTime
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'name',
|
|
||||||
label: '原料名称'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'code',
|
|
||||||
label: '原料编码'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'unit',
|
|
||||||
label: '单位',
|
|
||||||
filter: publicFormatter('unit_dict')
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'dailyCost',
|
|
||||||
label: '每日消耗量'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'remark',
|
|
||||||
label: '备注'
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
export default {
|
|
||||||
mixins: [basicPage],
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
urlOptions: {
|
|
||||||
getDataListURL: getHotMaterialPage,
|
|
||||||
deleteURL: deleteHotMaterial
|
|
||||||
},
|
|
||||||
tableProps,
|
|
||||||
tableBtn: [
|
|
||||||
this.$auth.hasPermi(`base:core-hot-material:update`)
|
|
||||||
? {
|
|
||||||
type: 'edit',
|
|
||||||
btnName: '编辑',
|
|
||||||
}
|
|
||||||
: undefined,
|
|
||||||
this.$auth.hasPermi(`base:core-hot-material:delete`)
|
|
||||||
? {
|
|
||||||
type: 'delete',
|
|
||||||
btnName: '删除',
|
|
||||||
}
|
|
||||||
: undefined,
|
|
||||||
].filter((v)=>v),
|
|
||||||
tableData: [],
|
|
||||||
formConfig: [
|
|
||||||
{
|
|
||||||
type: 'input',
|
|
||||||
label: '原料名称',
|
|
||||||
placeholder: '原料名称',
|
|
||||||
param: 'name',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: 'input',
|
|
||||||
label: '原料编码',
|
|
||||||
placeholder: '原料编码',
|
|
||||||
param: 'code',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: 'button',
|
|
||||||
btnName: '查询',
|
|
||||||
name: 'search',
|
|
||||||
color: 'primary',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: 'separate',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: this.$auth.hasPermi('base:core-hot-material:create') ? 'button' : '',
|
|
||||||
btnName: '新增',
|
|
||||||
name: 'add',
|
|
||||||
color: 'success',
|
|
||||||
plain: true
|
|
||||||
},
|
|
||||||
],
|
|
||||||
};
|
|
||||||
},
|
|
||||||
components: {
|
|
||||||
AddOrUpdate,
|
|
||||||
},
|
|
||||||
created() {},
|
|
||||||
methods: {
|
|
||||||
// 获取数据列表
|
|
||||||
// getDataList() {
|
|
||||||
// this.dataListLoading = true;
|
|
||||||
// this.urlOptions.getDataListURL(this.listQuery).then(response => {
|
|
||||||
// this.tableData = response.data.list;
|
|
||||||
// this.listQuery.total = response.data.total;
|
|
||||||
// this.dataListLoading = false;
|
|
||||||
// });
|
|
||||||
// },
|
|
||||||
buttonClick(val) {
|
|
||||||
switch (val.btnName) {
|
|
||||||
case 'search':
|
|
||||||
this.listQuery.pageNo = 1;
|
|
||||||
this.listQuery.pageSize = 10;
|
|
||||||
this.listQuery.name = val.name ? val.name : undefined;
|
|
||||||
this.listQuery.code = val.code ? val.code : undefined;
|
|
||||||
this.getDataList();
|
|
||||||
break;
|
|
||||||
case 'reset':
|
|
||||||
this.$refs.searchBarForm.resetForm();
|
|
||||||
this.listQuery = {
|
|
||||||
pageSize: 10,
|
|
||||||
pageNo: 1,
|
|
||||||
total: 1,
|
|
||||||
};
|
|
||||||
this.getDataList();
|
|
||||||
break;
|
|
||||||
case 'add':
|
|
||||||
this.addOrEditTitle = '新增';
|
|
||||||
this.addOrUpdateVisible = true;
|
|
||||||
this.addOrUpdateHandle();
|
|
||||||
break;
|
|
||||||
case 'export':
|
|
||||||
this.handleExport();
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
console.log(val);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
</script>
|
|
@ -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-11-15 15:41:44
|
* @LastEditTime: 2023-11-04 17:57:18
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -11,7 +11,7 @@
|
|||||||
:show-close="false"
|
:show-close="false"
|
||||||
:wrapper-closable="false"
|
:wrapper-closable="false"
|
||||||
class="drawer"
|
class="drawer"
|
||||||
size="60%">
|
size="50%">
|
||||||
<small-title slot="title" :no-padding="true">
|
<small-title slot="title" :no-padding="true">
|
||||||
{{ isdetail ? '详情' : !dataForm.id ? '新增' : '编辑' }}
|
{{ isdetail ? '详情' : !dataForm.id ? '新增' : '编辑' }}
|
||||||
</small-title>
|
</small-title>
|
||||||
@ -25,12 +25,12 @@
|
|||||||
label-width="100px"
|
label-width="100px"
|
||||||
label-position="top">
|
label-position="top">
|
||||||
<el-row :gutter="20">
|
<el-row :gutter="20">
|
||||||
<el-col :span="8">
|
<el-col :span="12">
|
||||||
<el-form-item label="产品名称" prop="name">
|
<el-form-item label="产品名称" prop="name">
|
||||||
<el-input v-model="dataForm.name" :disabled="isdetail" clearable placeholder="请输入产品名称" />
|
<el-input v-model="dataForm.name" :disabled="isdetail" clearable placeholder="请输入产品名称" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="8">
|
<el-col :span="12">
|
||||||
<el-form-item label="产品编码" prop="code">
|
<el-form-item label="产品编码" prop="code">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="dataForm.code"
|
v-model="dataForm.code"
|
||||||
@ -39,7 +39,9 @@
|
|||||||
placeholder="请输入产品编码" />
|
placeholder="请输入产品编码" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="8">
|
</el-row>
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col :span="12">
|
||||||
<el-form-item label="物料类型" prop="materialType">
|
<el-form-item label="物料类型" prop="materialType">
|
||||||
<el-select
|
<el-select
|
||||||
v-model="dataForm.materialType"
|
v-model="dataForm.materialType"
|
||||||
@ -55,9 +57,7 @@
|
|||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
<el-col :span="12">
|
||||||
<el-row :gutter="20">
|
|
||||||
<el-col :span="8">
|
|
||||||
<el-form-item label="产品类型" prop="productType">
|
<el-form-item label="产品类型" prop="productType">
|
||||||
<el-select
|
<el-select
|
||||||
v-model="dataForm.productType"
|
v-model="dataForm.productType"
|
||||||
@ -73,7 +73,9 @@
|
|||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="8">
|
</el-row>
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col :span="12">
|
||||||
<el-form-item label="单位" prop="unit">
|
<el-form-item label="单位" prop="unit">
|
||||||
<el-select
|
<el-select
|
||||||
v-model="dataForm.unit"
|
v-model="dataForm.unit"
|
||||||
@ -89,34 +91,31 @@
|
|||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="8">
|
<el-col :span="12">
|
||||||
<el-form-item label="单位平方数" prop="area">
|
<el-form-item label="单位平方数" prop="area">
|
||||||
<el-input-number v-model="dataForm.area" :precision="2" style="width: 100%" :disabled="isdetail" clearable placeholder="请输入单位平方数" />
|
<el-input-number v-model="dataForm.area" :precision="2" style="width: 100%" :disabled="isdetail" clearable placeholder="请输入单位平方数" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-row :gutter="20">
|
<el-row :gutter="20">
|
||||||
<el-col :span="8">
|
<el-col :span="12">
|
||||||
<el-form-item label="规格" prop="specifications">
|
<el-form-item label="规格" prop="specifications">
|
||||||
<el-input v-model="dataForm.specifications" :disabled="isdetail" clearable placeholder="请输入规格" />
|
<el-input v-model="dataForm.specifications" :disabled="isdetail" clearable placeholder="请输入规格" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="8">
|
<el-col :span="12">
|
||||||
<el-form-item label="产线生产单位用时(S)" prop="processTime">
|
<el-form-item label="产线生产单位用时(S)" prop="processTime">
|
||||||
<el-input v-model.number="dataForm.processTime" type="number" :disabled="isdetail" clearable placeholder="请输入产线生产单位用时" />
|
<el-input v-model.number="dataForm.processTime" type="number" :disabled="isdetail" clearable placeholder="请输入产线生产单位用时" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="8">
|
|
||||||
<el-form-item label="备注" prop="remark">
|
|
||||||
<el-input v-model="dataForm.remark" :disabled="isdetail" clearable placeholder="请输入备注" />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
</el-row>
|
</el-row>
|
||||||
|
<el-form-item label="备注" prop="remark">
|
||||||
|
<el-input v-model="dataForm.remark" :disabled="isdetail" clearable placeholder="请输入备注" />
|
||||||
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
</div>
|
</div>
|
||||||
<div class="drawer-body__footer">
|
<div class="drawer-body__footer">
|
||||||
<el-button v-if="!idAttrShow" @click="goback()">取消</el-button>
|
<el-button style="" @click="goback()">取消</el-button>
|
||||||
<el-button v-else :disabled="isdetail" @click="init(dataForm.id)">重置</el-button>
|
|
||||||
<el-button v-if="isdetail" type="primary" @click="goEdit()">
|
<el-button v-if="isdetail" type="primary" @click="goEdit()">
|
||||||
编辑
|
编辑
|
||||||
</el-button>
|
</el-button>
|
||||||
@ -327,15 +326,9 @@ export default {
|
|||||||
// 获取产品详情
|
// 获取产品详情
|
||||||
this.urlOptions.infoURL(id).then(response => {
|
this.urlOptions.infoURL(id).then(response => {
|
||||||
this.dataForm = response.data
|
this.dataForm = response.data
|
||||||
if (this.dataForm.unit !== undefined) {
|
this.dataForm.unit = String(this.dataForm.unit)
|
||||||
this.dataForm.unit = String(this.dataForm.unit)
|
this.dataForm.materialType = String(this.dataForm.materialType)
|
||||||
}
|
this.dataForm.productType = String(this.dataForm.productType)
|
||||||
if (this.dataForm.materialType !== undefined) {
|
|
||||||
this.dataForm.materialType = String(this.dataForm.materialType)
|
|
||||||
}
|
|
||||||
if (this.dataForm.productType !== undefined) {
|
|
||||||
this.dataForm.productType = String(this.dataForm.productType)
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
// 获取产品属性列表
|
// 获取产品属性列表
|
||||||
this.getList();
|
this.getList();
|
||||||
@ -360,31 +353,7 @@ export default {
|
|||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.$refs.addOrUpdate.init(id);
|
this.$refs.addOrUpdate.init(id);
|
||||||
});
|
});
|
||||||
},
|
}
|
||||||
// 表单提交
|
|
||||||
dataFormSubmit() {
|
|
||||||
this.$refs["dataForm"].validate((valid) => {
|
|
||||||
if (!valid) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
// 修改的提交
|
|
||||||
if (this.dataForm.id) {
|
|
||||||
this.urlOptions.updateURL(this.dataForm).then(response => {
|
|
||||||
this.$modal.msgSuccess("修改成功");
|
|
||||||
this.visible = false;
|
|
||||||
this.$emit("refreshDataList");
|
|
||||||
});
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
// 添加的提交
|
|
||||||
this.urlOptions.createURL(this.dataForm).then(response => {
|
|
||||||
this.$modal.msgSuccess("新增成功");
|
|
||||||
this.idAttrShow = true
|
|
||||||
// this.visible = false;
|
|
||||||
this.$emit("refreshDataList");
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
@ -413,7 +382,7 @@ export default {
|
|||||||
|
|
||||||
.drawer >>> .content {
|
.drawer >>> .content {
|
||||||
padding: 30px 24px;
|
padding: 30px 24px;
|
||||||
/* flex: 1; */
|
flex: 1;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
/* height: 100%; */
|
/* height: 100%; */
|
||||||
@ -439,7 +408,7 @@ export default {
|
|||||||
}
|
}
|
||||||
.action_btn {
|
.action_btn {
|
||||||
float: right;
|
float: right;
|
||||||
margin: -32px 15px 0;
|
margin: 5px 15px;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
}
|
}
|
||||||
.add {
|
.add {
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
<add-or-update
|
<add-or-update
|
||||||
v-if="addOrUpdateVisible"
|
v-if="addOrUpdateVisible"
|
||||||
ref="addOrUpdate"
|
ref="addOrUpdate"
|
||||||
@refreshDataList="getDataList" />
|
@refreshDataList="successSubmit" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -45,8 +45,6 @@ import {
|
|||||||
getCorePLPage,
|
getCorePLPage,
|
||||||
deleteCorePL
|
deleteCorePL
|
||||||
} from '@/api/base/coreProductionLine';
|
} from '@/api/base/coreProductionLine';
|
||||||
import { getStatus } from '@/api/core/base/productionLine';
|
|
||||||
import codeFilter from '../../core/mixins/code-filter';
|
|
||||||
|
|
||||||
const tableProps = [
|
const tableProps = [
|
||||||
{
|
{
|
||||||
@ -69,7 +67,7 @@ const tableProps = [
|
|||||||
{
|
{
|
||||||
prop: 'enabled',
|
prop: 'enabled',
|
||||||
label: '当前状态',
|
label: '当前状态',
|
||||||
filter: codeFilter('lineStatus')
|
filter: (val) => ['停用', '启用'][val]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'description',
|
prop: 'description',
|
||||||
@ -137,28 +135,14 @@ export default {
|
|||||||
created() {},
|
created() {},
|
||||||
methods: {
|
methods: {
|
||||||
// 获取数据列表
|
// 获取数据列表
|
||||||
getDataList() {
|
// getDataList() {
|
||||||
this.dataListLoading = true;
|
// this.dataListLoading = true;
|
||||||
this.urlOptions.getDataListURL(this.listQuery).then(response => {
|
// this.urlOptions.getDataListURL(this.listQuery).then(response => {
|
||||||
// this.tableData = response.data.list;
|
// this.tableData = response.data.list;
|
||||||
this.getStatus(response.data.list)
|
// this.listQuery.total = response.data.total;
|
||||||
this.listQuery.total = response.data.total;
|
// this.dataListLoading = false;
|
||||||
this.dataListLoading = false;
|
// });
|
||||||
});
|
// },
|
||||||
},
|
|
||||||
getStatus(list) {
|
|
||||||
const ids = list.map((i) => {
|
|
||||||
return i.id;
|
|
||||||
});
|
|
||||||
getStatus(ids).then((response) => {
|
|
||||||
response.forEach((a) => {
|
|
||||||
list.forEach((b) => {
|
|
||||||
if (b.id === a.id) b.enabled = a.status;
|
|
||||||
});
|
|
||||||
});
|
|
||||||
this.tableData = list;
|
|
||||||
});
|
|
||||||
},
|
|
||||||
buttonClick(val) {
|
buttonClick(val) {
|
||||||
switch (val.btnName) {
|
switch (val.btnName) {
|
||||||
case 'search':
|
case 'search':
|
||||||
|
@ -70,7 +70,7 @@
|
|||||||
<el-row>
|
<el-row>
|
||||||
<el-col :span='12'>
|
<el-col :span='12'>
|
||||||
<el-form-item label="关联工艺" prop="processFlowId">
|
<el-form-item label="关联工艺" prop="processFlowId">
|
||||||
<el-select v-model="dataForm.processFlowId" placeholder="请选择工艺" clearable filterable style="width: 100%;" @change="processFlowIdChange">
|
<el-select v-model="dataForm.processFlowId" placeholder="请选择" style="width: 100%;">
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item in processFlowList"
|
v-for="item in processFlowList"
|
||||||
:key="item.id"
|
:key="item.id"
|
||||||
@ -82,7 +82,7 @@
|
|||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span='12'>
|
<el-col :span='12'>
|
||||||
<el-form-item label="物料计算方式" prop="materialMethod">
|
<el-form-item label="物料计算方式" prop="materialMethod">
|
||||||
<el-radio-group v-model="dataForm.materialMethod" @change="materialMethodChange">
|
<el-radio-group v-model="dataForm.materialMethod">
|
||||||
<el-radio :label="1">产品基础</el-radio>
|
<el-radio :label="1">产品基础</el-radio>
|
||||||
<el-radio :label="2">工艺扩展</el-radio>
|
<el-radio :label="2">工艺扩展</el-radio>
|
||||||
</el-radio-group>
|
</el-radio-group>
|
||||||
@ -192,8 +192,8 @@ export default {
|
|||||||
processFlowList: [],
|
processFlowList: [],
|
||||||
productLineList: [],
|
productLineList: [],
|
||||||
workOrderTypeList: [
|
workOrderTypeList: [
|
||||||
{id: 1,name:'普通'},
|
{id: 1,name:'标准工单'},
|
||||||
{id: 2, name:'特殊'}
|
{id: 2, name:'特殊工单'}
|
||||||
],
|
],
|
||||||
planStartTime: '',
|
planStartTime: '',
|
||||||
planFinishTime: '',
|
planFinishTime: '',
|
||||||
@ -205,20 +205,6 @@ export default {
|
|||||||
this.getDict()
|
this.getDict()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
// 工艺变更
|
|
||||||
materialMethodChange(val) {
|
|
||||||
if (val === 2 && !this.dataForm.processFlowId) {
|
|
||||||
this.dataForm.materialMethod = 1
|
|
||||||
this.$modal.msgError("请先选择关联工艺");
|
|
||||||
}
|
|
||||||
},
|
|
||||||
// 工艺变更
|
|
||||||
processFlowIdChange(val) {
|
|
||||||
console.log(val)
|
|
||||||
if (!val) {
|
|
||||||
this.dataForm.materialMethod = 1
|
|
||||||
}
|
|
||||||
},
|
|
||||||
init(id) {
|
init(id) {
|
||||||
this.dataForm.id = id || "";
|
this.dataForm.id = id || "";
|
||||||
this.visible = true;
|
this.visible = true;
|
||||||
|
@ -1,298 +0,0 @@
|
|||||||
<!--
|
|
||||||
* @Author: zwq
|
|
||||||
* @Date: 2021-11-18 14:16:25
|
|
||||||
* @LastEditors: DY
|
|
||||||
* @LastEditTime: 2023-11-15 17:45:04
|
|
||||||
* @Description:
|
|
||||||
-->
|
|
||||||
<template>
|
|
||||||
<el-drawer
|
|
||||||
:visible.sync="visible"
|
|
||||||
:show-close="false"
|
|
||||||
:wrapper-closable="false"
|
|
||||||
class="drawer"
|
|
||||||
size="55%">
|
|
||||||
<small-title slot="title" :no-padding="true">
|
|
||||||
{{ '分配产量' }}
|
|
||||||
</small-title>
|
|
||||||
<div class="content">
|
|
||||||
<div class="formContent">
|
|
||||||
<el-row :gutter="20">
|
|
||||||
<el-col :span="12">工单名称:{{ dataForm.name }}</el-col>
|
|
||||||
<el-col :span="12">工单编码:{{ dataForm.code }}</el-col>
|
|
||||||
</el-row>
|
|
||||||
<el-row :gutter="20">
|
|
||||||
<el-col :span="12">产品名称:{{ dataForm.productName }}</el-col>
|
|
||||||
<el-col :span="12">产品规格:{{ dataForm.specifications }}</el-col>
|
|
||||||
</el-row>
|
|
||||||
<el-row :gutter="20">
|
|
||||||
<el-col :span="12">实际生产数量:{{ dataForm.expectedTime }}</el-col>
|
|
||||||
</el-row>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="attr-list">
|
|
||||||
<!-- <el-button v-show="!isdetail" type="success" size="small" style="float: right" @click="addRow()">添加一行</el-button> -->
|
|
||||||
<el-table
|
|
||||||
:data="tableData"
|
|
||||||
style="width: 100%">
|
|
||||||
<el-table-column type="index" label="序号" />
|
|
||||||
<el-table-column prop="orderName" label="订单名称" />
|
|
||||||
<el-table-column prop="orderCode" label="订单编码" />
|
|
||||||
<el-table-column prop="priority" label="优先级" />
|
|
||||||
<el-table-column prop="planAssignmentQuantity" label="计划分配数量" >
|
|
||||||
<template slot-scope="scope">
|
|
||||||
<el-input v-model="scope.row.planAssignmentQuantity"></el-input>
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column prop="actualAssignmentQuantity" label="实际分配数量">
|
|
||||||
<template slot-scope="scope">
|
|
||||||
<el-input v-model="scope.row.actualAssignmentQuantity"></el-input>
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column label="操作">
|
|
||||||
<template slot-scope="scope">
|
|
||||||
<el-button type="text" size="small" @click="saveData(scope.row)">保存</el-button>
|
|
||||||
<!-- <el-tooltip v-if="!scope.row.isEdit" placement="top" content="编辑">
|
|
||||||
<el-button
|
|
||||||
type="text"
|
|
||||||
:style="{color:'#0B58FF'}"
|
|
||||||
size="mini"
|
|
||||||
@click="edit(scope.row)"
|
|
||||||
>
|
|
||||||
<svg-icon style="width: 18px; height: 18px" class="item-icon" icon-class="edit" />
|
|
||||||
</el-button>
|
|
||||||
</el-tooltip> -->
|
|
||||||
|
|
||||||
<!-- <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
|
|
||||||
v-show="listQuery.total > 0"
|
|
||||||
:total="listQuery.total"
|
|
||||||
:page.sync="listQuery.pageNo"
|
|
||||||
:limit.sync="listQuery.pageSize"
|
|
||||||
:page-sizes="[5, 10, 15]"
|
|
||||||
@pagination="getList" />
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="drawer-body__footer">
|
|
||||||
<el-button style="" type="primary" @click="goback()">关闭</el-button>
|
|
||||||
<!-- <el-button v-if="isdetail" type="primary" @click="goEdit()">
|
|
||||||
编辑
|
|
||||||
</el-button>
|
|
||||||
<el-button v-else type="primary" @click="dataFormSubmit()">确定</el-button> -->
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- <attr-add
|
|
||||||
v-if="addOrUpdateVisible"
|
|
||||||
ref="addOrUpdate"
|
|
||||||
:material-id="dataForm.id"
|
|
||||||
@refreshDataList="getList" /> -->
|
|
||||||
</el-drawer>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import basicAdd from '../../core/mixins/basic-add';
|
|
||||||
import { getConOrderList, createConCoreWOr, getCoreWO } from '@/api/base/coreWorkOrder';
|
|
||||||
import SmallTitle from '../material/SmallTitle';
|
|
||||||
// import { parseTime } from '../../core/mixins/code-filter';
|
|
||||||
// import attrAdd from './attr-add';
|
|
||||||
|
|
||||||
export default {
|
|
||||||
mixins: [basicAdd],
|
|
||||||
components: { SmallTitle },
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
addOrUpdateVisible: false,
|
|
||||||
urlOptions: {
|
|
||||||
infoURL: getCoreWO,
|
|
||||||
},
|
|
||||||
listQuery: {
|
|
||||||
pageSize: 10,
|
|
||||||
pageNo: 1,
|
|
||||||
total: 0,
|
|
||||||
},
|
|
||||||
dataForm: {
|
|
||||||
id: undefined,
|
|
||||||
code: undefined,
|
|
||||||
productId: '',
|
|
||||||
remark: undefined,
|
|
||||||
},
|
|
||||||
productList: [],
|
|
||||||
materialAttrList: [],
|
|
||||||
materialList: [],
|
|
||||||
tableData: [],
|
|
||||||
visible: false,
|
|
||||||
isdetail: false,
|
|
||||||
idAttrShow: false
|
|
||||||
};
|
|
||||||
},
|
|
||||||
mounted() {},
|
|
||||||
methods: {
|
|
||||||
initData() {
|
|
||||||
// this.materialAttrList.splice(0);
|
|
||||||
this.listQuery.total = 0;
|
|
||||||
},
|
|
||||||
edit(row) {
|
|
||||||
row.isEdit = true
|
|
||||||
},
|
|
||||||
saveData(row) {
|
|
||||||
if (row.actualAssignmentQuantity) {
|
|
||||||
if (row.id) {
|
|
||||||
// updateMaterialPBDet({
|
|
||||||
// ...row
|
|
||||||
// }).then((response) => {
|
|
||||||
// this.$modal.msgSuccess('修改成功');
|
|
||||||
// // this.visible = false;
|
|
||||||
// this.getList();
|
|
||||||
// });
|
|
||||||
// return;
|
|
||||||
}
|
|
||||||
// 添加的提交
|
|
||||||
createConCoreWOr({
|
|
||||||
...row,
|
|
||||||
workOrderId: this.dataForm.id
|
|
||||||
}).then((response) => {
|
|
||||||
this.$modal.msgSuccess('分配成功');
|
|
||||||
// this.visible = false;
|
|
||||||
this.getList();
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
this.$message.warning('请填写实际分配数量');
|
|
||||||
}
|
|
||||||
},
|
|
||||||
getList() {
|
|
||||||
// 获取产品Bom详细列表
|
|
||||||
getConOrderList({
|
|
||||||
...this.listQuery,
|
|
||||||
workOrderId: this.dataForm.id
|
|
||||||
}).then((response) => {
|
|
||||||
this.tableData = response.data.map(item => {
|
|
||||||
item.isEdit = false
|
|
||||||
return item
|
|
||||||
});
|
|
||||||
this.listQuery.total = response.data.total;
|
|
||||||
});
|
|
||||||
},
|
|
||||||
// 构造一行
|
|
||||||
// addRow() {
|
|
||||||
// const row = {
|
|
||||||
// bomId: this.dataForm.id,
|
|
||||||
// materialId: '',
|
|
||||||
// num: 0,
|
|
||||||
// materialCode: undefined,
|
|
||||||
// unit: undefined,
|
|
||||||
// remark: '',
|
|
||||||
// isEdit: true
|
|
||||||
// }
|
|
||||||
// this.tableData.push(row)
|
|
||||||
// },
|
|
||||||
init(id, isdetail) {
|
|
||||||
this.initData();
|
|
||||||
this.isdetail = isdetail || false;
|
|
||||||
this.dataForm.id = id || undefined;
|
|
||||||
this.visible = true;
|
|
||||||
// if (id) {
|
|
||||||
// this.idAttrShow = true
|
|
||||||
// } else {
|
|
||||||
// this.idAttrShow = false
|
|
||||||
// }
|
|
||||||
|
|
||||||
this.$nextTick(() => {
|
|
||||||
// this.$refs['dataForm'].resetFields();
|
|
||||||
|
|
||||||
if (this.dataForm.id) {
|
|
||||||
// 获取工单详情
|
|
||||||
this.urlOptions.infoURL(id).then(response => {
|
|
||||||
this.dataForm = response.data;
|
|
||||||
});
|
|
||||||
// 获取工单订单明细
|
|
||||||
this.getList();
|
|
||||||
} else {}
|
|
||||||
});
|
|
||||||
},
|
|
||||||
goback() {
|
|
||||||
this.$emit('refreshDataList');
|
|
||||||
this.visible = false;
|
|
||||||
// this.initData();
|
|
||||||
},
|
|
||||||
goEdit() {
|
|
||||||
this.isdetail = false;
|
|
||||||
},
|
|
||||||
// 新增 / 修改
|
|
||||||
addNew(id) {
|
|
||||||
this.addOrUpdateVisible = true;
|
|
||||||
this.$nextTick(() => {
|
|
||||||
this.$refs.addOrUpdate.init(id);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
<style scoped>
|
|
||||||
.drawer >>> .el-drawer {
|
|
||||||
border-radius: 8px 0 0 8px;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
.drawer >>> .el-form-item__label {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.drawer >>> .el-drawer__header {
|
|
||||||
margin: 0;
|
|
||||||
padding: 32px 32px 24px;
|
|
||||||
border-bottom: 1px solid #dcdfe6;
|
|
||||||
}
|
|
||||||
.drawer >>> .el-drawer__body {
|
|
||||||
flex: 1;
|
|
||||||
height: 1px;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
.drawer >>> .content {
|
|
||||||
padding: 30px 24px;
|
|
||||||
flex: 1;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
/* height: 100%; */
|
|
||||||
}
|
|
||||||
|
|
||||||
.drawer >>> .visual-part {
|
|
||||||
flex: 1 auto;
|
|
||||||
max-height: 30vh;
|
|
||||||
overflow: hidden;
|
|
||||||
overflow-y: scroll;
|
|
||||||
padding-right: 10px; /* 调整滚动条样式 */
|
|
||||||
}
|
|
||||||
|
|
||||||
.drawer >>> .el-form,
|
|
||||||
.drawer >>> .attr-list {
|
|
||||||
padding: 0 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.drawer-body__footer {
|
|
||||||
display: flex;
|
|
||||||
justify-content: flex-end;
|
|
||||||
padding: 18px;
|
|
||||||
}
|
|
||||||
.formContent {
|
|
||||||
font-size: 16px;
|
|
||||||
line-height: 1.5;
|
|
||||||
margin-bottom: 10px;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -2,26 +2,22 @@
|
|||||||
* @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-15 14:18:38
|
* @LastEditTime: 2023-11-06 17:08:22
|
||||||
* @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="false"
|
||||||
class="drawer"
|
class="drawer"
|
||||||
size="50%"> -->
|
size="50%">
|
||||||
<div class="app-container">
|
<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">
|
|
||||||
<el-button v-for="(work, index) in workOrderButton" :key="index" type="primary" @click="init(work.id, true)">{{ work.name }}</el-button>
|
|
||||||
</div>
|
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<div>
|
<div>
|
||||||
<h1>工单编码:{{ dataForm.code }}</h1>
|
<h2>工单编码:{{ dataForm.code }}</h2>
|
||||||
</div>
|
</div>
|
||||||
<small-title
|
<small-title
|
||||||
style="margin: 16px 0; padding-left: 8px"
|
style="margin: 16px 0; padding-left: 8px"
|
||||||
@ -51,9 +47,6 @@
|
|||||||
<el-col :span="8">关联产线:{{ dataForm.productLineNames }}</el-col>
|
<el-col :span="8">关联产线:{{ dataForm.productLineNames }}</el-col>
|
||||||
<el-col :span="8">物料计算方式:{{ dataForm.materialMethod === 1 ? '产品基础' : dataForm.materialMethod === 2 ? '工艺扩展' : '' }}</el-col>
|
<el-col :span="8">物料计算方式:{{ dataForm.materialMethod === 1 ? '产品基础' : dataForm.materialMethod === 2 ? '工艺扩展' : '' }}</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-row :gutter="20">
|
|
||||||
<el-col :span="8">关联工艺:{{ dataForm.processFlowName }}</el-col>
|
|
||||||
</el-row>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<small-title
|
<small-title
|
||||||
@ -64,7 +57,7 @@
|
|||||||
<div class="formContent">
|
<div class="formContent">
|
||||||
<el-row :gutter="20">
|
<el-row :gutter="20">
|
||||||
<el-col :span="8">订单创建时间:
|
<el-col :span="8">订单创建时间:
|
||||||
<span v-for="(item, index) in orderArray" :key="index" style="margin-right: 10px; white-space: normal">{{ item.createTime }}</span>
|
<span v-for="(item, index) in orderArray" :key="index" style="margin-right: 10px">{{ item.createTime }}</span>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="8">计划开始时间:{{ dataForm.planStartTime }}</el-col>
|
<el-col :span="8">计划开始时间:{{ dataForm.planStartTime }}</el-col>
|
||||||
<el-col :span="8">计划完成时间:{{ dataForm.planFinishTime }}</el-col>
|
<el-col :span="8">计划完成时间:{{ dataForm.planFinishTime }}</el-col>
|
||||||
@ -81,7 +74,7 @@
|
|||||||
</el-row>
|
</el-row>
|
||||||
<el-row :gutter="20">
|
<el-row :gutter="20">
|
||||||
<el-col :span="8">废片数量:{{ dataForm.nokQuantity }}</el-col>
|
<el-col :span="8">废片数量:{{ dataForm.nokQuantity }}</el-col>
|
||||||
<el-col :span="8">检测瑕疵数:{{ }}</el-col>
|
<el-col :span="8">检测瑕疵数:{{ 0 }}</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -133,18 +126,17 @@
|
|||||||
@pagination="getList" /> -->
|
@pagination="getList" /> -->
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- <div class="drawer-body__footer">
|
<div class="drawer-body__footer">
|
||||||
<el-button type="primary" @click="goback()">关闭</el-button>
|
<el-button type="primary" @click="goback()">关闭</el-button>
|
||||||
</div> -->
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</el-drawer>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
// import basicAdd from '../../core/mixins/basic-add';
|
// import basicAdd from '../../core/mixins/basic-add';
|
||||||
import { getCoreWO, getMaterialBomPage, getConOrderList, getCoreWOListById } from "@/api/base/coreWorkOrder";
|
import { getCoreWO, getMaterialBomPage, getConOrderList } from "@/api/base/coreWorkOrder";
|
||||||
import { orderList } from "@/api/base/orderManage";
|
import { orderList } 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";
|
||||||
|
|
||||||
@ -225,36 +217,10 @@ export default {
|
|||||||
orderArray: [],
|
orderArray: [],
|
||||||
visible: false,
|
visible: false,
|
||||||
isdetail: false,
|
isdetail: false,
|
||||||
workOrderButton: [],
|
|
||||||
processFlowList: []
|
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
created() {
|
mounted() {},
|
||||||
this.getDict()
|
|
||||||
},
|
|
||||||
mounted() {
|
|
||||||
if (this.$route.query.woIdString) {
|
|
||||||
const idList = this.$route.query.woIdString.split(',')
|
|
||||||
getCoreWOListById(idList).then(res => {
|
|
||||||
this.workOrderButton = res.data.map(work => {
|
|
||||||
return {
|
|
||||||
id: work.id,
|
|
||||||
name: work.name
|
|
||||||
}
|
|
||||||
})
|
|
||||||
this.init(this.workOrderButton[0].id, true)
|
|
||||||
})
|
|
||||||
} else {
|
|
||||||
this.init(this.$route.query.id, true)
|
|
||||||
}
|
|
||||||
},
|
|
||||||
methods: {
|
methods: {
|
||||||
getDict() {
|
|
||||||
// 工艺
|
|
||||||
getProcessFlowList().then(res => {
|
|
||||||
this.processFlowList = res.data || []
|
|
||||||
})
|
|
||||||
},
|
|
||||||
fitlerP(val) {
|
fitlerP(val) {
|
||||||
if (val) {
|
if (val) {
|
||||||
if (val === 1) {
|
if (val === 1) {
|
||||||
@ -354,14 +320,6 @@ export default {
|
|||||||
// 获取工单详情
|
// 获取工单详情
|
||||||
this.urlOptions.infoURL(id).then(response => {
|
this.urlOptions.infoURL(id).then(response => {
|
||||||
this.dataForm = response.data
|
this.dataForm = response.data
|
||||||
// 工艺名称
|
|
||||||
if (this.dataForm.processFlowId) {
|
|
||||||
this.processFlowList.filter(item => {
|
|
||||||
if (item.id === this.dataForm.processFlowId) {
|
|
||||||
this.dataForm.processFlowName = item.name
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
// 获取订单列表和用料列表
|
// 获取订单列表和用料列表
|
||||||
this.getList();
|
this.getList();
|
||||||
});
|
});
|
||||||
@ -443,7 +401,6 @@ export default {
|
|||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
width: 100%;
|
|
||||||
}
|
}
|
||||||
.action_btn {
|
.action_btn {
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -39,25 +39,24 @@
|
|||||||
v-if="materialVisible"
|
v-if="materialVisible"
|
||||||
ref="material"
|
ref="material"
|
||||||
@refreshDataList="closeDetail"></add-or-update>
|
@refreshDataList="closeDetail"></add-or-update>
|
||||||
<!-- 分配产量 -->
|
<!-- 查看详情 -->
|
||||||
<allocation
|
<detail
|
||||||
v-if="allocationVisible"
|
v-if="detailVisible"
|
||||||
ref="allocation"
|
ref="detail"
|
||||||
@refreshDataList="getDataList" />
|
@refreshDataList="closeDetail"></detail>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import AddOrUpdate from './add-or-updata';
|
import AddOrUpdate from './add-or-updata';
|
||||||
import AddWorkOrder from './addWorkOrder'
|
import AddWorkOrder from './addWorkOrder'
|
||||||
import Allocation from './allocation.vue';
|
import Detail from './detail.vue';
|
||||||
import basicPage from '../../core/mixins/basic-page';
|
import basicPage from '../../core/mixins/basic-page';
|
||||||
import { parseTime } from '../../core/mixins/code-filter';
|
import { parseTime } from '../../core/mixins/code-filter';
|
||||||
import {
|
import {
|
||||||
getCoreWOPage,
|
getCoreWOPage,
|
||||||
deleteCoreWO,
|
deleteCoreWO,
|
||||||
statusChange,
|
statusChange
|
||||||
getConOrderList
|
|
||||||
} from '@/api/base/coreWorkOrder';
|
} from '@/api/base/coreWorkOrder';
|
||||||
|
|
||||||
|
|
||||||
@ -114,7 +113,7 @@ export default {
|
|||||||
components: {
|
components: {
|
||||||
AddWorkOrder,
|
AddWorkOrder,
|
||||||
AddOrUpdate,
|
AddOrUpdate,
|
||||||
Allocation
|
Detail
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
@ -124,7 +123,6 @@ export default {
|
|||||||
},
|
},
|
||||||
detailVisible: false,
|
detailVisible: false,
|
||||||
materialVisible: false,
|
materialVisible: false,
|
||||||
allocationVisible: false,
|
|
||||||
tableProps,
|
tableProps,
|
||||||
tableBtn: [
|
tableBtn: [
|
||||||
this.$auth.hasPermi(`base:core-work-order:update`)
|
this.$auth.hasPermi(`base:core-work-order:update`)
|
||||||
@ -254,8 +252,7 @@ export default {
|
|||||||
type: 'input',
|
type: 'input',
|
||||||
label: '工单名称',
|
label: '工单名称',
|
||||||
placeholder: '工单名称',
|
placeholder: '工单名称',
|
||||||
param: 'name',
|
param: 'name'
|
||||||
defaultSelect: ''
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: 'select',
|
type: 'select',
|
||||||
@ -301,14 +298,7 @@ export default {
|
|||||||
],
|
],
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
mounted() {
|
created() {},
|
||||||
console.log(this.$route.query.workOrderName)
|
|
||||||
if (this.$route.query.workOrderName) {
|
|
||||||
this.listQuery.name = this.$route.query.workOrderName;
|
|
||||||
this.formConfig[0].defaultSelect = this.$route.query.workOrderName;
|
|
||||||
}
|
|
||||||
this.getDataList()
|
|
||||||
},
|
|
||||||
methods: {
|
methods: {
|
||||||
refreshWorkOrder(val) {
|
refreshWorkOrder(val) {
|
||||||
console.log(val)
|
console.log(val)
|
||||||
@ -332,17 +322,11 @@ export default {
|
|||||||
this.$refs.material.init(val.data, true);
|
this.$refs.material.init(val.data, true);
|
||||||
});
|
});
|
||||||
} else if (val.type === 'detail') {
|
} else if (val.type === 'detail') {
|
||||||
this.$router.push({
|
this.detailVisible = true;
|
||||||
path: '/core/core-work-order-detail',
|
this.addOrEditTitle = "详情";
|
||||||
query:{
|
this.$nextTick(() => {
|
||||||
id: val.data.id
|
this.$refs.detail.init(val.data.id, true);
|
||||||
}
|
});
|
||||||
});
|
|
||||||
// this.detailVisible = true;
|
|
||||||
// this.addOrEditTitle = "详情";
|
|
||||||
// this.$nextTick(() => {
|
|
||||||
// this.$refs.detail.init(val.data.id, true);
|
|
||||||
// });
|
|
||||||
} else {
|
} else {
|
||||||
const param = {
|
const param = {
|
||||||
id: val.data.id,
|
id: val.data.id,
|
||||||
@ -362,22 +346,18 @@ export default {
|
|||||||
}
|
}
|
||||||
console.log('22',val)
|
console.log('22',val)
|
||||||
this.$confirm(`确定对${'[工单名称=' + val.data.name + ']'}进行${val.type}操作?`, "提示", {
|
this.$confirm(`确定对${'[工单名称=' + val.data.name + ']'}进行${val.type}操作?`, "提示", {
|
||||||
confirmButtonText: "确定",
|
confirmButtonText: "确定",
|
||||||
cancelButtonText: "取消",
|
cancelButtonText: "取消",
|
||||||
type: "warning",
|
type: "warning",
|
||||||
})
|
})
|
||||||
.then(() => {
|
.then(() => {
|
||||||
statusChange(param).then(({ data }) => {
|
statusChange(param).then(({ data }) => {
|
||||||
this.$message({
|
this.$message({
|
||||||
message: '操作成功!',
|
message: '暂停成功!',
|
||||||
type: 'success',
|
type: 'success',
|
||||||
duration: 1500,
|
duration: 1500,
|
||||||
onClose: () => {
|
onClose: () => {
|
||||||
this.getDataList();
|
this.getDataList();
|
||||||
// 分配产量
|
|
||||||
if (param.status === 4) {
|
|
||||||
this.allocationOrder(param);
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
@ -385,28 +365,6 @@ export default {
|
|||||||
.catch(() => { });
|
.catch(() => { });
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
allocationOrder(val) {
|
|
||||||
// 获取订单列表
|
|
||||||
getConOrderList({
|
|
||||||
workOrderId: val.id,
|
|
||||||
}).then((response) => {
|
|
||||||
if (response.data.length > 0) {
|
|
||||||
this.$confirm('工单结束,可分配产量', "提示", {
|
|
||||||
confirmButtonText: "确定",
|
|
||||||
cancelButtonText: "取消",
|
|
||||||
type: "warning",
|
|
||||||
})
|
|
||||||
.then(() => {
|
|
||||||
this.allocationVisible = true;
|
|
||||||
this.$nextTick(() => {
|
|
||||||
this.$refs.allocation.init(val.id, true);
|
|
||||||
});
|
|
||||||
})
|
|
||||||
.catch(() => { });
|
|
||||||
}
|
|
||||||
// this.listQuery.total = response.data.total;
|
|
||||||
});
|
|
||||||
},
|
|
||||||
buttonClick(val) {
|
buttonClick(val) {
|
||||||
switch (val.btnName) {
|
switch (val.btnName) {
|
||||||
case 'search':
|
case 'search':
|
||||||
|
@ -150,37 +150,48 @@ export default {
|
|||||||
getData() {
|
getData() {
|
||||||
this.urlOptions.getDataListURL(this.listQuery).then(res => {
|
this.urlOptions.getDataListURL(this.listQuery).then(res => {
|
||||||
//构造数据
|
//构造数据
|
||||||
this.tableData = []
|
if (res.data) {
|
||||||
if (Object.values(res.data.coreProductionLineMonthVOS).length > 0) {
|
|
||||||
this.setHeader()
|
this.setHeader()
|
||||||
let yAllData = [], proNameList = []
|
res.data.forEach(item => {
|
||||||
Object.values(res.data.coreProductionLineMonthVOS).forEach(pro => {
|
console.log('111', item.recordTime, moment(item.recordTime).format('DD'))
|
||||||
// 一条产品的数据
|
this.tableData.push({
|
||||||
let yData = []
|
proName: item.proName,
|
||||||
const tempData = {
|
specifications: item.specifications
|
||||||
proName: pro[0].proName,
|
|
||||||
specifications: pro[0].specifications,
|
|
||||||
sum: 0
|
|
||||||
}
|
|
||||||
proNameList.push(pro[0].proName)
|
|
||||||
pro.forEach(item => {
|
|
||||||
// 产品下的各时间点的数据
|
|
||||||
// 截取日
|
|
||||||
const day = parseTime(item.recordTime).slice(8, 10) < 10 ? parseTime(item.recordTime).slice(9, 10) : parseTime(item.recordTime).slice(8, 10)
|
|
||||||
// console.log('!1', day < 10)
|
|
||||||
tempData['value' + day] = item.countSum
|
|
||||||
tempData.sum += item.countSum
|
|
||||||
yData[day] = item.countSum
|
|
||||||
// yData.push(item.countSum)
|
|
||||||
})
|
})
|
||||||
this.tableData.push(tempData)
|
|
||||||
yAllData.push(yData)
|
|
||||||
})
|
|
||||||
this.$nextTick(() => {
|
|
||||||
this.$refs.lineChart.initChart(this.xData, yAllData, proNameList)
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
console.log('饿', this.tableData)
|
||||||
|
// res.data.data.forEach(item => {
|
||||||
|
// let yData = []
|
||||||
|
// lineName.push(item.lineName)
|
||||||
|
// // let obj = {}
|
||||||
|
// // obj.lineName = item.lineName,
|
||||||
|
// // obj.sum = item.sum,
|
||||||
|
// item.data.forEach((ele, index) => {
|
||||||
|
// // console.log(ele)
|
||||||
|
// ele.children.forEach((e) => {
|
||||||
|
// // let yData = []
|
||||||
|
// yData.push(e.dynamicValue)
|
||||||
|
// })
|
||||||
|
// })
|
||||||
|
// yAllData.push(yData)
|
||||||
|
// });
|
||||||
|
// console.log(lineName)
|
||||||
|
// } else {
|
||||||
|
// this.tableProps = arr
|
||||||
|
// this.tableData = []
|
||||||
|
// xData = []
|
||||||
|
// yAllData = []
|
||||||
|
// lineName = []
|
||||||
|
// }
|
||||||
|
// res.data.data[0].data[0].children.forEach((item, index) => {
|
||||||
|
// // console.log(item)
|
||||||
|
// yData.push(item.dynamicValue)
|
||||||
|
// // let data = 'data' + Number(index+1)
|
||||||
|
// // obj['' + item.dynamicName + ''] = item.dynamicValue
|
||||||
|
// })
|
||||||
|
// console.log(this.yData)
|
||||||
|
// this.$refs.lineChart.initChart(this.xData, yAllData, lineName)
|
||||||
// this.total = response.data.total;
|
// this.total = response.data.total;
|
||||||
// this.dataListLoading = false;
|
// this.dataListLoading = false;
|
||||||
});
|
});
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import { getPdlDataOneDay } from '@/api/core/monitoring/data24'
|
import { getPdlDataOneDay } from '@/api/core/monitoring/data24'
|
||||||
import { parseTime } from '../../mixins/code-filter';
|
import { parseTime } from '../../mixins/code-filter';
|
||||||
import { getSchedulingMonitoringRecord } from '@/api/monitoring/teamProduction'
|
import { Loading } from 'element-ui';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'productionLineData24',
|
name: 'productionLineData24',
|
||||||
@ -48,8 +48,6 @@ export default {
|
|||||||
tableData: [],
|
tableData: [],
|
||||||
tableProps: [],
|
tableProps: [],
|
||||||
spanInfo: {},
|
spanInfo: {},
|
||||||
monitorList: [],
|
|
||||||
ResData: []
|
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
computed: {},
|
computed: {},
|
||||||
@ -58,7 +56,7 @@ export default {
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
/** 构建tableProps - 依据第一个元素所提供的信息 */
|
/** 构建tableProps - 依据第一个元素所提供的信息 */
|
||||||
async buildProps() {
|
buildProps() {
|
||||||
// 获取当前时间
|
// 获取当前时间
|
||||||
var currentTime = new Date();
|
var currentTime = new Date();
|
||||||
let timeArr = []
|
let timeArr = []
|
||||||
@ -67,6 +65,7 @@ export default {
|
|||||||
for (let i = 0; i < 24; i ++) {
|
for (let i = 0; i < 24; i ++) {
|
||||||
timeArr.unshift(new Date(currentTime.getFullYear(), currentTime.getMonth(), currentTime.getDate(), currentTime.getHours() - i, 0, 0).getTime())
|
timeArr.unshift(new Date(currentTime.getFullYear(), currentTime.getMonth(), currentTime.getDate(), currentTime.getHours() - i, 0, 0).getTime())
|
||||||
}
|
}
|
||||||
|
console.log("24小时内的开始时间:" + timeArr, timeArr.length);
|
||||||
for(const times of timeArr) {
|
for(const times of timeArr) {
|
||||||
const subprop = {
|
const subprop = {
|
||||||
label: parseTime(times),
|
label: parseTime(times),
|
||||||
@ -74,7 +73,7 @@ export default {
|
|||||||
children: [
|
children: [
|
||||||
{ prop: times + '_up', label: '上片数据' },
|
{ prop: times + '_up', label: '上片数据' },
|
||||||
{ prop: times + '_down', label: '下片数据' },
|
{ prop: times + '_down', label: '下片数据' },
|
||||||
{ prop: times + '_area', label: '良品面积' },
|
{ prop: times + '_good', label: '良品面积' },
|
||||||
{ prop: times + '_bad', label: '报废数据' },
|
{ prop: times + '_bad', label: '报废数据' },
|
||||||
{ prop: times + '_percent', label: '报废比例(%)' }
|
{ prop: times + '_percent', label: '报废比例(%)' }
|
||||||
]
|
]
|
||||||
@ -82,13 +81,7 @@ export default {
|
|||||||
this.arr.push(subprop)
|
this.arr.push(subprop)
|
||||||
}
|
}
|
||||||
this.tableProps = this.arr
|
this.tableProps = this.arr
|
||||||
const paramsTime = [parseTime(timeArr[0]), parseTime(timeArr[23])]
|
console.log('111', this.tableProps)
|
||||||
await getSchedulingMonitoringRecord({checkTime: paramsTime}).then(res =>{
|
|
||||||
// 报废数据
|
|
||||||
this.monitorList = res.data.data
|
|
||||||
console.log('报废', this.monitorList)
|
|
||||||
this.buildData(this.ResData);
|
|
||||||
})
|
|
||||||
},
|
},
|
||||||
setRowSpan(arr) {
|
setRowSpan(arr) {
|
||||||
let count = 0
|
let count = 0
|
||||||
@ -105,47 +98,28 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
console.log('打印数组长度', this.spanArr)
|
||||||
},
|
},
|
||||||
|
|
||||||
/** 把 list 里的数据转换成 tableProps 对应的格式 */
|
/** 把 list 里的数据转换成 tableProps 对应的格式 */
|
||||||
convertList(list) {
|
convertList(list) {
|
||||||
// let sectionArr= []
|
let sectionArr= []
|
||||||
let temp = Object.values(list.datamap)
|
console.log('打印看下数据list', list)
|
||||||
console.log('111', temp)
|
list.forEach((ele, index) => {
|
||||||
|
let tempData = {}
|
||||||
temp.forEach(item => {
|
tempData[ele.recordTime + '_up'] = ele.inputNum
|
||||||
// 每条产线下的数据list
|
tempData[ele.recordTime + '_down'] = ele.outputNum
|
||||||
console.log('22', item)
|
tempData[ele.recordTime + '_up'] = ele.inputNum
|
||||||
let lineData = {}
|
tempData['proLineName'] = ele.lineName
|
||||||
lineData['proLineName'] = item[0].lineName
|
tempData['workOrderName'] = ele.workOrderName
|
||||||
let works = [], specs = []
|
tempData['spec'] = ele.specifications
|
||||||
item.forEach(it => {
|
this.tableData.push(tempData)
|
||||||
works.push(it.workOrderName)
|
console.log('看看数据', this.tableData, tempData)
|
||||||
specs.push(it.specifications)
|
const { proLineName } = tempData
|
||||||
lineData[it.recordTime + '_up'] = it.inputNum
|
sectionArr.push(proLineName)
|
||||||
lineData[it.recordTime + '_down'] = it.outputNum
|
|
||||||
lineData[it.recordTime + '_area'] = it.area
|
|
||||||
})
|
|
||||||
console.log('你好', this.monitorList)
|
|
||||||
this.monitorList.forEach(m => {
|
|
||||||
console.log('455', m)
|
|
||||||
if (m.lineName === lineData.proLineName) {
|
|
||||||
m.data.forEach(bad => {
|
|
||||||
// 转成时间戳
|
|
||||||
// console.log('233', Date.parse(bad.dynamicName))
|
|
||||||
const stamp = Date.parse(bad.dynamicName)
|
|
||||||
lineData[stamp + '_bad'] = bad.dynamicValue
|
|
||||||
lineData[stamp + '_percent'] = (lineData[stamp + '_bad'] / lineData[stamp + '_down'] * 100).toFixed(2) + '%'
|
|
||||||
})
|
|
||||||
}
|
|
||||||
})
|
|
||||||
lineData['workOrderName'] = works.join(',')
|
|
||||||
lineData['spec'] = specs.join(',')
|
|
||||||
this.tableData.push(lineData)
|
|
||||||
})
|
})
|
||||||
console.log('打印', this.tableData)
|
this.setRowSpan(sectionArr)
|
||||||
// this.setRowSpan(sectionArr)
|
console.log('工段名称列表', sectionArr)
|
||||||
// console.log('工段名称列表', sectionArr)
|
|
||||||
},
|
},
|
||||||
|
|
||||||
buildData(data) {
|
buildData(data) {
|
||||||
@ -167,9 +141,8 @@ export default {
|
|||||||
},
|
},
|
||||||
|
|
||||||
async getList() {
|
async getList() {
|
||||||
await this.urlOptions.getDataListURL().then(res => {
|
this.urlOptions.getDataListURL().then(res => {
|
||||||
console.log('看看数据', res)
|
console.log('看看数据', res)
|
||||||
this.ResData = res.data
|
|
||||||
this.arr = [
|
this.arr = [
|
||||||
{
|
{
|
||||||
prop: 'proLineName',
|
prop: 'proLineName',
|
||||||
@ -191,6 +164,7 @@ export default {
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
this.buildProps();
|
this.buildProps();
|
||||||
|
this.buildData(res.data);
|
||||||
})
|
})
|
||||||
|
|
||||||
// // const data = this.res.data;
|
// // const data = this.res.data;
|
||||||
|
@ -29,8 +29,7 @@
|
|||||||
filterable
|
filterable
|
||||||
:disabled="isdetail"
|
:disabled="isdetail"
|
||||||
style="width: 100%"
|
style="width: 100%"
|
||||||
placeholder="请选择设备名称"
|
placeholder="请选择设备名称">
|
||||||
@change="setConfig">
|
|
||||||
<el-option
|
<el-option
|
||||||
v-for="dict in eqList"
|
v-for="dict in eqList"
|
||||||
:key="dict.id"
|
:key="dict.id"
|
||||||
@ -79,7 +78,7 @@
|
|||||||
type="date"
|
type="date"
|
||||||
:disabled="isdetail"
|
:disabled="isdetail"
|
||||||
format='yyyy-MM-dd'
|
format='yyyy-MM-dd'
|
||||||
value-format="timestamp"
|
value-format="yyyy-MM-dd HH:mm:ss"
|
||||||
placeholder="选择巡检时间" />
|
placeholder="选择巡检时间" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
@ -203,13 +202,6 @@ export default {
|
|||||||
const configres = await getcheckConfigByEqList()
|
const configres = await getcheckConfigByEqList()
|
||||||
this.configList = configres.data
|
this.configList = configres.data
|
||||||
},
|
},
|
||||||
async setConfig() {
|
|
||||||
const configres = await getcheckConfigByEqList({equipmentId: this.dataForm.equipmentId})
|
|
||||||
this.configList = configres.data
|
|
||||||
this.dataForm.equipmentCode = this.eqList.filter(item => {
|
|
||||||
return item.id === this.dataForm.equipmentId
|
|
||||||
})[0].code
|
|
||||||
},
|
|
||||||
goback() {
|
goback() {
|
||||||
this.$emit('refreshDataList');
|
this.$emit('refreshDataList');
|
||||||
this.visible = false;
|
this.visible = false;
|
||||||
@ -234,7 +226,7 @@ export default {
|
|||||||
this.$refs['dataForm'].resetFields();
|
this.$refs['dataForm'].resetFields();
|
||||||
|
|
||||||
if (this.dataForm.id) {
|
if (this.dataForm.id) {
|
||||||
// 获取巡检记录
|
// 获取备品备件
|
||||||
getEqCheckLog(this.dataForm.id).then(response => {
|
getEqCheckLog(this.dataForm.id).then(response => {
|
||||||
this.formLoading = false
|
this.formLoading = false
|
||||||
this.dataForm = response.data;
|
this.dataForm = response.data;
|
||||||
|
@ -58,7 +58,6 @@ import moment from 'moment';
|
|||||||
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
||||||
import addRecord from './addRecord.vue';
|
import addRecord from './addRecord.vue';
|
||||||
import { exportCheckLogExcel } from '@/api/equipment/base/inspection/record'
|
import { exportCheckLogExcel } from '@/api/equipment/base/inspection/record'
|
||||||
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');
|
||||||
|
|
||||||
@ -91,13 +90,13 @@ export default {
|
|||||||
: undefined,
|
: undefined,
|
||||||
].filter((v) => v),
|
].filter((v) => v),
|
||||||
tableProps: [
|
tableProps: [
|
||||||
{ prop: 'configName', label: '配置名称' },
|
{ prop: 'repairOrderNumber', label: '配置名称' },
|
||||||
{ prop: 'equipmentName', label: '设备名称' },
|
{ prop: 'maintenanceDuration', label: '设备名称' },
|
||||||
// { prop: 'lineName', label: '数据来源' },
|
{ prop: 'lineName', label: '数据来源' },
|
||||||
// { prop: 'sectionName', label: '计划巡检时间' },
|
{ prop: 'sectionName', label: '计划巡检时间' },
|
||||||
{ prop: 'actualTime', label: '实际巡检时间', filter: parseTime },
|
{ prop: 'equipmentName', label: '实际巡检时间' },
|
||||||
// { prop: 'maintenanceDetail', label: '完成状态' },
|
{ prop: 'maintenanceDetail', label: '完成状态' },
|
||||||
{ prop: 'responsible', label: '巡检人' },
|
{ prop: 'repairman', label: '巡检人' },
|
||||||
],
|
],
|
||||||
searchBarFormConfig: [
|
searchBarFormConfig: [
|
||||||
{
|
{
|
||||||
@ -223,7 +222,7 @@ export default {
|
|||||||
},
|
},
|
||||||
// 表单参数
|
// 表单参数
|
||||||
form: {},
|
form: {},
|
||||||
basePath: '/base/equipment-check-log',
|
basePath: '/base/equipment-repair-log',
|
||||||
mode: null,
|
mode: null,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
@ -202,7 +202,7 @@ export default {
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
init(data, param) {
|
init(data, param) {
|
||||||
this.form.orderId = data
|
this.form.orderId = data.id
|
||||||
this.getList()
|
this.getList()
|
||||||
if (param === 'add') {
|
if (param === 'add') {
|
||||||
this.isBind = false
|
this.isBind = false
|
||||||
|
Loading…
Reference in New Issue
Block a user