计件薪酬、成品线看板

master
Yangwl 1 year ago
parent b94f462316
commit 49e7dd494e

@ -0,0 +1,10 @@
import request from '@/utils/request'
// 获取工厂下拉列表
export function finishProductBoard(data) {
return request({
url: '/mes/mesborad/finishProductBoard',
method: 'post',
data: data
});
}

@ -0,0 +1,51 @@
import request from '@/utils/request'
// 查询unitprice列表
export function listChildprocess(query) {
return request({
url: '/mes/childprocess/list',
method: 'get',
params: query
});
}
// 查询全部列表
export function listChildprocessall(query) {
return request({
url: '/mes/childprocess/listall',
method: 'get',
params: query
});
}
// 查询unitprice详细
export function getChildprocess(childprocessId) {
return request({
url: '/mes/childprocess/' + childprocessId,
method: 'get'
});
}
// 新增unitprice
export function addChildprocess(data) {
return request({
url: '/mes/childprocess',
method: 'post',
data: data
});
}
// 修改unitprice
export function updateChildprocesse(data) {
return request({
url: '/mes/childprocess',
method: 'put',
data: data
});
}
// 删除unitprice
export function delChildprocesse(childprocessId) {
return request({
url: '/mes/childprocess/' + childprocessId,
method: 'delete'
});
}

@ -0,0 +1,44 @@
import request from '@/utils/request'
// 查询unitPrice列表
export function listUnitPrice(query) {
return request({
url: '/mes/unitPrice/list',
method: 'get',
params: query
});
}
// 查询unitPrice详细
export function getUnitPrice(picId) {
return request({
url: '/mes/unitPrice/' + picId,
method: 'get'
});
}
// 新增unitPrice
export function addUnitPrice(data) {
return request({
url: '/mes/unitPrice',
method: 'post',
data: data
});
}
// 修改unitPrice
export function updateUnitPrice(data) {
return request({
url: '/mes/unitPrice',
method: 'put',
data: data
});
}
// 删除unitPrice
export function delUnitPrice(picId) {
return request({
url: '/mes/unitPrice/' + picId,
method: 'delete'
});
}

