自动排产

yangwl
zhaoxiaolin 9 months ago
parent 390a40ae15
commit 230466b4dd

@ -33,6 +33,15 @@ export function getProRoutes(prodCode) {
}) })
} }
// 通过物料code获取工艺信息
export function getCanProductLine(data) {
return request({
url: '/plan/order/getCanProductLine',
method: 'post',
data: data
})
}
// 获取当天的递增工单执行顺序 // 获取当天的递增工单执行顺序
export function getProSortNo(productDate) { export function getProSortNo(productDate) {
const data = { const data = {
@ -166,3 +175,12 @@ export function deleteOrder(orderIds) {
method: 'post' method: 'post'
}); });
} }
//辅助排产
export function autoSplitOrder(data) {
return request({
url: '/plan/order/autoSplitOrder',
method: 'post',
data: data
});
}

@ -174,3 +174,10 @@ export function removeWorkOrderBatch(batchCode,workorderCode) {
}); });
} }
export function getProdLineList() {
return request({
url: '/plan/pro/workorder/getProdLineList',
method: 'get',
params: {}
});
}

@ -86,15 +86,8 @@
<el-table-column prop="efficiency" label="产线标准效率(PC/H)" width="100"/> <el-table-column prop="efficiency" label="产线标准效率(PC/H)" width="100"/>
<el-table-column prop="manStandard" label="标准用人" width="80"/> <el-table-column prop="manStandard" label="标准用人" width="80"/>
<el-table-column prop="useMan" label="实际用人" width="80"/> <el-table-column prop="useMan" label="实际用人" width="80"/>
<el-table-column <el-table-column prop="workTimeStandard" label="标准工时" width="80"></el-table-column>
prop="workTimeStandard" <el-table-column prop="workTime" label="实际工时" width="80">
label="标准工时"
width="80">
</el-table-column>
<el-table-column
prop="workTime"
label="实际工时"
width="80">
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="productivity" prop="productivity"
@ -136,7 +129,7 @@
import { getDailyReportNew,getWorkcenterList} from "@/api/mes/reportWork"; import { getDailyReportNew,getWorkcenterList} from "@/api/mes/reportWork";
import moment from 'moment'; import moment from 'moment';
export default { export default {
name: "Prepare", name: "DailyReportNew",
data() { data() {
return { return {
// //
@ -159,8 +152,7 @@ export default {
open: false, open: false,
// //
queryParams: { queryParams: {
timeArray: [moment(new Date().toLocaleDateString().replace(/\//g, "-")).format('YYYY-MM-DD'), timeArray: [],
moment(new Date().toLocaleDateString().replace(/\//g, "-")).format('YYYY-MM-DD')],
productDateStart: null, productDateStart: null,
productDateEnd: null, productDateEnd: null,
sapName: null, sapName: null,
@ -177,13 +169,29 @@ export default {
}; };
}, },
created() { created() {
this.getList(); this.getDate();
this.getWorkcenterList(); this.getWorkcenterList();
}, },
methods: { methods: {
indexMethod(index){ indexMethod(index){
return index+1 ; return index+1 ;
}, },
/**获取默认查询时间段**/
getDate() {
let start = this.Fungetdate(0);
let end = this.Fungetdate(1);
this.queryParams.timeArray.push(start, end);
this.getList();
},
Fungetdate(num) {
var dd = new Date();
dd.setDate(dd.getDate() + num);
var y = dd.getFullYear();
var m = dd.getMonth() + 1; //
var d = dd.getDate();
return y + "-" + m + "-" + d;
},
/** 查询备料单列表 */ /** 查询备料单列表 */
getList() { getList() {
this.loading = true; this.loading = true;
@ -212,7 +220,6 @@ export default {
// //
reset() { reset() {
this.form = { this.form = {
}; };
this.resetForm("form"); this.resetForm("form");
}, },

@ -115,12 +115,15 @@
>导出 >导出
</el-button> </el-button>
</el-col> </el-col>
<!-- <!-
<el-col :span="1.5"> <el-col :span="1.5">
<el-button type="primary" plain icon="el-icon-edit" size="mini" @click="handleAutoSplit" v-hasPermi="['mes:pro:order:edit']"> <el-button type="primary" plain icon="el-icon-edit" size="mini"
@click="handleAutoSplit"
:disabled="single"
v-hasPermi="['mes:pro:order:edit']">辅助排产
</el-button> </el-button>
</el-col> </el-col>--->
-->
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar> <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row> </el-row>
@ -499,32 +502,67 @@
<el-button @click="cancel"> </el-button> <el-button @click="cancel"> </el-button>
</div> </div>
</el-dialog> </el-dialog>
<!-- 自动排产规划 --> <!-- 辅助排产规划 -->
<el-dialog :title="titleAutoSplit" :visible.sync="openAutoSplit" width="1000px"> <el-dialog :title="titleAutoSplit" :visible.sync="openAutoSplit" width="1000px">
<el-table v-loading="autoSplitLoading" :data="autoSplitList" ref="autoSplitTable"> <el-steps :active="activeSplit" simple>
<el-table-column label="订单号" width="150" align="left" prop="orderCode" /> <el-step title="工单基本信息" icon="el-icon-edit"></el-step>
<el-table-column label="产品编码" width="150" align="left" prop="prodCode" :formatter="productCodeFormate"/> <el-step title="生产线体选择" icon="el-icon-s-tools"></el-step>
<el-table-column label="产品名称" width="150" align="left" prop="prodDesc" :show-overflow-tooltip="true" /> <el-step title="排产结果查看" icon="el-icon-s-order"></el-step>
<el-table-column width="90" label="订单数量" align="center" prop="quantity"/> </el-steps>
<el-table-column width="70" label="单位" align="center" prop="unit"/> <!--第一步-->
<el-table-column label="任务清单" align="center" prop="workerOrder" width="100"/> <el-form ref="autoSplitform1" :model="autoSplitform1" label-width="80px" v-if="activeSplit == 0">
<el-table-column width="120" label="计划生产日期" align="center" prop="planProDate"> <div style="margin-top:20px">
<template slot-scope="scope"> <el-row>
<span>{{ parseTime(scope.row.planProDate, '{y}-{m}-{d}') }}</span> <el-col :span="12">
</template> <el-form-item label="计划生产时间" label-width="100px">
</el-table-column> <el-date-picker type="date" placeholder="选择日期" v-model="autoSplitform1.productDate" style="width: 100%;">
<el-table-column label="排产顺序" align="center" prop="useMan"> </el-date-picker>
<template slot-scope="scope"> </el-form-item>
<el-input type="number" size="small" v-model="scope.row.useMan" @change="handleEdit(scope.$index,scope.row)"></el-input> </el-col>
</template> </el-row>
</el-table-column> <el-row>
</el-table> <el-col :span="12">
<el-button type="primary autoSplitBtn">自动拆分</el-button> <el-form-item label="生产工艺" label-width="100px">
<el-divider content-position="center" >拆分结果</el-divider> <el-select v-model="autoSplitform1.routeCode" placeholder="请选择工艺" style="width: 100%;">
<el-table <el-option v-for="item in routes" :key="item.routeCode" :label="item.routeName"
:value="item.routeCode"
></el-option>
</el-select>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="12">
<el-form-item label="工单排序" label-width="100px">
<el-input v-model="autoSplitform1.sortNo" type="Number" style="width: 100%;"></el-input>
</el-form-item>
</el-col>
</el-row>
</div>
</el-form>
<!--第二步-->
<el-form ref="autoSplitform2" :model="autoSplitform2" label-width="80px" v-if="activeSplit == 1">
<div style="margin-top:20px">
<el-form-item label="选择设备" >
<el-checkbox-group v-model="autoSplitform2.lineCodes">
<el-checkbox
v-for="(item, index) in lineCodes"
:key="item.lineCode"
:label="item.lineCode"
:name="item.lineName"
>
{{ item.lineName }}
</el-checkbox>
</el-checkbox-group>
</el-form-item>
</div>
</el-form>
<!--第三步-->
<el-table v-if="activeSplit == 2"
border border
:data="splitData" :data="splitData"
v-if="refreshWorkerTable"
v-loading="workerLoading" v-loading="workerLoading"
row-key="workorderCode" row-key="workorderCode"
style="width: 100%" style="width: 100%"
@ -532,27 +570,21 @@
default-expand-all default-expand-all
:tree-props="{children: 'children', hasChildren: 'hasChildren'}" :tree-props="{children: 'children', hasChildren: 'hasChildren'}"
> >
<el-table-column width="50" align="center" type="selection"/> <el-table-column width="160" align="center" prop="workorderCode" label="工单号"></el-table-column>
<el-table-column width="160" align="center" prop="workorderCode" label="母工单号"></el-table-column>
<el-table-column width="70" align="center" prop="quantitySplit" label="母单物料编码"></el-table-column>
<el-table-column width="70" align="center" prop="quantitySplit" label="母单物料名称"></el-table-column>
<el-table-column width="70" align="center" prop="quantitySplit" label="母单数量"></el-table-column>
<el-table-column width="60" label="单位" align="center" prop="unit"/>
<el-table-column width="160" align="center" prop="workorderCode" label="子工单号"></el-table-column>
<el-table-column width="70" align="center" prop="quantitySplit" label="子单物料编码"></el-table-column>
<el-table-column width="70" align="center" prop="quantitySplit" label="子单物料名称"></el-table-column>
<el-table-column width="70" align="center" prop="quantitySplit" label="子单数量"></el-table-column>
<el-table-column width="60" label="单位" align="center" prop="unit"/>
<el-table-column width="100" align="center" prop="productDate" label="工单日期"></el-table-column> <el-table-column width="100" align="center" prop="productDate" label="工单日期"></el-table-column>
<el-table-column width="150" align="center" prop="prodLineCode" label="生产线体设备"></el-table-column> <el-table-column width="150" align="center" prop="prodLineCode" label="生产线体设备"></el-table-column>
<el-table-column width="70" align="center" prop="quantitySplit" label="数量"></el-table-column>
<el-table-column width="60" label="单位" align="center" prop="unit"/>
<el-table-column width="90" label="工艺编码" align="center" prop="routeCode"/> <el-table-column width="90" label="工艺编码" align="center" prop="routeCode"/>
<el-table-column width="70" label="班次" align="center" prop="shiftDesc"/> <el-table-column width="70" label="班次" align="center" prop="shiftDesc"/>
<el-table-column width="160" align="center" prop="batchCodeList" label="批次号"></el-table-column> <el-table-column width="160" align="center" prop="batchCodeList" label="批次号"></el-table-column>
<el-table-column width="100" align="center" prop="batchNumList" label="批次数量"></el-table-column> <el-table-column width="100" align="center" prop="batchNumList" label="批次数量"></el-table-column>
</el-table> </el-table>
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
<el-button type="primary"> </el-button> <el-button style="margin-top: 12px;" @click="next" v-if="this.activeSplit < 2"></el-button>
<el-button style="margin-top: 12px;" @click="prev" v-if="this.activeSplit > 0"></el-button>
<el-button type="primary"> </el-button>
<el-button @click="cancel"> </el-button> <el-button @click="cancel"> </el-button>
</div> </div>
</el-dialog> </el-dialog>
@ -571,7 +603,8 @@ import {
addOrder, addOrder,
updateOrder, updateOrder,
syncSAP, selectMaterielList,getAutoSplitList, syncSAP, selectMaterielList,getAutoSplitList,
deleteOrder deleteOrder,getCanProductLine,
autoSplitOrder
} from '@/api/plan/order' } from '@/api/plan/order'
import Treeselect from '@riophae/vue-treeselect' import Treeselect from '@riophae/vue-treeselect'
import '@riophae/vue-treeselect/dist/vue-treeselect.css' import '@riophae/vue-treeselect/dist/vue-treeselect.css'
@ -689,11 +722,17 @@ export default {
/**********************************/ /**********************************/
eRouteProps: {multiple: true}, eRouteProps: {multiple: true},
eRouteOptions: [], eRouteOptions: [],
titleAutoSplit:"订单排产", titleAutoSplit:"订单辅助排产",
openAutoSplit:false, openAutoSplit:false,
orderCodes:[], orderCodes:[],
autoSplitList:[], autoSplitList:[],
autoSplitLoading: true autoSplitLoading: true,
activeSplit: 0,
autoSplitform1:{
productDate:new Date()
},
autoSplitform2: {lineCodes:[]},
lineCodes:[]
} }
}, },
created() { created() {
@ -1444,7 +1483,7 @@ export default {
} }
) )
}, },
/**自动排产**/ /**辅助排产**/
// //
handleAutoSplitSelection(selection) { handleAutoSplitSelection(selection) {
this.single = selection.length !== 1 this.single = selection.length !== 1
@ -1453,9 +1492,26 @@ export default {
}, },
// //
handleAutoSplit(row) { handleAutoSplit(row) {
debugger
this.autoSplitLoading = true; this.autoSplitLoading = true;
this.autoSplitList = this.orderCodes; this.autoSplitList = this.orderCodes;
// ()
getProRoutes(this.autoSplitList[0].prodCode).then(response => {
this.routes = response.data;
this.autoSplitform1.routeCode = response.data[0].routeCode
})
var ymd = moment(this.autoSplitform1.productDate).format('YYYY-MM-DD')
//
getProSortNo(ymd).then(response => {
this.autoSplitform1.sortNo = response
})
// 线
getCanProductLine(this.autoSplitList[0]).then(response => {
this.lineCodes = response.lineList;
this.autoSplitform2.lineCodes = response.recommendLineList;//['XL01','XL02'];
})
this.openAutoSplit = true; this.openAutoSplit = true;
this.autoSplitLoading = false; this.autoSplitLoading = false;
}, },
@ -1494,6 +1550,25 @@ export default {
} }
}); });
},
next() {
if (this.activeSplit++ > 2) this.activeSplit = 0;
//线
if(this.activeSplit == 2){
debugger
autoSplitOrder(Object.assign({},this.autoSplitform1,this.autoSplitform2,this.autoSplitList[0])).then(response => {
});
}
},
prev(){
if (this.activeSplit-- > 2) this.activeSplit = 2;
//
if(this.activeSplit == 1){
autoSplitOrderCancel(Object.assign({},autoSplitform2)).then(response => {
});
}
} }
} }

@ -49,12 +49,14 @@
/> />
</el-form-item> </el-form-item>
<el-form-item label="产线编码" prop="prodLineCode"> <el-form-item label="产线编码" prop="prodLineCode">
<el-input <el-select clearable v-model="queryParams.prodLineCode">
v-model="queryParams.prodLineCode" <el-option
placeholder="请输入产线编码" v-for="item in prodLineList"
clearable :key="item.lineCode"
@keyup.enter.native="handleQuery" :label="item.lineName"
/> :value="item.lineCode"
></el-option>
</el-select>
</el-form-item> </el-form-item>
<el-form-item label="生产日期" prop="productDateArray"> <el-form-item label="生产日期" prop="productDateArray">
<el-date-picker <el-date-picker
@ -732,7 +734,8 @@ import {
getWorkOrderBatchInfo, getWorkOrderBatchInfo,
insertWorkOrderBatch, insertWorkOrderBatch,
updateWorkOrderBatch, updateWorkOrderBatch,
removeWorkOrderBatch removeWorkOrderBatch,
getProdLineList
} from '@/api/plan/workorder' } from '@/api/plan/workorder'
import moment from 'moment'; import moment from 'moment';
import { getProEquipment, getProRoutes, getProShifts,selectMaterielList} from '@/api/plan/order' import { getProEquipment, getProRoutes, getProShifts,selectMaterielList} from '@/api/plan/order'
@ -910,6 +913,7 @@ export default {
{required: true, message: "当前批次数量不能为空", trigger: "blur"} {required: true, message: "当前批次数量不能为空", trigger: "blur"}
] ]
}, },
prodLineList:[],
/**********************************/ /**********************************/
eRouteProps: {multiple: true}, eRouteProps: {multiple: true},
eRouteOptions: [], eRouteOptions: [],
@ -936,6 +940,9 @@ export default {
getProShifts().then(response => { getProShifts().then(response => {
this.workShift = response.data this.workShift = response.data
}) })
getProdLineList().then(response => {
this.prodLineList = response
})
}, },
methods: { methods: {
// //

@ -242,8 +242,7 @@ export default {
/** 修改按钮操作 */ /** 修改按钮操作 */
handleUpdate(row) { handleUpdate(row) {
this.reset(); this.reset();
const id = const id = row.id || this.ids
row.id || this.ids
getCode(id).then(response => { getCode(id).then(response => {
this.form = response.data; this.form = response.data;
this.open = true; this.open = true;

@ -137,10 +137,31 @@
plain plain
icon="el-icon-s-data" icon="el-icon-s-data"
size="mini" size="mini"
@click="handleAnalysis" @click="handleAnalysis1"
>图标分析</el-button >柱状图表分析</el-button
> >
</el-col> </el-col>
<el-col :span="1.5">
<el-button
type="primary"
plain
icon="el-icon-s-data"
size="mini"
@click="handleAnalysis2"
>折线图表分析</el-button
>
</el-col>
<!--
<el-col :span="1.5">
<el-button
type="primary"
plain
icon="el-icon-s-data"
size="mini"
@click="handleAnalysis3"
>综合图表分析</el-button
>
</el-col>-->
<right-toolbar <right-toolbar
:showSearch.sync="showSearch" :showSearch.sync="showSearch"
@queryTable="getList" @queryTable="getList"
@ -201,13 +222,13 @@
<el-dialog <el-dialog
:title="title" :title="title"
:visible.sync="open" :visible.sync="open"
width="1880px" width="1300px"
append-to-body append-to-body
> >
<div <div
class="echartbox" class="echartbox"
id="echart1" id="echart1"
style="margin: auto; margin-top: 20px; width: 1820px; height: 545px" style="margin: auto; margin-top: 20px; width: 1220px; height: 545px"
></div> ></div>
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
<el-button @click="cancel"> </el-button> <el-button @click="cancel"> </el-button>
@ -398,7 +419,7 @@ export default {
this.loading = false; this.loading = false;
}); });
}, },
getanalyzeList() { getanalyzeList1() {
if (this.queryParams.incomeTimeArray.length > 0) { if (this.queryParams.incomeTimeArray.length > 0) {
this.queryParams.ymArrayStart = moment( this.queryParams.ymArrayStart = moment(
this.queryParams.incomeTimeArray[0] this.queryParams.incomeTimeArray[0]
@ -598,21 +619,14 @@ export default {
); );
}, },
// //
handleAnalysis() { handleAnalysis1() {
this.title = "图表分析"; this.title = "柱状图表分析";
//
if ( if (
this.queryParams.projectNoArray.length > 0 && this.queryParams.projectNoArray.length > 0 &&
this.queryParams.projectNoArray.length < 2 this.queryParams.projectNoArray.length < 2
) { ) {
// this.projectNoOptions.forEach((item) => {
// if (item.recordId == this.queryParams.projectNoArray) {
// console.log(item);
// }
// });
this.open = true; this.open = true;
this.getanalyzeList(); this.getanalyzeList1();
} else if (this.queryParams.projectNoArray.length < 0) { } else if (this.queryParams.projectNoArray.length < 0) {
this.$modal.msgError("请选择定量检测项"); this.$modal.msgError("请选择定量检测项");
} else { } else {
@ -621,6 +635,12 @@ export default {
}, },
// //
cancel() { cancel() {
var chartDom = document.getElementById("echart1");
// ECharts
if (echarts.getInstanceByDom(chartDom)) {
//
echarts.dispose(chartDom);
}
this.open = false; this.open = false;
}, },
// //
@ -674,10 +694,379 @@ export default {
type: "value", type: "value",
}, },
], ],
series: this.seriesdata, series: this.seriesdata
}; };
myChart1.setOption(option1); myChart1.setOption(option1);
}, },
//
handleAnalysis2() {
this.title = "折线图表分析";
if (
this.queryParams.projectNoArray.length > 0 &&
this.queryParams.projectNoArray.length < 2
) {
this.open = true;
this.getanalyzeList2();
} else if (this.queryParams.projectNoArray.length < 0) {
this.$modal.msgError("请选择定量检测项");
} else {
this.$modal.msgError("请选择一项定量检测项");
}
},
getanalyzeList2() {
if (this.queryParams.incomeTimeArray.length > 0) {
this.queryParams.ymArrayStart = moment(
this.queryParams.incomeTimeArray[0]
).format("YYYY-MM-DD");
this.queryParams.ymArrayEnd = moment(
this.queryParams.incomeTimeArray[1]
).format("YYYY-MM-DD");
}
getDLTableAvgInfo(this.queryParams).then((response) => {
this.detailechartslist = [];
this.seriesdata = [];
this.legenddata = [];
this.xAxisdata = [];
let col1 = response.titleCol1;
let col2 = response.titleCol2;
// mcode0Pcode0
for (let i = 0; i < col1.length; i++) {
for (let j = 0; j < col2.length; j++) {
var detailTitle = {};
detailTitle.col1Id = "mcode" + i + "Pcode" + j;
detailTitle.col1Name = col1[i];
detailTitle.col1xName = col2[j];
this.detailechartslist.push(detailTitle);
}
}
if (this.detailechartslist.length > 0) {
this.analyzeList = response;
const datalist = this.detailechartslist.map((item) => {
const xdata = this.analyzeList.dxData.map((d) => {
return (d.ymdms = moment(d.ymdms, "YYYY-MM-DD AVG").format(
"YYYY-MM-DD"
));
});
const datalist = this.analyzeList.dxData.map((d) => d[item.col1Id]);
return {
...item,
xdata,
datalist,
};
});
this.xAxisdata = datalist[0].xdata;
this.titledata = datalist[0].col1xName;
datalist.forEach((e, index) => {
this.legenddata.push(e.col1Name);
if (e.houer) {
state.xAxisdata = e.col1Name;
}
var item = {
name: e.col1Name,
type: 'line',
data: e.datalist,
markLine: {
symbolSize: 0,//
data: [
{
lineStyle: {
color: '#ffc000',
width: 3
},
yAxis: response.upperDiff,//
label: { show: true, position: 'end', formatter: '上限' }
},
{
lineStyle: {
color: '#4f81bd',
width: 3
},
yAxis: response.downDiff,
label: { show: true, position: 'end', formatter: '下限' }
},
{type: 'average', name: '平均值'}
]
}
};
this.seriesdata.push(item);
});
this.initChart2();
} else {
this.$modal.msgError("数据为空");
this.detailechartslist = [];
this.seriesdata = [];
this.legenddata = [];
this.xAxisdata = [];
(this.titledata = ""), this.initChart2();
}
});
},
//
initChart2() {
const _this = this;
var chartDom = document.getElementById("echart1");
// ECharts
if (echarts.getInstanceByDom(chartDom)) {
//
echarts.dispose(chartDom);
}
var myChart1 = echarts.init(document.querySelector("#echart1"));
var option1 = {
title: {
text: '折线图表分析'
},
tooltip: {
trigger: 'axis'
},
legend: {
data: this.legenddata//['Email', 'Union Ads']
},
grid: {
left: '3%',
right: '4%',
bottom: '3%',
containLabel: true
},
toolbox: {
feature: {
saveAsImage: {}
}
},
xAxis: {
type: 'category',
boundaryGap: false,
data: this.xAxisdata//['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
},
yAxis: {
type: 'value'
},
series: this.seriesdata
/**[
{
name: 'Email',
type: 'line',
stack: 'Total',
data: [120, 132, 101, 134, 90, 230, 210],
markLine: {
symbolSize: 0,//
data: [
{
lineStyle: {
color: '#ffc000',
width: 3
},
yAxis: 200,//
label: { show: true, position: 'end', formatter: '上限' }
},
{
lineStyle: {
color: '#4f81bd',
width: 3
},
yAxis: 100,
label: { show: true, position: 'end', formatter: '下限' }
}
]
}
},
{
name: 'Union Ads',
type: 'line',
stack: 'Total',
data: [220, 182, 191, 234, 290, 330, 310]
}
]**/
};
myChart1.setOption(option1);
},
//
handleAnalysis3() {
this.title = "综合图表分析";
if (
this.queryParams.projectNoArray.length > 0 &&
this.queryParams.projectNoArray.length < 2
) {
this.open = true;
this.getanalyzeList3();
} else if (this.queryParams.projectNoArray.length < 0) {
this.$modal.msgError("请选择定量检测项");
} else {
this.$modal.msgError("请选择一项定量检测项");
}
},
getanalyzeList3() {
if (this.queryParams.incomeTimeArray.length > 0) {
this.queryParams.ymArrayStart = moment(
this.queryParams.incomeTimeArray[0]
).format("YYYY-MM-DD");
this.queryParams.ymArrayEnd = moment(
this.queryParams.incomeTimeArray[1]
).format("YYYY-MM-DD");
}
getDLTableAvgInfo(this.queryParams).then((response) => {
this.detailechartslist = [];
this.seriesdata = [];
this.legenddata = [];
this.xAxisdata = [];
let col1 = response.titleCol1;
let col2 = response.titleCol2;
// mcode0Pcode0
for (let i = 0; i < col1.length; i++) {
for (let j = 0; j < col2.length; j++) {
var detailTitle = {};
detailTitle.col1Id = "mcode" + i + "Pcode" + j;
detailTitle.col1Name = col1[i];
detailTitle.col1xName = col2[j];
this.detailechartslist.push(detailTitle);
}
}
if (this.detailechartslist.length > 0) {
this.analyzeList = response;
const datalist = this.detailechartslist.map((item) => {
const xdata = this.analyzeList.dxData.map((d) => {
return (d.ymdms = moment(d.ymdms, "YYYY-MM-DD AVG").format(
"YYYY-MM-DD"
));
});
const datalist = this.analyzeList.dxData.map((d) => d[item.col1Id]);
return {
...item,
xdata,
datalist,
};
});
this.xAxisdata = datalist[0].xdata;
this.titledata = datalist[0].col1xName;
datalist.forEach((e, index) => {
this.legenddata.push(e.col1Name);
if (e.houer) {
state.xAxisdata = e.col1Name;
}
var item = {
name: e.col1Name,
type: 'line',
data: e.datalist,
markLine: {
symbolSize: 0,//
data: [
{
lineStyle: {
color: '#ffc000',
width: 3
},
yAxis: response.upperDiff,//
label: { show: true, position: 'end', formatter: '上限' }
},
{
lineStyle: {
color: '#4f81bd',
width: 3
},
yAxis: response.downDiff,
label: { show: true, position: 'end', formatter: '下限' }
}
]
}
};
this.seriesdata.push(item);
});
this.initChart3();
} else {
this.$modal.msgError("数据为空");
this.detailechartslist = [];
this.seriesdata = [];
this.legenddata = [];
this.xAxisdata = [];
(this.titledata = ""), this.initChart3();
}
});
},
//
initChart3() {
const _this = this;
var chartDom = document.getElementById("echart1");
// ECharts
if (echarts.getInstanceByDom(chartDom)) {
//
echarts.dispose(chartDom);
}
var myChart1 = echarts.init(document.querySelector("#echart1"));
var option3 = {
title: {
text: '综合图表分析'
},
tooltip: {
trigger: 'axis'
},
legend: {
data: this.legenddata//['Email', 'Union Ads']
},
grid: {
left: '3%',
right: '4%',
bottom: '3%',
containLabel: true
},
toolbox: {
feature: {
saveAsImage: {}
}
},
xAxis: {
type: 'category',
boundaryGap: false,
data: this.xAxisdata//['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
},
yAxis: {
type: 'value'
},
series: this.seriesdata
/**[
{
name: 'Email',
type: 'line',
stack: 'Total',
data: [120, 132, 101, 134, 90, 230, 210],
markLine: {
symbolSize: 0,//
data: [
{
lineStyle: {
color: '#ffc000',
width: 3
},
yAxis: 200,//
label: { show: true, position: 'end', formatter: '上限' }
},
{
lineStyle: {
color: '#4f81bd',
width: 3
},
yAxis: 100,
label: { show: true, position: 'end', formatter: '下限' }
}
]
}
},
{
name: 'Union Ads',
type: 'line',
stack: 'Total',
data: [220, 182, 191, 234, 290, 330, 310]
}
]**/
};
myChart1.setOption(option3);
},
}, },
}; };
</script> </script>

@ -375,6 +375,14 @@
v-model="form.reportRate" v-model="form.reportRate"
style="width: 320px" style="width: 320px"
/> />
</el-form-item>
<el-form-item label="每批次最大数量" prop="mvgr5Nm">
<el-input-number
:min="0"
:step="1"
v-model="form.mvgr5Nm"
style="width: 320px"
/>
</el-form-item> </el-form-item>
<el-form-item label="是否启用" prop="activeFlag"> <el-form-item label="是否启用" prop="activeFlag">
<el-select <el-select

Loading…
Cancel
Save