@ -8,7 +8,14 @@ export function listProduct(query) {
params: query
});
}
// 查询物料信息列表
export function listProductall(query) {
return request({
url: '/wms/product/listall',
method: 'get',
params: query
});
}
// 查询物料信息详细
export function getProduct(productId) {
return request({

Binary file not shown.

After

Width:  |  Height:  |  Size: 202 KiB

@ -127,7 +127,12 @@ export const constantRoutes = [
component: () => import("@/views/kanban/quality/circle"),
hidden: true,
},
{
path: "/kanban/finishproduct",
component: () => import("@/views/kanban/finishproduct/index"),
hidden: true,
},
]
// 动态路由,基于用户权限动态去加载

@ -1,10 +1,12 @@
<template>
<el-carousel :interval="3000" :height="dataHeight" indicator-position="outside" @change="handleScroll">
<div class="fullscreen-carousel">
<el-carousel :interval="3000" indicator-position="outside" @change="handleScroll">
<el-carousel-item v-for="(item,k) in 2" :key="item" >
<h3 v-if="k===0"><cards :dataProp="cards" /></h3>
<h3 v-if="k===1"><cards2 :dataProp="cardss"/></h3>
</el-carousel-item>
</el-carousel>
</div>
</template>
<script>
@ -140,12 +142,13 @@ export default {
}
</script>
<style scoped>
<style>
.fullscreen-carousel {
height: 100vh; /* 设置高度为视口高度 */
width: 100%; /* 设置宽度为100% */
}
.el-carousel__container{
height: 100vh; /* 设置高度为视口高度 */
width: 100%; /* 设置宽度为100% */
}
</style>

@ -1,36 +1,167 @@
<!--<template>-->
<!-- <div id="data-view">-->
<!-- <div id="dv-full-screen-container" >-->
<!--&lt;!&ndash; <p class="time">&ndash;&gt;-->
<!--&lt;!&ndash; {{ gettimedata }}&ndash;&gt;-->
<!--&lt;!&ndash; </p>&ndash;&gt;-->
<!-- <top-header />-->
<!-- <div class="main-content">-->
<!-- <digital-flop />-->
<!-- <div class="block-left-right-content">-->
<!--&lt;!&ndash; <ranking-board />&ndash;&gt;-->
<!-- <div class="block-top-bottom-content">-->
<!--&lt;!&ndash; <div class="block-top-content">&ndash;&gt;-->
<!--&lt;!&ndash; <rose-chart />&ndash;&gt;-->
<!--&lt;!&ndash; <water-level-chart />&ndash;&gt;-->
<!--&lt;!&ndash; <scroll-board />&ndash;&gt;-->
<!-- <carousel />-->
<!--&lt;!&ndash; </div>&ndash;&gt;-->
<!--&lt;!&ndash; <cards2 />&ndash;&gt;-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!--</template>-->
<!--<script>-->
<!--import topHeader from './topHeader'-->
<!--import digitalFlop from './digitalFlop'-->
<!--import rankingBoard from './rankingBoard'-->
<!--import roseChart from './roseChart'-->
<!--import waterLevelChart from './waterLevelChart'-->
<!--import scrollBoard from './scrollBoard'-->
<!--import carousel from './carousel'-->
<!--import cards2 from './cards2'-->
<!--import moment from "moment";-->
<!--export default {-->
<!-- name: 'DataView',-->
<!-- components: {-->
<!-- topHeader,-->
<!-- digitalFlop,-->
<!-- rankingBoard,-->
<!-- roseChart,-->
<!-- waterLevelChart,-->
<!-- scrollBoard,-->
<!-- cards2,-->
<!-- carousel-->
<!-- },-->
<!-- data () {-->
<!-- return {-->
<!-- gettimedata: "",-->
<!-- }-->
<!-- },-->
<!-- mounted() {-->
<!-- this.gettime();-->
<!-- },-->
<!-- methods: {-->
<!-- gettime() {-->
<!-- this.gettimedata = moment().format("YYYY-MM-DD HH:mm:ss ");-->
<!-- setInterval(() => {-->
<!-- this.gettimedata = moment().format("YYYY-MM-DD HH:mm:ss ");-->
<!-- }, 1000);-->
<!-- },-->
<!-- }-->
<!--}-->
<!--</script>-->
<!--<style lang="less">-->
<!--#data-view {-->
<!-- width: 100%;-->
<!-- height: 100%;-->
<!-- background-color: #030409;-->
<!-- color: #fff;-->
<!-- #dv-full-screen-container {-->
<!-- background-image: url('../../../assets/images/bg-exception.png');-->
<!-- background-size: 100% 100%;-->
<!-- box-shadow: 0 0 3px blue;-->
<!-- display: flex;-->
<!-- flex-direction: column;-->
<!-- overflow: auto;-->
<!-- }-->
<!-- .main-content {-->
<!-- flex: 1;-->
<!-- display: flex;-->
<!-- flex-direction: column;-->
<!-- }-->
<!-- .block-left-right-content {-->
<!-- flex: 1;-->
<!-- display: flex;-->
<!-- margin-top: 10px;-->
<!-- }-->
<!-- .block-top-bottom-content {-->
<!-- flex: 1;-->
<!-- display: flex;-->
<!-- flex-direction: column;-->
<!-- box-sizing: border-box;-->
<!-- padding-left: 0px;-->
<!-- }-->
<!-- .block-top-content {-->
<!-- height: 55%;-->
<!-- display: flex;-->
<!-- flex-grow: 0;-->
<!-- box-sizing: border-box;-->
<!-- padding-bottom: 20px;-->
<!-- }-->
<!-- .time {-->
<!-- font-size: 30px;-->
<!-- font-weight: 400;-->
<!-- color: #ffffff;-->
<!-- line-height: 71px;-->
<!-- position: fixed;-->
<!-- top: 0;-->
<!-- z-index: 9999;;-->
<!-- padding: 10px;-->
<!-- width: 100%;-->
<!-- }-->
<!--}-->
<!--</style>-->
<template>
<div id="data-view">
<div id="dv-full-screen-container" style="width:100vw;height:100vh">
<!-- <p class="time">-->
<!-- {{ gettimedata }}-->
<!-- </p>-->
<dv-full-screen-container>
<top-header />
<div class="main-content">
<digital-flop />
<div class="block-left-right-content">
<carousel />
<!-- <div class="block-left-right-content">-->
<!-- <ranking-board />-->
<div class="block-top-bottom-content">
<!-- <div class="block-top-bottom-content">-->
<!-- <div class="block-top-content">-->
<!-- <rose-chart />-->
<!-- <water-level-chart />-->
<!-- <scroll-board />-->
<carousel />
<!-- </div>-->
<!-- <cards2 />-->
</div>
</div>
<!-- <cards />-->
<!-- </div>-->
<!-- </div>-->
</div>
</div>
</dv-full-screen-container>
</div>
</template>
<script>
@ -40,9 +171,8 @@ import rankingBoard from './rankingBoard'
import roseChart from './roseChart'
import waterLevelChart from './waterLevelChart'
import scrollBoard from './scrollBoard'
import cards from './cards'
import carousel from './carousel'
import cards2 from './cards2'
import moment from "moment";
export default {
name: 'DataView',
@ -53,25 +183,13 @@ export default {
roseChart,
waterLevelChart,
scrollBoard,
cards2,
cards,
carousel
},
data () {
return {
gettimedata: "",
}
},
mounted() {
this.gettime();
return {}
},
methods: {
gettime() {
this.gettimedata = moment().format("YYYY-MM-DD HH:mm:ss ");
setInterval(() => {
this.gettimedata = moment().format("YYYY-MM-DD HH:mm:ss ");
}, 1000);
},
}
methods: {}
}
</script>
@ -88,7 +206,6 @@ export default {
box-shadow: 0 0 3px blue;
display: flex;
flex-direction: column;
overflow: auto;
}
.main-content {
@ -100,7 +217,7 @@ export default {
.block-left-right-content {
flex: 1;
display: flex;
margin-top: 10px;
margin-top: 20px;
}
.block-top-bottom-content {
@ -108,7 +225,7 @@ export default {
display: flex;
flex-direction: column;
box-sizing: border-box;
padding-left: 0px;
padding-left: 20px;
}
.block-top-content {
@ -118,18 +235,5 @@ export default {
box-sizing: border-box;
padding-bottom: 20px;
}
.time {
font-size: 30px;
font-weight: 400;
color: #ffffff;
line-height: 71px;
position: fixed;
top: 0;
z-index: 9999;;
padding: 10px;
width: 100%;
}
}
</style>

@ -0,0 +1,104 @@
<template>
<div class="bottom-right-table-1">
<dv-border-box-6>
<div class="table-name">
<dv-scroll-board :config="getScrollBoardConfig()" />
</div>
</dv-border-box-6>
</div>
</template>
<script>
export default {
name: 'BottomRightTable1',
props: {
tableData: {
type: Array,
default: () => []
}
},
data () {
return {
config:{
header: ['工单号', '产线名称', '产品名称', '生产数量', '单位'],
data: [
],
index: true,
columnWidth: [100, 150, 100, 501, 200, 52],
align: ['center'],
oddRowBGC: 'rgba(9, 37, 50, 0.4)',
evenRowBGC: 'rgba(10, 32, 50, 0.3)'
}
}
},
watch: {
// tableData config data
tableData(newVal) {
console.log("newVal-",newVal)
this.config.data = this.formatTableData(newVal);
}
},
methods: {
getScrollBoardConfig() {
return {
header: ['工单号', '产线名称', '产品名称', '生产数量', '单位'],
data: this.config.data,
index: true,
columnWidth: [100, 150, 100, 501, 200, 52],
align: ['center'],
oddRowBGC: 'rgba(9, 37, 50, 0.4)',
evenRowBGC: 'rgba(10, 32, 50, 0.3)'
}
},
// tableData
formatTableData(data = this.tableData) {
return data.map(item => [
item.workorder_code,
item.equipment_name,
item.product_name,
item.total_quantity,
item.unit
]);
}
}
};
</script>
<style lang="less">
.bottom-right-table-1 {
width: calc(~"100% + 10px");
height: 100%;
margin: 0 -5px;
.border-box-content {
padding: 20px;
box-sizing: border-box;
}
.table-name {
height: 330px;
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 15px;
img {
width: 79px;
height: 30px;
margin-right: 5px;
}
}
.grid-container {
display: grid;
grid-template-rows: repeat(2, auto); /* 每行的高度为内容的高度 */
gap: 10px; /* 调整行之间的垂直间距 */
}
.dv-scroll-board {
height: calc(~"100% - 0px");
}
}
</style>

@ -0,0 +1,112 @@
<template>
<div class="top-left-cmp">
<div class="dc-left">
<dv-border-box-5>
<div class="main-value"><span>{{ data.sumplanquantity }}</span></div>
<!-- <div class="compare-value"><span>同比</span>81</div>-->
<!-- <div class="compare-value"><span>环比</span>15</div>-->
</dv-border-box-5>
<div class="dc-text">
当日产量
<dv-decoration-3 style="width:200px;height:20px;" />
</div>
</div>
<div class="dc-right">
<div class="dc-text">
当日计划
<dv-decoration-3 style="width:200px;height:20px;" />
</div>
<dv-border-box-5 :reverse="true">
<div class="main-value"><span>{{ data.sumFinshQuantity }}</span></div>
<!-- <div class="compare-value"><span>同比</span>66</div>-->
<!-- <div class="compare-value"><span>环比</span>9</div>-->
</dv-border-box-5>
</div>
</div>
</template>
<script>
export default {
name: 'TopLeftCmp',
props: {
data: []
},
data() {
return {
// Accessing the prop directly in the data function
receivedValue: this.data,
};
},
watch: {
data(newVal) {
// Watching the data prop for changes
this.receivedValue = newVal;
},
},
}
</script>
<style lang="less">
.top-left-cmp {
display: flex;
.dc-left, .dc-right {
width: 50%;
}
.dv-border-box-5 {
height: 60%;
}
.dc-text {
display: flex;
flex-direction: column;
height: 40%;
font-size: 20px;
padding: 20px;
box-sizing: border-box;
}
.dc-left .dc-text {
align-items: flex-end;
justify-content: center;
}
.dc-right .dc-text {
justify-content: flex-start;
padding-top: 20px;
}
.dc-left .dv-border-box-5 {
padding: 30px;
box-sizing: border-box;
}
.dc-right .dv-border-box-5 {
padding: 40px;
padding-left: 75px;
box-sizing: border-box;
}
.main-value {
font-weight: bold;
font-size: 30px;
span {
font-size: 40px;
color: #00c0ff;
margin-right: 15px;
}
}
.compare-value {
height: 35px;
line-height: 35px;
font-size: 18px;
span {
margin-right: 30px;
}
}
}
</style>

@ -0,0 +1,101 @@
<template>
<div class="top-middle-cmp">
<div ref="chart" style="width: 100%; height: 100%;"></div>
</div>
</template>
<script>
import * as echarts from 'echarts';
export default {
name: 'TopMiddleCmp',
props: ['data'],
data() {
return {
chartData: {
categories: [],
values: [],
},
};
},
mounted() {
this.drawChart();
},
methods: {
drawChart() {
const chart = echarts.init(this.$refs.chart);
const option = {
title: {
text: '7天产量',
textStyle: {
color: 'white', // Set title font color to white
},
},
grid: {
left: '10%', // Adjust the left margin
right: '5%', // Adjust the right margin
top: '20%', // Adjust the top margin
bottom: '0%', // Adjust the bottom margin
containLabel: true,
},
xAxis: {
type: 'category',
data: this.chartData.categories,
axisLabel: {
color: 'white', // Set X-axis label font color to white
},
},
yAxis: {
type: 'value',
axisLabel: {
color: 'white', // Set Y-axis label font color to white
},
},
series: [
{
data: this.chartData.values,
type: 'line',
smooth: true,
label: {
show: true, //
position: 'top', // 'top''insideTop''insideBottom'
},
}
]
};
chart.setOption(option);
},
},
watch: {
data(newVal) {
// Watching the data prop for changes
// Watching the data prop for changes
console.log("newVal", newVal);
this.chartData.categories = newVal.map(item => item.day);
this.chartData.values = newVal.map(item => item.sum_quantity);
this.drawChart();
// Incrementing the key to force re-render
},
},
};
</script>
<style scoped>
.top-middle-cmp {
position: relative;
padding: 0 50px;
box-sizing: border-box;
.chart-name {
position: absolute;
right: 70px;
text-align: right;
font-size: 20px;
top: 10px;
}
}
</style>

@ -0,0 +1,100 @@
<template>
<div class="top-right-cmp">
<div class="chart-name">
产线停机次数
<dv-decoration-3 style="width:200px;height:20px;" />
</div>
<dv-charts :option="option" />
</div>
</template>
<script>
export default {
name: 'TopRightCmp',
data () {
return {
option: {
legend: {
data: [
{
name: '停机次数',
color: '#00baff'
}
],
textStyle: {
fill: '#fff'
}
},
xAxis: {
data: [
],
axisLine: {
style: {
stroke: '#fff'
}
},
axisLabel: {
style: {
fill: '#fff'
}
},
axisTick: {
show: false
}
},
yAxis: {
data: 'value',
splitLine: {
show: false
},
axisLine: {
style: {
stroke: '#fff'
}
},
axisLabel: {
style: {
fill: '#fff'
}
},
axisTick: {
show: false
},
min: 0,
max: 8
},
series: [
{
name: '停机次数',
data: [
],
type: 'bar',
barStyle: {
fill: 'rgba(0, 186, 255, 0.4)'
}
}
]
}
}
}
}
</script>
<style lang="less">
.top-right-cmp {
position: relative;
padding: 0 50px;
box-sizing: border-box;
.chart-name {
position: absolute;
right: 70px;
text-align: right;
font-size: 20px;
top: 10px;
}
}
</style>

@ -0,0 +1,203 @@
<template>
<div id="data-view">
<dv-full-screen-container>
<div class="main-header">
<div class="mh-left">
<img src="../../../assets/images/logo.png" alt="" />
</div>
<div class="mh-middle">成品包装线生产看板</div>
<div class="mh-right">{{currentDateTime}}
</div>
</div>
<dv-border-box-1 class="main-container">
<div class="mc-top">
<Top-Left-Cmp :data="valueForTopLeftCmp"/>
<Top-Middle-Cmp :data="valueForTopMiddleCmp" />
<Top-right-Cmp />
</div>
<div class="mc-bottom">
<BottomRightTable1 :tableData="BottomRightTableValue"/>
</div>
<!-- <div class="mc-bottom">-->
<!-- <BottomRightTable1 v-for="index in 4" :key="index+4" :tableIndex="index" :tableData="BottomRightTable2Value"/>-->
<!-- </div>-->
</dv-border-box-1>
</dv-full-screen-container>
</div>
</template>
<script>
import { finishProductBoard } from "@/api/kanban/finishproduct";
import TopLeftCmp from './TopLeftCmp'
import TopMiddleCmp from './TopMiddleCmp'
import TopRightCmp from './TopRightCmp'
import BottomRightTable1 from './BottomRightTable1'
export default {
name: 'DataView',
components: {
TopLeftCmp,
TopMiddleCmp,
TopRightCmp,
BottomRightTable1,
},
data () {
return {
currentDateTime: null,
//
valueForTopLeftCmp: {
sumplanquantity: 0,
sumFinshQuantity: 0,
},
valueForTopMiddleCmp:[],
BottomRightTableValue:[],
};
},
methods: {
getCurrentTime() {
const currentDate = new Date();
const year = currentDate.getFullYear();
const month = (currentDate.getMonth() + 1).toString().padStart(2, '0');
const day = currentDate.getDate().toString().padStart(2, '0');
const hours = currentDate.getHours().toString().padStart(2, '0');
const minutes = currentDate.getMinutes().toString().padStart(2, '0');
const seconds = currentDate.getSeconds().toString().padStart(2, '0');
this.currentDateTime = `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`;
},
async finishProductBoard() {
try {
const response = await finishProductBoard({ factory: 1000 });
console.log(response.data);
this.valueForTopLeftCmp.sumplanquantity = response.data.sumplanquantity ?? 0;;
this.valueForTopLeftCmp.sumFinshQuantity = response.data.sumFinshQuantity ?? 0;;
this.valueForTopMiddleCmp=response.data.daySenvenProductionList;
this.BottomRightTableValue = response.data.ProductionInProgress;
} catch (error) {
console.error('Error fetching data:', error);
}
}
},
mounted() {
this.getCurrentTime();
// 使
setInterval(() => {
this.getCurrentTime();
}, 1000);
this.finishProductBoard(); //
setInterval(() => {
this.finishProductBoard();
}, 20000);
}
}
</script>
<style lang="less">
#data-view {
width: 100%;
height: 100%;
background-color: #030409;
color: #fff;
#dv-full-screen-container {
background-image: url("../../../assets/images/bg-finishproduct.png");
background-size: 100% 100%;
box-shadow: 0 0 3px blue;
display: flex;
flex-direction: column;
}
.main-header {
height: 80px;
display: flex;
justify-content: space-between;
align-items: flex-end;
.mh-left {
margin-top: 10px;
}
.mh-middle {
font-size: 30px;
}
.mh-left, .mh-right {
width: 200px;
}
}
.main-container {
height: calc(~"100% - 80px");
margin-left:0px;
.mc-top, .mc-bottom ,mc-bottom-1 {
box-sizing: border-box;
padding: 30px;
display: flex;
}
.mc-top {
height: 40%;
}
.mc-bottom-1, .mc-bottom-2 {
height: 100%;
}
.top-left-cmp, .bottom-left-container {
width: 32%;
}
.top-middle-cmp, .top-right-cmp {
width: 34%;
}
.bottom-left-container {
position: relative;
.border-box-content {
display: flex;
}
.mcb-decoration-1, .mcb-decoration-2 {
position: absolute;
left: 50%;
margin-left: -2px;
}
.mcb-decoration-1 {
top: 5%;
transform: rotate(180deg);
}
.mcb-decoration-2 {
top: 50%;
}
.bottom-left-chart-1, .bottom-left-chart-2 {
width: 50%;
height: 100%;
}
}
.bottom-right-container {
width: 68%;
padding-left: 30px;
box-sizing: border-box;
display: flex;
}
}
}
</style>

@ -0,0 +1,621 @@
<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="物料码" prop="productCode">
<el-input
v-model="queryParams.productCode"
placeholder="请输入物料码"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="物料描述" prop="productName">
<el-input
v-model="queryParams.productName"
placeholder="请输入物料描述"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="产线编码" prop="lineCode">
<el-input
v-model="queryParams.lineCode"
placeholder="请输入产线编码"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="产线名称" prop="lineName">
<el-input
v-model="queryParams.lineName"
placeholder="请输入产线名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery"></el-button>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery"></el-button>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="primary"
plain
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['system:unitPrice:add']"
>新增</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="success"
plain
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['system:unitPrice:edit']"
>修改</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['system:unitPrice:remove']"
>删除</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="info"
plain
icon="el-icon-upload2"
size="mini"
@click="handleImport"
v-hasPermi="['mes:unitprice:import']"
>导入</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
v-hasPermi="['system:unitPrice:export']"
>导出</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="unitPriceList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="物料码" align="center" prop="productCode" />
<el-table-column label="物料描述" align="center" prop="productName" />
<el-table-column label="产线编码" align="center" prop="lineCode" />
<el-table-column label="产线名称" align="center" prop="lineName" />
<el-table-column label="子工序编码" align="center" prop="childprocessCode" />
<el-table-column label="子工序名称" align="center" prop="childprocessName" />
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['system:unitPrice:edit']"
>修改</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['system:unitPrice:remove']"
>删除</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或修改unitPrice对话框 -->
<el-dialog :title="title" :visible.sync="open" width="680px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="100px">
<el-row>
<el-col :span="12">
<el-form-item label="产品编码" prop="productCode">
<el-input
placeholder="请输入内容"
v-model="form.productCode"
>
<template slot="suffix">
<i class="el-input__icon el-icon-search" @click="handleSearch"></i>
</template>
</el-input>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="产品名称" prop="productName">
<el-input v-model="form.productName" :disabled="true"/>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="12">
<el-form-item label="产线" prop="lineName">
<el-select v-model="form.lineName" filterable placeholder="请选择产线"
@change="handleSelectChange">
<option
v-for="item in options"
:key="item.value"
:value="item.value"
>
{{ item.label }}
</option>
<el-option
v-for="item in options"
:key="item.value"
:label="item.label"
:value="item.value"
:data-label="item.label"> <!-- 将label的值作为data-label属性传递 -->
</el-option>
</el-select>
</el-form-item>npn
</el-col>
<el-col :span="12">
<el-form-item label="产线编码" prop="lineCode">
<el-input v-model="form.lineCode" :disabled="true"/>
</el-form-item>
</el-col>
</el-row>
</el-form>
<el-divider content-position="center" >操作步骤</el-divider>
<el-button type="primary"
plain
icon="el-icon-plus"
size="mini"
@click="addRow">添加</el-button>
<el-table
:data="tableData"
style="width: 100%; height: 300px; overflow-y: auto;"
border
stripe
>
<!-- Your table columns go here -->
<!-- For example, if you have columns named 'name' and 'age': -->
<el-table-column label="序号" prop="childProcessCode" width="100"></el-table-column>
<el-table-column label="工序名称" prop="childProcessName">
<template slot-scope="scope">
<el-input
v-model="scope.row.childProcessName" @change="handleEdit(scope.row, scope.$index)" ></el-input>
</template>
</el-table-column>
<el-table-column label="工序单价(元 / PC" prop="unitPrice">
<template slot-scope="scope">
<el-input
:type="inputType"
@input="handleInput(scope.row, scope.$index)"
v-model="scope.row.unitPrice" @change="handleEditUnitPrice(scope.row, scope.$index)" ></el-input>
</template>
</el-table-column>
<el-table-column label="操作" width="100">
<template slot-scope="scope">
<el-button size="mini" @click="handlDelete(scope.$index)"></el-button>
</template>
</el-table-column>
</el-table>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
<el-dialog :title="upload.title" :visible.sync="upload.open" width="400px" append-to-body>
<el-upload
ref="upload"
:limit="1"
accept=".xlsx, .xls"
:headers="upload.headers"
:action="upload.url + '?updateSupport=' + upload.updateSupport"
:disabled="upload.isUploading"
:on-progress="handleFileUploadProgress"
:on-success="handleFileSuccess"
:auto-upload="false"
drag
>
<i class="el-icon-upload"></i>
<div class="el-upload__text">将文件拖到此处<em>点击上传</em></div>
<div class="el-upload__tip text-center" slot="tip">
<div class="el-upload__tip" slot="tip">
<el-checkbox v-model="upload.updateSupport" /> 是否更新已经存在的用户数据
</div>
<span>仅允许导入xlsxlsx格式文件</span>
<el-link type="primary" :underline="false" style="font-size:12px;vertical-align: baseline;" @click="importTemplate"></el-link>
</div>
</el-upload>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitFileForm"> </el-button>
<el-button @click="upload.open = false"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
// import { ElEditable } from 'element-plus';
import { getToken } from "@/utils/auth";
import { listUnitPrice, getUnitPrice, delUnitPrice, addUnitPrice, updateUnitPrice } from "@/api/mes/unitPrice";
import { listProduct} from "@/api/wms/product";
import { listChildprocessall} from "@/api/mes/childprocess";
export default {
name: "UnitPrice",
// components: {
// 'el-editable': ElEditable,
// //
// },
data() {
return {
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
// unitPrice
unitPriceList: [],
//
title: "",
//
open: false,
options: [{
value: 'XL01',
label: '包装线01'
}, {
value: 'XL02',
label: '包装线02'
}, {
value: 'XL03',
label: '包装线03'
}, {
value: 'XL04',
label: '包装线04'
}, {
value: 'XL05',
label: '包装线05'
},{
value: 'XL06',
label: '包装线06'
},{
value: 'XL07',
label: '包装线07'
},{
value: 'XL08',
label: '包装线08'
}],
value: '',
upload: {
//
open: false,
//
title: "",
//
isUploading: false,
//
updateSupport: 0,
//
headers: {poolName: localStorage.getItem("USER_POOL_NAME_CURRENT"), Authorization: "Bearer " + getToken()},
//
url: process.env.VUE_APP_BASE_API + "/mes/unitprice/importData"
},
//
queryParams: {
pageNum: 1,
pageSize: 10,
factoryId: null,
productCode: null,
productName: null,
lineCode: null,
lineName: null,
childprocessId: null,
childprocessCode: null,
childprocessName: null,
attr1: null,
attr2: null,
attr3: null,
attr4: null,
},
productQueryParams:{
productCode: null,
productName: null,
},
//
form: {},
//
rules: {
productCode: [
{ required: true, message: "产品编码不能为空", trigger: "blur" },
],
lineName: [
{ required: true, message: "产线不能为空", trigger: "blur" },
],
},
productCodeList: [],
state: '',
timeout: null,
productCode:'',
tableData: [],
processOptions: [
{ value: 'Process 1', label: '工序1' },
{ value: 'Process 2', label: '工序2' },
],
nextID: 1,
inputType: 'text'
};
},
created() {
this.getList();
// this.fetchProcessOptions();
},
methods: {
addRow() {
// Calculate the next sequential ID
const nextIDString = String(this.nextID).padStart(2, '0');
this.tableData.push({ childProcessCode: nextIDString, childProcessName: '', _editablechildProcessName: true, _editableUnitPrice: true, });
this.nextID++;
},
handlDelete(index) {
// Delete a row from the table data
this.tableData.splice(index, 1);
// Find the maximum childProcessCode in the remaining rows
const maxID = this.tableData.reduce((max, row) => {
const id = parseInt(row.childProcessCode, 10);
return isNaN(id) ? max : Math.max(max, id);
}, 0);
// Set nextID to the next sequential ID
this.nextID = maxID + 1;
},
handleEdit(row, index) {
// Handle the edit event, if needed
// For example, you can make an API call to save the edited data.
console.log('Edited row:', row);
row._editablechildProcessName = false; // Set _editable to false after editing
},
handleInput(row, index) {
//
// 使
const numericRegex = /^\d+(\.\d*)?$/;
if (!numericRegex.test(row.unitPrice)) {
//
this.$set(this.tableData, index, { ...row, unitPrice: row.unitPrice.replace(/[^\d.]/g, '') });
}
},
handleEditUnitPrice(row, index) {
console.log(row,index);
row._editableUnitPrice = false;
},
/** 查询unitPrice列表 */
getList() {
this.loading = true;
listUnitPrice(this.queryParams).then(response => {
this.unitPriceList = response.rows;
this.total = response.total;
this.loading = false;
});
},
//
cancel() {
this.open = false;
this.reset();
},
//
reset() {
this.form = {
picId: null,
factoryId: null,
productCode: null,
productName: null,
lineCode: null,
lineName: null,
childprocessId: null,
childprocessCode: null,
childprocessName: null,
attr1: null,
attr2: null,
attr3: null,
attr4: null,
createBy: null,
createTime: null,
updateBy: null,
updateTime: null
};
this.resetForm("form");
this.tableData = [];
this.nextID=1;
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
//
handleSelectionChange(selection) {
this.ids = selection.map(item => item.picId)
this.single = selection.length !== 1
this.multiple = !selection.length
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加计件薪酬信息";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const picId = row.picId || this.ids
getUnitPrice(picId).then(response => {
this.form = response.data;
this.open = true;
this.title = "修改unitPrice";
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
console.log(this.form,this.tableData)
// if (this.form.picId != null) {
// updateUnitPrice(this.form).then(response => {
// this.$modal.msgSuccess("");
// this.open = false;
// this.getList();
// });
// } else {
// addUnitPrice(this.form).then(response => {
// this.$modal.msgSuccess("");
// this.open = false;
// this.getList();
// });
// }
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const picIds = row.picId || this.ids;
this.$modal.confirm('是否确认删除unitPrice编号为"' + picIds + '"的数据项?').then(function () {
return delUnitPrice(picIds);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {
});
},
/** 导出按钮操作 */
handleExport() {
this.download('system/unitPrice/export', {
...this.queryParams
}, `unitPrice_${new Date().getTime()}.xlsx`)
},
/** 导入按钮操作 */
handleImport() {
this.upload.title = "子工序导入";
this.upload.open = true;
},
/** 下载模板操作 */
importTemplate() {
this.download('mes/unitPrice/importTemplate', {}, `unitprice_template_${new Date().getTime()}.xlsx`)
},
//
handleFileUploadProgress(event, file, fileList) {
this.upload.isUploading = true;
},
//
handleFileSuccess(response, file, fileList) {
this.upload.open = false;
this.upload.isUploading = false;
this.$refs.upload.clearFiles();
this.$alert("<div style='overflow: auto;overflow-x: hidden;max-height: 70vh;padding: 10px 20px 0;'>" + response.msg + "</div>", "导入结果", {dangerouslyUseHTMLString: true});
this.getList();
},
//
submitFileForm() {
this.$refs.upload.submit();
},
handleSearch() {
console.log('Search triggered with input:', this.form.productCode);
listProduct(this.form).then(response => {
this.form.productName=response.rows[0].productDescZh;
});
},
handleSelectChange(value,option) {
// Add your logic here to handle the selection change
console.log(value,option)
// this.form.lineCode = value;
// this.form.lineName = selectedData;
// You can perform any actions based on the selected value here.
// For example, call a function or update some other data.
},
async loadOptions(query) {
try {
// Simulate an API call to fetch remote options based on the user's input
listChildprocessall(this.queryParams).then(response => {
const data = response.json();
this.processOptions = data.map(item => ({ value: item.id, label: item.name }));
// const data = response.json();
// this.processOptions = data;
// this.form.productName=response.rows[0].productDescZh;
});
} catch (error) {
console.error('Error fetching process options:', error);
}
},
// async fetchProcessOptions() {
// try {
// // Assuming listChildprocessall is an asynchronous function
// listChildprocessall(this.queryParams).then(response => {
// console.log(response)
// const data = response;
// this.processOptions = data.map(item => ({ value: item.childprocessName, label: item.childprocessCode }));
// // const data = response.json();
// // this.processOptions = data;
// // this.form.productName=response.rows[0].productDescZh;
// });
//
// } catch (error) {
// console.error('Error fetching process options:', error);
// }
// },
}
};
</script>

@ -0,0 +1,486 @@
<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="名称" prop="factoryId">
<el-input
v-model="queryParams.factoryId"
placeholder="名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="编码" prop="childprocessCode">
<el-input
v-model="queryParams.childprocessCode"
placeholder="编码"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery"></el-button>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery"></el-button>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="primary"
plain
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['mes:unitprice:add']"
>新增</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="success"
plain
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['mes:unitprice:edit']"
>修改</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['mes:unitprice:remove']"
>删除</el-button>
</el-col>
<el-button
type="info"
plain
icon="el-icon-upload2"
size="mini"
@click="handleImport"
v-hasPermi="['mes:unitprice:import']"
>导入</el-button>
<el-col :span="1.5">
<el-button
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
v-hasPermi="['mes:unitprice:export']"
>导出</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="unitpriceList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<!-- <el-table-column label="工厂" align="center" prop="factoryId" />-->
<el-table-column label="子工序编码" align="center" prop="childprocessCode" />
<el-table-column label="子工序名称" align="center" prop="childprocessName" />
<!-- <el-table-column label="预留字段1" align="center" prop="attr1" />-->
<!-- <el-table-column label="预留字段2" align="center" prop="attr2" />-->
<el-table-column label="创建人" align="center" prop="createBy" />
<el-table-column label="创建时间" align="center" prop="createTime" />
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['mes:unitprice:edit']"
>修改</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['mes:unitprice:remove']"
>删除</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或修改unitprice对话框 -->
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
<el-form-item label="工厂" prop="factoryId">
<el-input v-model="form.factoryId" placeholder="请输入工厂" />
</el-form-item>
<el-form-item label="子工序编码" prop="childprocessCode">
<el-input v-model="form.childprocessCode" placeholder="请输入子工序编码" />
</el-form-item>
<el-form-item label="子工序名称" prop="childprocessName">
<el-input v-model="form.childprocessName" placeholder="请输入子工序名称" />
</el-form-item>
<el-form-item label="预留字段1" prop="attr1">
<el-input v-model="form.attr1" placeholder="请输入预留字段1" />
</el-form-item>
<el-form-item label="预留字段2" prop="attr2">
<el-input v-model="form.attr2" placeholder="请输入预留字段2" />
</el-form-item>
<el-form-item label="预留字段3" prop="attr3">
<el-input v-model="form.attr3" placeholder="请输入预留字段3" />
</el-form-item>
<el-form-item label="预留字段4" prop="attr4">
<el-input v-model="form.attr4" placeholder="请输入预留字段4" />
</el-form-item>
<el-divider content-position="center">${subTable.functionName}信息</el-divider>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button type="primary" icon="el-icon-plus" size="mini" @click="handleAddMesUnitPrice"></el-button>
</el-col>
<el-col :span="1.5">
<el-button type="danger" icon="el-icon-delete" size="mini" @click="handleDeleteMesUnitPrice"></el-button>
</el-col>
</el-row>
<el-table :data="mesUnitPriceList" :row-class-name="rowMesUnitPriceIndex" @selection-change="handleMesUnitPriceSelectionChange" ref="mesUnitPrice">
<el-table-column type="selection" width="50" align="center" />
<el-table-column label="序号" align="center" prop="index" width="50"/>
<el-table-column label="工厂" prop="factoryId" width="150">
<template slot-scope="scope">
<el-input v-model="scope.row.factoryId" placeholder="请输入工厂" />
</template>
</el-table-column>
<el-table-column label="物料码" prop="productCode" width="150">
<template slot-scope="scope">
<el-input v-model="scope.row.productCode" placeholder="请输入物料码" />
</template>
</el-table-column>
<el-table-column label="物料描述" prop="productName" width="150">
<template slot-scope="scope">
<el-input v-model="scope.row.productName" placeholder="请输入物料描述" />
</template>
</el-table-column>
<el-table-column label="产线编码" prop="lineCode" width="150">
<template slot-scope="scope">
<el-input v-model="scope.row.lineCode" placeholder="请输入产线编码" />
</template>
</el-table-column>
<el-table-column label="产线名称" prop="lineName" width="150">
<template slot-scope="scope">
<el-input v-model="scope.row.lineName" placeholder="请输入产线名称" />
</template>
</el-table-column>
<el-table-column label="子工序编码" prop="childprocessCode" width="150">
<template slot-scope="scope">
<el-input v-model="scope.row.childprocessCode" placeholder="请输入子工序编码" />
</template>
</el-table-column>
<el-table-column label="子工序名称" prop="childprocessName" width="150">
<template slot-scope="scope">
<el-input v-model="scope.row.childprocessName" placeholder="请输入子工序名称" />
</template>
</el-table-column>
<el-table-column label="预留字段1" prop="attr1" width="150">
<template slot-scope="scope">
<el-input v-model="scope.row.attr1" placeholder="请输入预留字段1" />
</template>
</el-table-column>
<el-table-column label="预留字段2" prop="attr2" width="150">
<template slot-scope="scope">
<el-input v-model="scope.row.attr2" placeholder="请输入预留字段2" />
</template>
</el-table-column>
<el-table-column label="预留字段3" prop="attr3" width="150">
<template slot-scope="scope">
<el-input v-model="scope.row.attr3" placeholder="请输入预留字段3" />
</template>
</el-table-column>
<el-table-column label="预留字段4" prop="attr4" width="150">
<template slot-scope="scope">
<el-input v-model="scope.row.attr4" placeholder="请输入预留字段4" />
</template>
</el-table-column>
</el-table>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
<!-- 子工序导入对话框 -->
<el-dialog :title="upload.title" :visible.sync="upload.open" width="400px" append-to-body>
<el-upload
ref="upload"
:limit="1"
accept=".xlsx, .xls"
:headers="upload.headers"
:action="upload.url + '?updateSupport=' + upload.updateSupport"
:disabled="upload.isUploading"
:on-progress="handleFileUploadProgress"
:on-success="handleFileSuccess"
:auto-upload="false"
drag
>
<i class="el-icon-upload"></i>
<div class="el-upload__text">将文件拖到此处<em>点击上传</em></div>
<div class="el-upload__tip text-center" slot="tip">
<div class="el-upload__tip" slot="tip">
<el-checkbox v-model="upload.updateSupport" /> 是否更新已经存在的用户数据
</div>
<span>仅允许导入xlsxlsx格式文件</span>
<el-link type="primary" :underline="false" style="font-size:12px;vertical-align: baseline;" @click="importTemplate"></el-link>
</div>
</el-upload>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitFileForm"> </el-button>
<el-button @click="upload.open = false"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import { getToken } from "@/utils/auth";
import { listChildprocess, getChildprocess, delChildprocess, addChildprocess, updateChildprocess } from "@/api/mes/childprocess";
export default {
name: "ChildProcess",
data() {
return {
//
loading: true,
//
ids: [],
//
checkedMesUnitPrice: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
// unitprice
unitpriceList: [],
// ${subTable.functionName}
mesUnitPriceList: [],
//
title: "",
//
open: false,
upload: {
//
open: false,
//
title: "",
//
isUploading: false,
//
updateSupport: 0,
//
headers: {poolName: localStorage.getItem("USER_POOL_NAME_CURRENT"), Authorization: "Bearer " + getToken()},
//
url: process.env.VUE_APP_BASE_API + "/mes/unitprice/importData"
},
//
queryParams: {
pageNum: 1,
pageSize: 10,
factoryId: null,
childprocessCode: null,
childprocessName: null,
attr1: null,
attr2: null,
attr3: null,
attr4: null
},
//
form: {},
//
rules: {
}
};
},
created() {
this.getList();
},
methods: {
/** 查询unitprice列表 */
getList() {
this.loading = true;
listChildprocess(this.queryParams).then(response => {
this.unitpriceList = response.rows;
this.total = response.total;
this.loading = false;
});
},
//
cancel() {
this.open = false;
this.reset();
},
//
reset() {
this.form = {
childprocessId: null,
factoryId: null,
childprocessCode: null,
childprocessName: null,
createBy: null,
createTime: null,
updateBy: null,
updateTime: null,
attr1: null,
attr2: null,
attr3: null,
attr4: null
};
this.mesUnitPriceList = [];
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
//
handleSelectionChange(selection) {
this.ids = selection.map(item => item.childprocessId)
this.single = selection.length!==1
this.multiple = !selection.length
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加unitprice";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const childprocessId = row.childprocessId || this.ids
getChildprocess(childprocessId).then(response => {
this.form = response.data;
this.mesUnitPriceList = response.data.mesUnitPriceList;
this.open = true;
this.title = "修改unitprice";
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
this.form.mesUnitPriceList = this.mesUnitPriceList;
if (this.form.childprocessId != null) {
updateChildprocess(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addChildprocess(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const childprocessIds = row.childprocessId || this.ids;
this.$modal.confirm('是否确认删除unitprice编号为"' + childprocessIds + '"的数据项?').then(function() {
return delChildprocess(childprocessIds);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
/** ${subTable.functionName}序号 */
rowMesUnitPriceIndex({ row, rowIndex }) {
row.index = rowIndex + 1;
},
/** ${subTable.functionName}添加按钮操作 */
handleAddMesUnitPrice() {
let obj = {};
obj.factoryId = "";
obj.productCode = "";
obj.productName = "";
obj.lineCode = "";
obj.lineName = "";
obj.childprocessCode = "";
obj.childprocessName = "";
obj.attr1 = "";
obj.attr2 = "";
obj.attr3 = "";
obj.attr4 = "";
this.mesUnitPriceList.push(obj);
},
/** ${subTable.functionName}删除按钮操作 */
handleDeleteMesUnitPrice() {
if (this.checkedMesUnitPrice.length == 0) {
this.$modal.msgError("请先选择要删除的${subTable.functionName}数据");
} else {
const mesUnitPriceList = this.mesUnitPriceList;
const checkedMesUnitPrice = this.checkedMesUnitPrice;
this.mesUnitPriceList = mesUnitPriceList.filter(function(item) {
return checkedMesUnitPrice.indexOf(item.index) == -1
});
}
},
/** 复选框选中数据 */
handleMesUnitPriceSelectionChange(selection) {
this.checkedMesUnitPrice = selection.map(item => item.index)
},
/** 导入按钮操作 */
handleImport() {
this.upload.title = "子工序导入";
this.upload.open = true;
},
/** 下载模板操作 */
importTemplate() {
this.download('mes/unitprice/importTemplate', {
}, `childprocess_template_${new Date().getTime()}.xlsx`)
},
//
handleFileUploadProgress(event, file, fileList) {
this.upload.isUploading = true;
},
//
handleFileSuccess(response, file, fileList) {
this.upload.open = false;
this.upload.isUploading = false;
this.$refs.upload.clearFiles();
this.$alert("<div style='overflow: auto;overflow-x: hidden;max-height: 70vh;padding: 10px 20px 0;'>" + response.msg + "</div>", "导入结果", { dangerouslyUseHTMLString: true });
this.getList();
},
//
submitFileForm() {
this.$refs.upload.submit();
},
/** 导出按钮操作 */
handleExport() {
this.download('mes/unitprice/export', {
...this.queryParams
}, `unitprice_${new Date().getTime()}.xlsx`)
}
}
};
</script>
Loading…
Cancel
Save