Compare commits
60 Commits
033d61ea96
...
projects/m
| Author | SHA1 | Date | |
|---|---|---|---|
| b31b67d2ed | |||
| fc21359f8f | |||
| be6d84daf5 | |||
| daaec2417c | |||
| dcf4f6c392 | |||
| d27e56cd7f | |||
|
|
445ebe339d | ||
|
|
353e3e0f35 | ||
| ea29a33c2a | |||
|
|
d5673f3c9f | ||
|
|
3064722052 | ||
|
|
dfe52cbac5 | ||
| 68e386333b | |||
|
|
96d55b5a57 | ||
|
|
fb74340f0f | ||
| b1ddfa5c0d | |||
|
|
f7b151f9aa | ||
|
|
51938926d3 | ||
| 588037c45c | |||
|
|
354031f119 | ||
|
|
44c5271b5a | ||
| 241810d1c8 | |||
|
|
92a297a5e9 | ||
|
|
f67e781146 | ||
| e310c5465e | |||
|
|
f2cfe94dfc | ||
|
|
92c0c33fbd | ||
| 0a391a4de5 | |||
|
|
8be57f586e | ||
|
|
4e5a5f9ba2 | ||
| a78c3d79f1 | |||
|
|
3c5163bd66 | ||
|
|
8437d52c1b | ||
| ca0a0142db | |||
| 703334ac3c | |||
| 3897f35d28 | |||
| 3c6e408074 | |||
| a9392c8999 | |||
|
|
196a615f61 | ||
|
|
8395f37371 | ||
|
|
5e703350e1 | ||
| 266604878b | |||
|
|
0c2221b373 | ||
|
|
0992940655 | ||
| 7e1b0f8725 | |||
| 8f8d0396b7 | |||
| 582484f6db | |||
| b259cdb545 | |||
| b6aa6a19f4 | |||
| a9e176be74 | |||
| a237c66901 | |||
|
|
c7205e32a3 | ||
|
|
b180bac226 | ||
|
|
670d7e5600 | ||
| 69b3e7de2e | |||
|
|
0eb17fa08b | ||
|
|
cc800eae5d | ||
|
|
6be1a83dd8 | ||
|
|
15d3b3622c | ||
|
|
c8bc54e04b |
5
.env.dev
5
.env.dev
@@ -1,7 +1,7 @@
|
|||||||
###
|
###
|
||||||
# @Author: zhp
|
# @Author: zhp
|
||||||
# @Date: 2024-04-28 13:42:51
|
# @Date: 2024-04-28 13:42:51
|
||||||
# @LastEditTime: 2024-06-20 10:16:40
|
# @LastEditTime: 2024-06-24 16:57:53
|
||||||
# @LastEditors: DY
|
# @LastEditors: DY
|
||||||
# @Description:
|
# @Description:
|
||||||
###
|
###
|
||||||
@@ -24,7 +24,8 @@ VUE_APP_BASE_API = 'http://glass.kszny.picaiba.com'
|
|||||||
# VUE_APP_BASE_API = 'http://192.168.1.63:48080'
|
# VUE_APP_BASE_API = 'http://192.168.1.63:48080'
|
||||||
# 张一丁
|
# 张一丁
|
||||||
# VUE_APP_BASE_API = 'http://192.168.4.139:48080'
|
# VUE_APP_BASE_API = 'http://192.168.4.139:48080'
|
||||||
|
# 蔡
|
||||||
|
# VUE_APP_BASE_API = 'http://192.168.1.54:48080'
|
||||||
# 路由懒加载
|
# 路由懒加载
|
||||||
VUE_CLI_BABEL_TRANSPILE_MODULES = true
|
VUE_CLI_BABEL_TRANSPILE_MODULES = true
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* @Author: zhp
|
* @Author: zhp
|
||||||
* @Date: 2024-06-17 09:41:03
|
* @Date: 2024-06-17 09:41:03
|
||||||
* @LastEditTime: 2024-06-18 13:47:36
|
* @LastEditTime: 2024-06-20 15:39:21
|
||||||
* @LastEditors: zhp
|
* @LastEditors: zhp
|
||||||
* @Description:
|
* @Description:
|
||||||
*/
|
*/
|
||||||
@@ -9,11 +9,21 @@ import request from '@/utils/request'
|
|||||||
export function getComprehensiveDataPage(data) {
|
export function getComprehensiveDataPage(data) {
|
||||||
return request({
|
return request({
|
||||||
url: 'ip/comprehensive/data/get/comprehensive/data',
|
url: 'ip/comprehensive/data/get/comprehensive/data',
|
||||||
method: 'get',
|
method: 'post',
|
||||||
params: data
|
data: data
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function exportComprehensiveDataPage(data) {
|
||||||
|
return request({
|
||||||
|
url: 'ip/comprehensive/data/export/comprehensive/data',
|
||||||
|
method: 'post',
|
||||||
|
data: data,
|
||||||
|
responseType: 'blob',
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
export function getProduceTransData(data) {
|
export function getProduceTransData(data) {
|
||||||
return request({
|
return request({
|
||||||
url: 'ip/prod-output/queryYCEReportByDateRange',
|
url: 'ip/prod-output/queryYCEReportByDateRange',
|
||||||
@@ -21,3 +31,65 @@ export function getProduceTransData(data) {
|
|||||||
data: data
|
data: data
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function exportProduceTransData(data) {
|
||||||
|
return request({
|
||||||
|
url: 'ip/prod-output/queryYCEReportByDateRangeExcel',
|
||||||
|
method: 'post',
|
||||||
|
data: data,
|
||||||
|
responseType: 'blob',
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
export function getProduceSituationData(data) {
|
||||||
|
return request({
|
||||||
|
url: 'ip/production/situation/get/production/situation',
|
||||||
|
method: 'post',
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
export function exportProduceSituationData(data) {
|
||||||
|
return request({
|
||||||
|
url: 'ip/production/situation/export/production/situation',
|
||||||
|
method: 'post',
|
||||||
|
data: data,
|
||||||
|
responseType: 'blob',
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
export function getProductionSituationMWData(data) {
|
||||||
|
return request({
|
||||||
|
url: 'ip/production/situation/power/get/production/situation',
|
||||||
|
method: 'post',
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
export function exportProductionSituationMWData(data) {
|
||||||
|
return request({
|
||||||
|
url: 'ip/production/situation/power/export/production/situation',
|
||||||
|
method: 'post',
|
||||||
|
data: data,
|
||||||
|
responseType: 'blob',
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
export function getProductionYieldSituationMWData(data) {
|
||||||
|
return request({
|
||||||
|
url: 'ip/product/yield/get/production/situation',
|
||||||
|
method: 'post',
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
export function exportProductionYieldSituationMWData(data) {
|
||||||
|
return request({
|
||||||
|
url: 'ip/product/yield/export/production/situation',
|
||||||
|
method: 'post',
|
||||||
|
data: data,
|
||||||
|
responseType: 'blob',
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|||||||
@@ -289,7 +289,7 @@ function splitCurrentAndPreviousB(factoryListResponse) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function splitCurrentAndPreviousA(factoryListResponse, targetListResponse, prodOutputFtoListRes,preData,preFtoData) {
|
function splitCurrentAndPreviousA(factoryListResponse, targetListResponse, prodOutputFtoListRes,preData,preFtoData) {
|
||||||
console.log('工厂',targetListResponse);
|
console.log('工厂',preData);
|
||||||
|
|
||||||
// 初始数据
|
// 初始数据
|
||||||
const { chipOeeRate, transformRate, chipRate, stdRate } = initA();
|
const { chipOeeRate, transformRate, chipRate, stdRate } = initA();
|
||||||
@@ -343,17 +343,24 @@ function splitCurrentAndPreviousA(factoryListResponse, targetListResponse, prodO
|
|||||||
// componentYieldRate: 0.73,
|
// componentYieldRate: 0.73,
|
||||||
// },
|
// },
|
||||||
// ];
|
// ];
|
||||||
if (preData && preData[0] != null) {
|
if (preData) {
|
||||||
for (const factory of preData) {
|
for (const factory of preData) {
|
||||||
const fId = getPreFactoryId(factory);
|
const fId = getPreFactoryId(factory)
|
||||||
|
console.log('factory',factory.previousYearOee);
|
||||||
// chipInvest.previous[fId] = factory.previousYearInputNumber;
|
// chipInvest.previous[fId] = factory.previousYearInputNumber;
|
||||||
// chipOeeRate.current[fId] = factory.oee;
|
// chipOeeRate.current[fId] = factory.oee;
|
||||||
chipOeeRate.previous[fId] = factory.previousYearOee;
|
if (factory.previousGlassType === 0) {
|
||||||
|
chipOeeRate.previous[fId] = factory.previousYearOee;
|
||||||
|
}
|
||||||
|
// chipOeeRate.previous[fId] = factory.previousYearOee;
|
||||||
// 转化效率
|
// 转化效率
|
||||||
transformRate.previous[fId] =factory.previousYearComponentConversionEfficiency ;
|
if (factory.previousGlassType === 1) {
|
||||||
|
transformRate.previous[fId] = factory.previousYearComponentConversionEfficiency;
|
||||||
|
}
|
||||||
|
// transformRate.previous[fId] =factory.previousYearComponentConversionEfficiency ;
|
||||||
// 芯片良率 与 标准组件良率
|
// 芯片良率 与 标准组件良率
|
||||||
if (![0, 1].includes(factory.glassType)) continue;
|
if (![0, 1].includes(factory.previousGlassType)) continue;
|
||||||
const _t = [chipRate, stdRate][factory.glassType]
|
const _t = [chipRate, stdRate][factory.previousGlassType]
|
||||||
// _t.current[fId] = factory.yieldRate ;
|
// _t.current[fId] = factory.yieldRate ;
|
||||||
_t.previous[fId] = factory.previousYearYieldRate ;
|
_t.previous[fId] = factory.previousYearYieldRate ;
|
||||||
// }
|
// }
|
||||||
@@ -393,6 +400,7 @@ function splitCurrentAndPreviousA(factoryListResponse, targetListResponse, prodO
|
|||||||
_t.current[fId] = factory.yieldRate ;
|
_t.current[fId] = factory.yieldRate ;
|
||||||
// _t.previous[fId] = factory.previousYearYieldRate ;
|
// _t.previous[fId] = factory.previousYearYieldRate ;
|
||||||
}
|
}
|
||||||
|
console.log('chipOeeRate',stdRate);
|
||||||
// console.log('chipOeeRate',chipOeeRate);
|
// console.log('chipOeeRate',chipOeeRate);
|
||||||
return {
|
return {
|
||||||
chipOeeRate,
|
chipOeeRate,
|
||||||
|
|||||||
@@ -63,14 +63,22 @@ export default {
|
|||||||
computed: {},
|
computed: {},
|
||||||
methods: {
|
methods: {
|
||||||
handleExport() {
|
handleExport() {
|
||||||
exportFactoryDataExcel({
|
if (this.period != 1) {
|
||||||
factoryId: this.companyId,
|
exportFactoryDataExcel({
|
||||||
timeSelection: this.period === 1 ? 0 : this.period === 2 ? 1 : this.period === 3 ? 2 : 3,
|
factoryId: this.companyId,
|
||||||
compare: this.than === '同比' ? 1 : 2
|
timeSelection: this.period === 1 ? 0 : this.period === 2 ? 1 : this.period === 3 ? 2 : 3,
|
||||||
}).then(response => {
|
compare: this.than === '同比' ? 1 : 2
|
||||||
this.$download.excel(response, `${this.companyName}生产数据.xls`);
|
}).then(response => {
|
||||||
// this.exportLoading = false;
|
this.$download.excel(response, `${this.companyName}生产数据.xls`);
|
||||||
}).catch(() => { });
|
// this.exportLoading = false;
|
||||||
|
}).catch(() => { });
|
||||||
|
} else {
|
||||||
|
this.$message({
|
||||||
|
type: 'warning',
|
||||||
|
message: '为日的情况下没有导出功能',
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
toggleFullScreen() {
|
toggleFullScreen() {
|
||||||
this.isFullscreen = !this.isFullscreen;
|
this.isFullscreen = !this.isFullscreen;
|
||||||
|
|||||||
@@ -65,21 +65,26 @@ export default {
|
|||||||
items = [
|
items = [
|
||||||
{ label: `${year - 1}年${yesterday}日`, color: "#12f7f1" },
|
{ label: `${year - 1}年${yesterday}日`, color: "#12f7f1" },
|
||||||
{ label: `${yesterday}日`, color: "#58adfa" },
|
{ label: `${yesterday}日`, color: "#58adfa" },
|
||||||
|
{ label: `${yesterday}日目标`, color: "#58adfa" },
|
||||||
];
|
];
|
||||||
} else if (this.period === '日' && this.than === '环比') {
|
} else if (this.period === '日' && this.than === '环比') {
|
||||||
items = [
|
items = [
|
||||||
{ label: `${dayBeYes}日`, color: "#12f7f1" },
|
{ label: `${dayBeYes}日`, color: "#12f7f1" },
|
||||||
{ label: `${yesterday}日`, color: "#58adfa" },
|
{ label: `${yesterday}日`, color: "#58adfa" },
|
||||||
|
{ label: `${yesterday}日目标`, color: "#58adfa" },
|
||||||
];
|
];
|
||||||
} else if (this.period === '周' && this.than === '同比') {
|
} else if (this.period === '周' && this.than === '同比') {
|
||||||
items = [
|
items = [
|
||||||
{ label: `${year-1}年本周`, color: "#12f7f1" },
|
{ label: `${year-1}年本周`, color: "#12f7f1" },
|
||||||
{ label: `本周`, color: "#58adfa" },
|
{ label: `本周`, color: "#58adfa" },
|
||||||
|
{ label: `本周目标`, color: "#58adfa" },
|
||||||
|
|
||||||
];
|
];
|
||||||
} else if (this.period === '周' && this.than === '环比') {
|
} else if (this.period === '周' && this.than === '环比') {
|
||||||
items = [
|
items = [
|
||||||
{ label: `上周`, color: "#12f7f1" },
|
{ label: `上周`, color: "#12f7f1" },
|
||||||
{ label: `本周`, color: "#58adfa" },
|
{ label: `本周`, color: "#58adfa" },
|
||||||
|
{ label: `本周目标`, color: "#58adfa" },
|
||||||
];
|
];
|
||||||
} else if (this.period === '月' && this.than === '同比') {
|
} else if (this.period === '月' && this.than === '同比') {
|
||||||
items = [
|
items = [
|
||||||
@@ -141,14 +146,6 @@ export default {
|
|||||||
// console.log('chipOee', chipOeeRate)
|
// console.log('chipOee', chipOeeRate)
|
||||||
let dataList = null
|
let dataList = null
|
||||||
switch (this.period) {
|
switch (this.period) {
|
||||||
case "日":
|
|
||||||
dataList = [];
|
|
||||||
dataList[0] = chipOeeRate?.previous;
|
|
||||||
dataList[1] = chipOeeRate?.current;
|
|
||||||
case "周":
|
|
||||||
dataList = [];
|
|
||||||
dataList[0] = chipOeeRate?.previous;
|
|
||||||
dataList[1] = chipOeeRate?.current;
|
|
||||||
default:
|
default:
|
||||||
dataList = [];
|
dataList = [];
|
||||||
dataList[0] = chipOeeRate?.previous;
|
dataList[0] = chipOeeRate?.previous;
|
||||||
@@ -191,6 +188,11 @@ function getTemplate(period, dataList, than) {
|
|||||||
data: dataList ? dataList[1] : [],
|
data: dataList ? dataList[1] : [],
|
||||||
// : Array.from({ length: 7 }, () => Math.floor(Math.random() * 1000)),
|
// : Array.from({ length: 7 }, () => Math.floor(Math.random() * 1000)),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: `${yesterday}日目标`,
|
||||||
|
data: dataList ? dataList[2] : [],
|
||||||
|
// : Array.from({ length: 7 }, () => Math.floor(Math.random() * 1000)),
|
||||||
|
},
|
||||||
];
|
];
|
||||||
} else if (period === '日' && than === '环比') {
|
} else if (period === '日' && than === '环比') {
|
||||||
items = [
|
items = [
|
||||||
@@ -203,6 +205,11 @@ function getTemplate(period, dataList, than) {
|
|||||||
data: dataList ? dataList[1] : [],
|
data: dataList ? dataList[1] : [],
|
||||||
// : Array.from({ length: 7 }, () => Math.floor(Math.random() * 1000)),
|
// : Array.from({ length: 7 }, () => Math.floor(Math.random() * 1000)),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: `${yesterday}日目标`,
|
||||||
|
data: dataList ? dataList[2] : [],
|
||||||
|
// : Array.from({ length: 7 }, () => Math.floor(Math.random() * 1000)),
|
||||||
|
},
|
||||||
];
|
];
|
||||||
} else if (period === '周' && than === '同比') {
|
} else if (period === '周' && than === '同比') {
|
||||||
items = [
|
items = [
|
||||||
@@ -215,6 +222,11 @@ function getTemplate(period, dataList, than) {
|
|||||||
data: dataList ? dataList[1] : [],
|
data: dataList ? dataList[1] : [],
|
||||||
// : Array.from({ length: 7 }, () => Math.floor(Math.random() * 1000)),
|
// : Array.from({ length: 7 }, () => Math.floor(Math.random() * 1000)),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: `本周目标`,
|
||||||
|
data: dataList ? dataList[2] : [],
|
||||||
|
// : Array.from({ length: 7 }, () => Math.floor(Math.random() * 1000)),
|
||||||
|
},
|
||||||
];
|
];
|
||||||
} else if (period === '周' && than === '环比') {
|
} else if (period === '周' && than === '环比') {
|
||||||
items = [
|
items = [
|
||||||
@@ -227,6 +239,11 @@ function getTemplate(period, dataList, than) {
|
|||||||
data: dataList ? dataList[1] : [],
|
data: dataList ? dataList[1] : [],
|
||||||
// : Array.from({ length: 7 }, () => Math.floor(Math.random() * 1000)),
|
// : Array.from({ length: 7 }, () => Math.floor(Math.random() * 1000)),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: `本周目标`,
|
||||||
|
data: dataList ? dataList[2] : [],
|
||||||
|
// : Array.from({ length: 7 }, () => Math.floor(Math.random() * 1000)),
|
||||||
|
},
|
||||||
];
|
];
|
||||||
} else if (period === '月' && than === '同比') {
|
} else if (period === '月' && than === '同比') {
|
||||||
items = [
|
items = [
|
||||||
|
|||||||
@@ -65,21 +65,26 @@ export default {
|
|||||||
items = [
|
items = [
|
||||||
{ label: `${year - 1}年${yesterday}日`, color: "#12f7f1" },
|
{ label: `${year - 1}年${yesterday}日`, color: "#12f7f1" },
|
||||||
{ label: `${yesterday}日`, color: "#58adfa" },
|
{ label: `${yesterday}日`, color: "#58adfa" },
|
||||||
|
{ label: `${yesterday}日目标`, color: "#58adfa" },
|
||||||
|
|
||||||
];
|
];
|
||||||
} else if (this.period === '日' && this.than === '环比') {
|
} else if (this.period === '日' && this.than === '环比') {
|
||||||
items = [
|
items = [
|
||||||
{ label: `${dayBeYes}日`, color: "#12f7f1" },
|
{ label: `${dayBeYes}日`, color: "#12f7f1" },
|
||||||
{ label: `${yesterday}日`, color: "#58adfa" },
|
{ label: `${yesterday}日`, color: "#58adfa" },
|
||||||
|
{ label: `${yesterday}日目标`, color: "#58adfa" },
|
||||||
];
|
];
|
||||||
} else if (this.period === '周' && this.than === '同比') {
|
} else if (this.period === '周' && this.than === '同比') {
|
||||||
items = [
|
items = [
|
||||||
{ label: `${year-1}年本周`, color: "#12f7f1" },
|
{ label: `${year-1}年本周`, color: "#12f7f1" },
|
||||||
{ label: `本周`, color: "#58adfa" },
|
{ label: `本周`, color: "#58adfa" },
|
||||||
|
{ label: `本周目标`, color: "#58adfa" },
|
||||||
];
|
];
|
||||||
} else if (this.period === '周' && this.than === '环比') {
|
} else if (this.period === '周' && this.than === '环比') {
|
||||||
items = [
|
items = [
|
||||||
{ label: `上周`, color: "#12f7f1" },
|
{ label: `上周`, color: "#12f7f1" },
|
||||||
{ label: `本周`, color: "#58adfa" },
|
{ label: `本周`, color: "#58adfa" },
|
||||||
|
{ label: `本周目标`, color: "#58adfa" },
|
||||||
];
|
];
|
||||||
} else if (this.period === '月' && this.than === '同比') {
|
} else if (this.period === '月' && this.than === '同比') {
|
||||||
items = [
|
items = [
|
||||||
@@ -112,17 +117,9 @@ export default {
|
|||||||
series() {
|
series() {
|
||||||
// console.log('aaaaaaaa', this.$store.getters.copilot.efficiency.chipOee);
|
// console.log('aaaaaaaa', this.$store.getters.copilot.efficiency.chipOee);
|
||||||
const transformRate = this.transformRate
|
const transformRate = this.transformRate
|
||||||
// console.log('chipOee', chipOeeRate)
|
console.log('chipOee', transformRate)
|
||||||
let dataList = null;
|
let dataList = null;
|
||||||
switch (this.period) {
|
switch (this.period) {
|
||||||
case "日":
|
|
||||||
dataList = [];
|
|
||||||
dataList[0] = transformRate.previous;
|
|
||||||
dataList[1] = transformRate.current;
|
|
||||||
case "周":
|
|
||||||
dataList = [];
|
|
||||||
dataList[0] = transformRate.previous;
|
|
||||||
dataList[1] = transformRate.current;
|
|
||||||
default:
|
default:
|
||||||
dataList = [];
|
dataList = [];
|
||||||
dataList[0] = transformRate.previous;
|
dataList[0] = transformRate.previous;
|
||||||
@@ -182,6 +179,11 @@ function getTemplate(period, dataList,than) {
|
|||||||
data: dataList ? dataList[1] : [],
|
data: dataList ? dataList[1] : [],
|
||||||
// : Array.from({ length: 7 }, () => Math.floor(Math.random() * 1000)),
|
// : Array.from({ length: 7 }, () => Math.floor(Math.random() * 1000)),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: `${yesterday}日目标`,
|
||||||
|
data: dataList ? dataList[2] : [],
|
||||||
|
// : Array.from({ length: 7 }, () => Math.floor(Math.random() * 1000)),
|
||||||
|
},
|
||||||
];
|
];
|
||||||
} else if (period === '日' && than === '环比') {
|
} else if (period === '日' && than === '环比') {
|
||||||
items = [
|
items = [
|
||||||
@@ -194,6 +196,11 @@ function getTemplate(period, dataList,than) {
|
|||||||
data: dataList ? dataList[1] : [],
|
data: dataList ? dataList[1] : [],
|
||||||
// : Array.from({ length: 7 }, () => Math.floor(Math.random() * 1000)),
|
// : Array.from({ length: 7 }, () => Math.floor(Math.random() * 1000)),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: `${yesterday}日目标`,
|
||||||
|
data: dataList ? dataList[2] : [],
|
||||||
|
// : Array.from({ length: 7 }, () => Math.floor(Math.random() * 1000)),
|
||||||
|
},
|
||||||
];
|
];
|
||||||
} else if (period === '周' && than === '同比') {
|
} else if (period === '周' && than === '同比') {
|
||||||
items = [
|
items = [
|
||||||
@@ -206,6 +213,11 @@ function getTemplate(period, dataList,than) {
|
|||||||
data: dataList ? dataList[1] : [],
|
data: dataList ? dataList[1] : [],
|
||||||
// : Array.from({ length: 7 }, () => Math.floor(Math.random() * 1000)),
|
// : Array.from({ length: 7 }, () => Math.floor(Math.random() * 1000)),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: `本周目标`,
|
||||||
|
data: dataList ? dataList[2] : [],
|
||||||
|
// : Array.from({ length: 7 }, () => Math.floor(Math.random() * 1000)),
|
||||||
|
},
|
||||||
];
|
];
|
||||||
} else if (period === '周' && than === '环比') {
|
} else if (period === '周' && than === '环比') {
|
||||||
items = [
|
items = [
|
||||||
@@ -218,6 +230,11 @@ function getTemplate(period, dataList,than) {
|
|||||||
data: dataList ? dataList[1] : [],
|
data: dataList ? dataList[1] : [],
|
||||||
// : Array.from({ length: 7 }, () => Math.floor(Math.random() * 1000)),
|
// : Array.from({ length: 7 }, () => Math.floor(Math.random() * 1000)),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: `本周目标`,
|
||||||
|
data: dataList ? dataList[2] : [],
|
||||||
|
// : Array.from({ length: 7 }, () => Math.floor(Math.random() * 1000)),
|
||||||
|
},
|
||||||
];
|
];
|
||||||
} else if (period === '月' && than === '同比') {
|
} else if (period === '月' && than === '同比') {
|
||||||
items = [
|
items = [
|
||||||
|
|||||||
@@ -65,13 +65,13 @@ export default {
|
|||||||
valueTuple() {
|
valueTuple() {
|
||||||
const getter = this.chipRate;
|
const getter = this.chipRate;
|
||||||
// console.log(getter)
|
// console.log(getter)
|
||||||
if (this.period === "日" || this.period === "周") {
|
// if (this.period === "日" || this.period === "周") {
|
||||||
return [
|
// return [
|
||||||
getter.previous[this.factoryId],
|
// getter.previous[this.factoryId],
|
||||||
getter.current[this.factoryId],
|
// getter.current[this.factoryId],
|
||||||
0,
|
// 0,
|
||||||
];
|
// ];
|
||||||
}
|
// }
|
||||||
// [100, 200, 200]
|
// [100, 200, 200]
|
||||||
return [
|
return [
|
||||||
getter.previous[this.factoryId],
|
getter.previous[this.factoryId],
|
||||||
@@ -105,21 +105,25 @@ export default {
|
|||||||
items = [
|
items = [
|
||||||
{ label: `${yesterday}日良率`, },
|
{ label: `${yesterday}日良率`, },
|
||||||
{ label: `${year - 1}年${yesterday}日良率` },
|
{ label: `${year - 1}年${yesterday}日良率` },
|
||||||
|
{ label: `${yesterday}日目标` },
|
||||||
];
|
];
|
||||||
} else if (this.period === '日' && this.than === '环比') {
|
} else if (this.period === '日' && this.than === '环比') {
|
||||||
items = [
|
items = [
|
||||||
{ label: `${yesterday}日良率` },
|
{ label: `${yesterday}日良率` },
|
||||||
{ label: `${dayBeYes}日良率` },
|
{ label: `${dayBeYes}日良率` },
|
||||||
|
{ label: `${yesterday}日目标` },
|
||||||
];
|
];
|
||||||
} else if (this.period === '周' && this.than === '同比') {
|
} else if (this.period === '周' && this.than === '同比') {
|
||||||
items = [
|
items = [
|
||||||
{ label: `本周良率`, },
|
{ label: `本周良率`, },
|
||||||
{ label: `${year-1}年本周良率` },
|
{ label: `${year - 1}年本周良率` },
|
||||||
|
{ label: `本周目标`, },
|
||||||
];
|
];
|
||||||
} else if (this.period === '周' && this.than === '环比') {
|
} else if (this.period === '周' && this.than === '环比') {
|
||||||
items = [
|
items = [
|
||||||
{ label: `本周良率`, },
|
{ label: `本周良率`, },
|
||||||
{ label: `上周良率`, },
|
{ label: `上周良率`, },
|
||||||
|
{ label: `本周目标`, },
|
||||||
];
|
];
|
||||||
} else if (this.period === '月' && this.than === '同比') {
|
} else if (this.period === '月' && this.than === '同比') {
|
||||||
items = [
|
items = [
|
||||||
@@ -147,12 +151,13 @@ export default {
|
|||||||
月: `${month}月良率`,
|
月: `${month}月良率`,
|
||||||
年: `${year}良率`,
|
年: `${year}良率`,
|
||||||
}[this.period];
|
}[this.period];
|
||||||
console.log(vt[1]);
|
console.log(vt[0]);
|
||||||
const t = getOptions({
|
const t = getOptions({
|
||||||
// single,
|
// single,
|
||||||
color: this.color == 1 ? "#4CF0E8" : "#1065ff",
|
color: this.color == 1 ? "#4CF0E8" : "#1065ff",
|
||||||
titleValue,
|
titleValue,
|
||||||
subtitle,
|
subtitle,
|
||||||
|
yesterday,
|
||||||
currentName: items[0].label,
|
currentName: items[0].label,
|
||||||
preName: items[1].label,
|
preName: items[1].label,
|
||||||
previousSum: vt[0],
|
previousSum: vt[0],
|
||||||
@@ -182,22 +187,25 @@ export default {
|
|||||||
items = [
|
items = [
|
||||||
{ label: `${year - 1}年${yesterday}日良率`, value: isNaN(this.valueTuple[0]) || this.valueTuple[0] == null ? 0 + "%" : (this.formatNumber(this.valueTuple[0]) ) + "%" },
|
{ label: `${year - 1}年${yesterday}日良率`, value: isNaN(this.valueTuple[0]) || this.valueTuple[0] == null ? 0 + "%" : (this.formatNumber(this.valueTuple[0]) ) + "%" },
|
||||||
{ label: `${yesterday}日良率`, value: isNaN(this.valueTuple[1]) || this.valueTuple[1] == null ? 0 + "%" : (this.formatNumber(this.valueTuple[1])) + "%" },
|
{ label: `${yesterday}日良率`, value: isNaN(this.valueTuple[1]) || this.valueTuple[1] == null ? 0 + "%" : (this.formatNumber(this.valueTuple[1])) + "%" },
|
||||||
|
{ label: `${yesterday}日目标`, value: isNaN(this.valueTuple[2]) || this.valueTuple[2] == null ? 0 + "%" : (this.formatNumber(this.valueTuple[2])) + "%" },
|
||||||
];
|
];
|
||||||
} else if (this.period === '日' && this.than === '环比') {
|
} else if (this.period === '日' && this.than === '环比') {
|
||||||
items = [
|
items = [
|
||||||
{ label: `${dayBeYes}日良率`, value: isNaN(this.valueTuple[0]) || this.valueTuple[0] == null ? 0 + "%" : (this.formatNumber(this.valueTuple[0])) + "%" },
|
{ label: `${dayBeYes}日良率`, value: isNaN(this.valueTuple[0]) || this.valueTuple[0] == null ? 0 + "%" : (this.formatNumber(this.valueTuple[0])) + "%" },
|
||||||
{ label: `${yesterday}日良率`, value: isNaN(this.valueTuple[1]) || this.valueTuple[1] == null ? 0 + "%" : (this.formatNumber(this.valueTuple[1])) + "%" },
|
{ label: `${yesterday}日良率`, value: isNaN(this.valueTuple[1]) || this.valueTuple[1] == null ? 0 + "%" : (this.formatNumber(this.valueTuple[1])) + "%" },
|
||||||
|
{ label: `${yesterday}日目标`, value: isNaN(this.valueTuple[2]) || this.valueTuple[2] == null ? 0 + "%" : (this.formatNumber(this.valueTuple[2])) + "%" },
|
||||||
];
|
];
|
||||||
} else if (this.period === '周' && this.than === '同比') {
|
} else if (this.period === '周' && this.than === '同比') {
|
||||||
items = [
|
items = [
|
||||||
{ label: `${year-1}年本周良率`, value: isNaN(this.valueTuple[0]) || this.valueTuple[0] == null ? 0 + "%" : (this.formatNumber(this.valueTuple[0])) + "%" },
|
{ label: `${year-1}年本周良率`, value: isNaN(this.valueTuple[0]) || this.valueTuple[0] == null ? 0 + "%" : (this.formatNumber(this.valueTuple[0])) + "%" },
|
||||||
{ label: `本周良率`, value: isNaN(this.valueTuple[1]) || this.valueTuple[1] == null ? 0 + "%" : (this.formatNumber(this.valueTuple[1])) + "%" },
|
{ label: `本周良率`, value: isNaN(this.valueTuple[1]) || this.valueTuple[1] == null ? 0 + "%" : (this.formatNumber(this.valueTuple[1])) + "%" },
|
||||||
|
{ label: `本周目标`, value: isNaN(this.valueTuple[2]) || this.valueTuple[2] == null ? 0 + "%" : (this.formatNumber(this.valueTuple[2])) + "%" },
|
||||||
];
|
];
|
||||||
} else if (this.period === '周' && this.than === '环比') {
|
} else if (this.period === '周' && this.than === '环比') {
|
||||||
items = [
|
items = [
|
||||||
{ label: `上周良率`, value: isNaN(this.valueTuple[0]) || this.valueTuple[0] == null ? 0 + "%" : (this.formatNumber(this.valueTuple[0])) + "%" },
|
{ label: `上周良率`, value: isNaN(this.valueTuple[0]) || this.valueTuple[0] == null ? 0 + "%" : (this.formatNumber(this.valueTuple[0])) + "%" },
|
||||||
{ label: `本周良率`, value: isNaN(this.valueTuple[1]) || this.valueTuple[1] == null ? 0 + "%" : (this.formatNumber(this.valueTuple[1])) + "%" },
|
{ label: `本周良率`, value: isNaN(this.valueTuple[1]) || this.valueTuple[1] == null ? 0 + "%" : (this.formatNumber(this.valueTuple[1])) + "%" },
|
||||||
|
{ label: `本周目标`, value: isNaN(this.valueTuple[2]) || this.valueTuple[2] == null ? 0 + "%" : (this.formatNumber(this.valueTuple[2])) + "%" },
|
||||||
];
|
];
|
||||||
} else if (this.period === '月' && this.than === '同比') {
|
} else if (this.period === '月' && this.than === '同比') {
|
||||||
items = [
|
items = [
|
||||||
|
|||||||
@@ -47,12 +47,12 @@ export default {
|
|||||||
computed: {
|
computed: {
|
||||||
dataRate() {
|
dataRate() {
|
||||||
// if (this.current != 0 && this.target != 0) {
|
// if (this.current != 0 && this.target != 0) {
|
||||||
console.log( '1111111111', this.current, this.target);
|
console.log( '1111111111', this.current, this.target,this.previous);
|
||||||
return this.current == 0 && this.target == 0
|
return this.current == 0 && this.target == 0
|
||||||
? 0
|
? 0
|
||||||
: this.current != 0 && this.target != 0
|
: this.current != 0 && this.target != 0
|
||||||
? `${((this.current / this.target) * 100).toFixed(2)}%`
|
? `${((this.current / this.target) * 100).toFixed(2)}%`
|
||||||
: this.current != 0 && this.target == 0 && this.current >= 100 ? 100 + '%' : this.current != 0 && this.target == 0 && this.current < 100 ? this.current + '%' : this.previous >=100 ? 100 + '%' : this.previous + '%';
|
: this.current != 0 && this.target == 0 && this.current >= 100 ? 100 + '%' : this.current != 0 && this.target == 0 && this.current < 100 ? this.current + '%' : 0 + '%'
|
||||||
// } else if(this.previous != 0) {
|
// } else if(this.previous != 0) {
|
||||||
// return this.previous + '%'
|
// return this.previous + '%'
|
||||||
// }
|
// }
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Author: zhp
|
* @Author: zhp
|
||||||
* @Date: 2024-05-07 10:25:10
|
* @Date: 2024-05-07 10:25:10
|
||||||
* @LastEditTime: 2024-06-14 09:58:01
|
* @LastEditTime: 2024-06-27 09:13:38
|
||||||
* @LastEditors: zhp
|
* @LastEditors: zhp
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
@@ -11,21 +11,21 @@
|
|||||||
<CityName :value="city.name" />
|
<CityName :value="city.name" />
|
||||||
<div class="std-rate-item__value">
|
<div class="std-rate-item__value">
|
||||||
<ProgressBar :period="period" :title="title" :target="city.target" :current="city.current" />
|
<ProgressBar :period="period" :title="title" :target="city.target" :current="city.current" />
|
||||||
<ProgressBar :period="period" :title="titlePre" :previous="city.previous" />
|
<preProgressBar :period="period" :title="titlePre" :previous="city.previous" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div v-else-if="period == '周'" class="std-rate-item">
|
<div v-else-if="period == '周'" class="std-rate-item">
|
||||||
<CityName :value="city.name" />
|
<CityName :value="city.name" />
|
||||||
<div class="std-rate-item__value">
|
<div class="std-rate-item__value">
|
||||||
<ProgressBar :period="period" :title="title" :target="city.target" :current="city.current" />
|
<ProgressBar :period="period" :title="title" :target="city.target" :current="city.current" />
|
||||||
<ProgressBar :period="period" :title="titlePre" :previous="city.previous" />
|
<preProgressBar :period="period" :title="titlePre" :previous="city.previous" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div v-else-if="period == '月'" class="std-rate-item">
|
<div v-else-if="period == '月'" class="std-rate-item">
|
||||||
<CityName :value="city.name" />
|
<CityName :value="city.name" />
|
||||||
<div class="std-rate-item__value">
|
<div class="std-rate-item__value">
|
||||||
<ProgressBar :period="period" :title="titleTarget" :target="city.target" :current="city.current" />
|
<ProgressBar :period="period" :title="titleTarget" :target="city.target" :current="city.current" />
|
||||||
<ProgressBar :period="period" :title="titlePre" :previous="city.previous" />
|
<preProgressBar :period="period" :title="titlePre" :previous="city.previous" />
|
||||||
<!-- <ProgressBar :period="period" :title="title" :value="city.current" /> -->
|
<!-- <ProgressBar :period="period" :title="title" :value="city.current" /> -->
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -33,7 +33,7 @@
|
|||||||
<CityName :value="city.name" />
|
<CityName :value="city.name" />
|
||||||
<div class="std-rate-item__value">
|
<div class="std-rate-item__value">
|
||||||
<ProgressBar :period="period" :title="titleTarget" :target="city.target" :current="city.current" />
|
<ProgressBar :period="period" :title="titleTarget" :target="city.target" :current="city.current" />
|
||||||
<ProgressBar :period="period" :title="titlePre" :previous="city.previous" />
|
<preProgressBar :period="period" :title="titlePre" :previous="city.previous" />
|
||||||
<!-- <ProgressBar :period="period" :title="title" :value="city.current" /> -->
|
<!-- <ProgressBar :period="period" :title="title" :value="city.current" /> -->
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -42,10 +42,12 @@
|
|||||||
<script>
|
<script>
|
||||||
import CityName from "./CityName.vue";
|
import CityName from "./CityName.vue";
|
||||||
import ProgressBar from "./ProgressBar.vue";
|
import ProgressBar from "./ProgressBar.vue";
|
||||||
|
import preProgressBar from "./preProgressBar.vue";
|
||||||
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "StdRateItem",
|
name: "StdRateItem",
|
||||||
components: { CityName, ProgressBar },
|
components: { CityName, ProgressBar, preProgressBar },
|
||||||
props: {
|
props: {
|
||||||
city: {
|
city: {
|
||||||
type: Object,
|
type: Object,
|
||||||
|
|||||||
@@ -0,0 +1,130 @@
|
|||||||
|
<!--
|
||||||
|
* @Author: zhp
|
||||||
|
* @Date: 2024-06-27 09:12:54
|
||||||
|
* @LastEditTime: 2024-06-27 09:14:21
|
||||||
|
* @LastEditors: zhp
|
||||||
|
* @Description:
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div class="progress-bar" :data-title="title" :data-rate="previous + '%'">
|
||||||
|
<div class="progress-bar__rate" :style="{ width: dataRate == '-' ? 0 : dataRate }"></div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: "ProgressBar",
|
||||||
|
components: {},
|
||||||
|
props: {
|
||||||
|
value: {
|
||||||
|
type: Number,
|
||||||
|
default: 0,
|
||||||
|
},
|
||||||
|
target: {
|
||||||
|
type: Number,
|
||||||
|
default: 0,
|
||||||
|
},
|
||||||
|
previous: {
|
||||||
|
type: Number,
|
||||||
|
default: 0,
|
||||||
|
},
|
||||||
|
current: {
|
||||||
|
type: Number,
|
||||||
|
default: 0,
|
||||||
|
},
|
||||||
|
// total: {
|
||||||
|
// type: Number,
|
||||||
|
// default: 0,
|
||||||
|
// },
|
||||||
|
title: {
|
||||||
|
type: String,
|
||||||
|
default: "",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {};
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
dataRate() {
|
||||||
|
// if (this.current != 0 && this.target != 0) {
|
||||||
|
// console.log( '1111111111', this.current, this.target,this.previous);
|
||||||
|
return this.previous >=100 ? 100 + '%' : this.previous + '%';
|
||||||
|
// } else if(this.previous != 0) {
|
||||||
|
// return this.previous + '%'
|
||||||
|
// }
|
||||||
|
},
|
||||||
|
},
|
||||||
|
methods: {},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
.progress-bar {
|
||||||
|
height: 10px;
|
||||||
|
background-color: #002f6b;
|
||||||
|
border-radius: 4px;
|
||||||
|
margin-bottom: 12px;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
&:before {
|
||||||
|
content: attr(data-title);
|
||||||
|
display: inline-block;
|
||||||
|
color: #fff;
|
||||||
|
position: absolute;
|
||||||
|
bottom: -200%;
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:after {
|
||||||
|
content: attr(data-rate);
|
||||||
|
display: inline-block;
|
||||||
|
color: #fff;
|
||||||
|
position: absolute;
|
||||||
|
bottom: -200%;
|
||||||
|
right: 0;
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:first-child {
|
||||||
|
&:after {
|
||||||
|
color: #11eae3;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&:nth-child(2) {
|
||||||
|
&:after {
|
||||||
|
color: #0e65fd;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.progress-bar__rate {
|
||||||
|
position: absolute;
|
||||||
|
display: inline-block;
|
||||||
|
height: 100%;
|
||||||
|
width: 0;
|
||||||
|
border-radius: 4px;
|
||||||
|
background: linear-gradient(to right,
|
||||||
|
#004c5e11 10%,
|
||||||
|
#004c5e,
|
||||||
|
#0ac0c0,
|
||||||
|
#11eae3);
|
||||||
|
}
|
||||||
|
|
||||||
|
&:first-child {
|
||||||
|
.progress-bar__rate {
|
||||||
|
background: linear-gradient(to right,
|
||||||
|
#004c5e11 10%,
|
||||||
|
#004c5e,
|
||||||
|
#0ac0c0,
|
||||||
|
#11eae3);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&:nth-child(2) {
|
||||||
|
.progress-bar__rate {
|
||||||
|
background: linear-gradient(to right, #0048a811, #0048a8, #0e65fd);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -6,6 +6,7 @@ export default ({
|
|||||||
targetSum,
|
targetSum,
|
||||||
currentName,
|
currentName,
|
||||||
preName,
|
preName,
|
||||||
|
yesterday,
|
||||||
}) => ({
|
}) => ({
|
||||||
grid: {
|
grid: {
|
||||||
left: 300,
|
left: 300,
|
||||||
@@ -25,7 +26,7 @@ export default ({
|
|||||||
fontSize: 26,
|
fontSize: 26,
|
||||||
color: "#fffd",
|
color: "#fffd",
|
||||||
},
|
},
|
||||||
subtext: `\u2002${subtitle}\u2002`,
|
subtext: `\u2002${yesterday + '日良率'}\u2002`,
|
||||||
subtextStyle: {
|
subtextStyle: {
|
||||||
fontSize: 14,
|
fontSize: 14,
|
||||||
fontWeight: 100,
|
fontWeight: 100,
|
||||||
@@ -109,6 +110,9 @@ export default ({
|
|||||||
{
|
{
|
||||||
value: previousSum,
|
value: previousSum,
|
||||||
name: preName,
|
name: preName,
|
||||||
|
tooltip: {
|
||||||
|
formatter: `${preName} : ${previousSum}`
|
||||||
|
},
|
||||||
selected: false,
|
selected: false,
|
||||||
itemStyle: {
|
itemStyle: {
|
||||||
borderJoin: "round",
|
borderJoin: "round",
|
||||||
@@ -129,10 +133,11 @@ export default ({
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
value:previousSum == 0
|
value:previousSum === 0 ? 1 : 0,
|
||||||
? 1
|
name: preName,
|
||||||
: 0,
|
tooltip: {
|
||||||
name: "-",
|
formatter: `${preName} : ${previousSum}`
|
||||||
|
},
|
||||||
itemStyle: { color: "transparent" },
|
itemStyle: { color: "transparent" },
|
||||||
label: { show: false },
|
label: { show: false },
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -134,11 +134,11 @@ export default {
|
|||||||
if (preData && preData[0] != null) {
|
if (preData && preData[0] != null) {
|
||||||
for (const factory of preData) {
|
for (const factory of preData) {
|
||||||
if (factory.previousGlassType === 0) {
|
if (factory.previousGlassType === 0) {
|
||||||
preDataDetail[1] = factory.previousYearOutputNumber
|
preDataDetail[1] = factory.previousOutputNumber
|
||||||
} else if (factory.previousGlassType === 1) {
|
} else if (factory.previousGlassType === 1) {
|
||||||
preDataDetail[2] = factory.previousYearOutputNumber
|
preDataDetail[2] = factory.previousOutputNumber
|
||||||
} else if (factory.previousYearOutputNumber === 2) {
|
} else if (factory.previousGlassType === 2) {
|
||||||
currentDataDetail[3] = factory.outputNumber
|
preDataDetail[3] = factory.previousOutputNumber
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -132,16 +132,17 @@ export default {
|
|||||||
// }
|
// }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (preData && preData[0] != null) {
|
if (preData) {
|
||||||
for (const factory of preData) {
|
for (const factory of preData) {
|
||||||
if (factory.previousGlassType === 0) {
|
if (factory.previousGlassType === 0) {
|
||||||
preDataDetail[1] = factory.previousYearOutputNumber
|
console.log('factory', factory)
|
||||||
|
preDataDetail[1] = factory.previousOutputNumber
|
||||||
} else if (factory.previousGlassType === 1) {
|
} else if (factory.previousGlassType === 1) {
|
||||||
preDataDetail[2] = factory.previousYearOutputNumber
|
preDataDetail[2] = factory.previousOutputNumber
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (targetListResponse && targetListResponse[0] != null) {
|
if (targetListResponse) {
|
||||||
for (const factory of targetListResponse) {
|
for (const factory of targetListResponse) {
|
||||||
targetDataDetail[0] = factory.ftoInput
|
targetDataDetail[0] = factory.ftoInput
|
||||||
// if (factory.previousGlassType === 0) {
|
// if (factory.previousGlassType === 0) {
|
||||||
@@ -153,7 +154,7 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
// console.log('ftoInvest',ftoInvest)
|
// console.log('ftoInvest',ftoInvest)
|
||||||
if (factoryListResponse && factoryListResponse[0] != null) {
|
if (factoryListResponse) {
|
||||||
for (const factory of factoryListResponse) {
|
for (const factory of factoryListResponse) {
|
||||||
// targetDataDetail[0] = factory.ftoInput
|
// targetDataDetail[0] = factory.ftoInput
|
||||||
if (factory.glassType === 0) {
|
if (factory.glassType === 0) {
|
||||||
@@ -163,6 +164,7 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
console.log(' this.factoryData.preDataDetail', preDataDetail);
|
||||||
this.factoryData.preDataDetail = preDataDetail
|
this.factoryData.preDataDetail = preDataDetail
|
||||||
this.factoryData.currentDataDetail = currentDataDetail
|
this.factoryData.currentDataDetail = currentDataDetail
|
||||||
this.factoryData.targetDataDetail = targetDataDetail
|
this.factoryData.targetDataDetail = targetDataDetail
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ export default ({
|
|||||||
tooltip: {},
|
tooltip: {},
|
||||||
title: {
|
title: {
|
||||||
text: titleValue,
|
text: titleValue,
|
||||||
left: "44%",
|
left: "48%",
|
||||||
top: "37%",
|
top: "37%",
|
||||||
textAlign: "center",
|
textAlign: "center",
|
||||||
textStyle: {
|
textStyle: {
|
||||||
@@ -39,7 +39,7 @@ export default ({
|
|||||||
type: "pie",
|
type: "pie",
|
||||||
name: "当前目标",
|
name: "当前目标",
|
||||||
radius: ["80%", "90%"],
|
radius: ["80%", "90%"],
|
||||||
center: ["45%", "52%"],
|
center: ["50%", "52%"],
|
||||||
emptyCircleStyle: {
|
emptyCircleStyle: {
|
||||||
color: "#042c5f33",
|
color: "#042c5f33",
|
||||||
},
|
},
|
||||||
@@ -48,7 +48,7 @@ export default ({
|
|||||||
{
|
{
|
||||||
type: "pie",
|
type: "pie",
|
||||||
radius: ["80%", "90%"],
|
radius: ["80%", "90%"],
|
||||||
center: ["45%", "52%"],
|
center: ["50%", "52%"],
|
||||||
avoidLabelOvervlap: false,
|
avoidLabelOvervlap: false,
|
||||||
label: {
|
label: {
|
||||||
show: false,
|
show: false,
|
||||||
@@ -97,7 +97,7 @@ export default ({
|
|||||||
{
|
{
|
||||||
type: "pie",
|
type: "pie",
|
||||||
radius: ["70%", "80%"],
|
radius: ["70%", "80%"],
|
||||||
center: ["45%", "52%"],
|
center: ["50%", "52%"],
|
||||||
avoidLabelOvervlap: false,
|
avoidLabelOvervlap: false,
|
||||||
label: {
|
label: {
|
||||||
show: false,
|
show: false,
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
<!--
|
<!--
|
||||||
filename: chip-invest.vue
|
* @Author: zhp
|
||||||
author: liubin
|
* @Date: 2024-06-03 15:38:31
|
||||||
date: 2024-04-10 08:59:28
|
* @LastEditTime: 2024-06-21 15:06:39
|
||||||
description:
|
* @LastEditors: zhp
|
||||||
|
* @Description:
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
@@ -34,6 +35,7 @@ export default {
|
|||||||
xAxis: cities,
|
xAxis: cities,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
computed: {
|
computed: {
|
||||||
series() {
|
series() {
|
||||||
const chipInvest = this.$store.getters.home.chipInvest;
|
const chipInvest = this.$store.getters.home.chipInvest;
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Author: zhp
|
* @Author: zhp
|
||||||
* @Date: 2024-04-28 13:42:51
|
* @Date: 2024-04-28 13:42:51
|
||||||
* @LastEditTime: 2024-06-14 09:16:09
|
* @LastEditTime: 2024-06-21 15:02:27
|
||||||
* @LastEditors: zhp
|
* @LastEditors: zhp
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
@@ -123,30 +123,30 @@ export default {
|
|||||||
itemStyle: {
|
itemStyle: {
|
||||||
color: "#f3c000",
|
color: "#f3c000",
|
||||||
},
|
},
|
||||||
areaStyle: {
|
// areaStyle: {
|
||||||
color: {
|
// color: {
|
||||||
type: "linear",
|
// type: "linear",
|
||||||
x: 0,
|
// x: 0,
|
||||||
y: 0,
|
// y: 0,
|
||||||
x2: 0,
|
// x2: 0,
|
||||||
y2: 1,
|
// y2: 1,
|
||||||
colorStops: [
|
// colorStops: [
|
||||||
{
|
// {
|
||||||
offset: 0,
|
// offset: 0,
|
||||||
color: "#f3c000", // 0% 处的颜色
|
// color: "#f3c000", // 0% 处的颜色
|
||||||
},
|
// },
|
||||||
{
|
// {
|
||||||
offset: 0.55,
|
// offset: 0.55,
|
||||||
color: "#f3c00033",
|
// color: "#f3c00033",
|
||||||
},
|
// },
|
||||||
{
|
// {
|
||||||
offset: 1,
|
// offset: 1,
|
||||||
color: "transparent", // 100% 处的颜色
|
// color: "transparent", // 100% 处的颜色
|
||||||
},
|
// },
|
||||||
],
|
// ],
|
||||||
global: false, // 缺省为 false
|
// global: false, // 缺省为 false
|
||||||
},
|
// },
|
||||||
},
|
// },
|
||||||
data: [], // this.series[0].data,
|
data: [], // this.series[0].data,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Author: zhp
|
* @Author: zhp
|
||||||
* @Date: 2023-11-06 15:15:30
|
* @Date: 2023-11-06 15:15:30
|
||||||
* @LastEditTime: 2024-06-18 14:41:07
|
* @LastEditTime: 2024-06-26 13:39:22
|
||||||
* @LastEditors: DY
|
* @LastEditors: DY
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
@@ -58,7 +58,7 @@
|
|||||||
<p class="text">{{ dataForm.chipCssMarriageRate }}</p>
|
<p class="text">{{ dataForm.chipCssMarriageRate }}</p>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="6">
|
<el-col :span="6">
|
||||||
<p class="title">芯片段OEE</p>
|
<p class="title">芯片段OEE(%)</p>
|
||||||
<p class="text">{{ dataForm.chipOee }}</p>
|
<p class="text">{{ dataForm.chipOee }}</p>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="6">
|
<el-col :span="6">
|
||||||
@@ -117,6 +117,16 @@
|
|||||||
<p class="text">{{ dataForm.componentAveragePower }}</p>
|
<p class="text">{{ dataForm.componentAveragePower }}</p>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
|
<el-row :gutter="24">
|
||||||
|
<el-col :span="6">
|
||||||
|
<p class="title">标准组件转化效率</p>
|
||||||
|
<p class="text">{{ dataForm.componentTransRate }}</p>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<p class="title">芯片投入</p>
|
||||||
|
<p class="text">{{ dataForm.chipInput }}</p>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="glass === 2">
|
<div v-if="glass === 2">
|
||||||
<small-title style=" margin: 0;padding: 26px 32px 24px;margin-bottom: 22px;" :no-padding="false">
|
<small-title style=" margin: 0;padding: 26px 32px 24px;margin-bottom: 22px;" :no-padding="false">
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Author: zhp
|
* @Author: zhp
|
||||||
* @Date: 2024-04-15 10:49:13
|
* @Date: 2024-04-15 10:49:13
|
||||||
* @LastEditTime: 2024-06-20 10:16:25
|
* @LastEditTime: 2024-06-27 14:56:20
|
||||||
* @LastEditors: DY
|
* @LastEditors: DY
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
@@ -10,7 +10,7 @@
|
|||||||
<div class="app-container" style="padding: 16px 24px 0; height: auto; flex-grow: 1;">
|
<div class="app-container" style="padding: 16px 24px 0; height: auto; flex-grow: 1;">
|
||||||
<el-form :model="listQuery" :inline="true" ref="dataForm" class="blueTip">
|
<el-form :model="listQuery" :inline="true" ref="dataForm" class="blueTip">
|
||||||
<el-form-item label="时间维度" prop="type">
|
<el-form-item label="时间维度" prop="type">
|
||||||
<el-select size="small" clearable v-model="listQuery.type" placeholder="请选择">
|
<el-select v-model="listQuery.type" size="small" clearable placeholder="请选择">
|
||||||
<el-option v-for="item in timeList" :key="item.value" :label="item.label" :value="item.value">
|
<el-option v-for="item in timeList" :key="item.value" :label="item.label" :value="item.value">
|
||||||
</el-option>
|
</el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
@@ -74,7 +74,7 @@
|
|||||||
<!-- <el-row :gutter="24"> -->
|
<!-- <el-row :gutter="24"> -->
|
||||||
<!-- <el-col :span="12" v-for="item in dataList" :key="item.id"> -->
|
<!-- <el-col :span="12" v-for="item in dataList" :key="item.id"> -->
|
||||||
<search-bar :formConfigs="formConfig1" ref="searchBarForm1" style="margin-bottom: 0" />
|
<search-bar :formConfigs="formConfig1" ref="searchBarForm1" style="margin-bottom: 0" />
|
||||||
<line-chart class="yearChart" ref="lineChart" style="height: 40vh;width: 100%"></line-chart>
|
<line-chart ref="lineChart" class="yearChart" style="height: 45vh;width: 100%"></line-chart>
|
||||||
<!-- </el-col> -->
|
<!-- </el-col> -->
|
||||||
<!-- <el-col :span="12">
|
<!-- <el-col :span="12">
|
||||||
<line-chart :id=" 'second' " class="yearChart" ref="lineChart" style="height: 40vh;width: 100%"></line-chart>
|
<line-chart :id=" 'second' " class="yearChart" ref="lineChart" style="height: 40vh;width: 100%"></line-chart>
|
||||||
@@ -135,9 +135,9 @@ export default {
|
|||||||
// reportType: 2,
|
// reportType: 2,
|
||||||
startDate: undefined,
|
startDate: undefined,
|
||||||
endDate:undefined,
|
endDate:undefined,
|
||||||
reportTime: [],
|
reportTime: null,
|
||||||
start: undefined,
|
start: null,
|
||||||
end: undefined
|
end: null
|
||||||
},
|
},
|
||||||
detailOrUpdateVisible:false,
|
detailOrUpdateVisible:false,
|
||||||
date1: undefined,
|
date1: undefined,
|
||||||
@@ -210,7 +210,7 @@ export default {
|
|||||||
{
|
{
|
||||||
prop: 'factory',
|
prop: 'factory',
|
||||||
label: '工厂名称',
|
label: '工厂名称',
|
||||||
filter: (val) => factoryList[val],
|
filter: (val) => factoryList[val],
|
||||||
minWidth: 180,
|
minWidth: 180,
|
||||||
showOverflowtooltip: true
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
@@ -241,7 +241,7 @@ export default {
|
|||||||
lineData: [],
|
lineData: [],
|
||||||
chart: null,
|
chart: null,
|
||||||
seriesList: [],
|
seriesList: [],
|
||||||
colorList: ['#2760FF', '#8167F6', '#5B9BFF', '#FFD160']
|
colorList: ['#7164FF', '#63BDFF', '#8EF0AB', '#FFCE6A']
|
||||||
// proLineList: [],
|
// proLineList: [],
|
||||||
// all: {}
|
// all: {}
|
||||||
};
|
};
|
||||||
@@ -289,7 +289,6 @@ export default {
|
|||||||
// console.log(e);
|
// console.log(e);
|
||||||
},
|
},
|
||||||
onValueChange(picker, k) { // 选中近k周后触发的操作
|
onValueChange(picker, k) { // 选中近k周后触发的操作
|
||||||
// console.log(this.listQuery.reportTime[0], this.listQuery.reportTime[1])
|
|
||||||
if (this.listQuery.start && this.listQuery.end) {
|
if (this.listQuery.start && this.listQuery.end) {
|
||||||
console.log(this.listQuery.reportTime)
|
console.log(this.listQuery.reportTime)
|
||||||
this.date1 = moment(this.listQuery.start.getTime() - 24 * 60 * 60 * 1000).format('YYYY-MM-DD HH:mm:ss')
|
this.date1 = moment(this.listQuery.start.getTime() - 24 * 60 * 60 * 1000).format('YYYY-MM-DD HH:mm:ss')
|
||||||
@@ -351,23 +350,31 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
async getDataList() {
|
async getDataList() {
|
||||||
await getProduceDataPage(this.listQuery).then(res => {
|
if (this.listQuery.type === '') {
|
||||||
console.log(res)
|
this.$message.warning('请选择时间维度!')
|
||||||
if (res.code === 0) {
|
return
|
||||||
this.tableData = res.data.records
|
}
|
||||||
this.listQuery.total = res.data.total
|
if (this.listQuery.startDate === undefined) {
|
||||||
}
|
this.$message.warning('请选择时间范围!')
|
||||||
})
|
} else {
|
||||||
|
await getProduceDataPage(this.listQuery).then(res => {
|
||||||
|
console.log(res)
|
||||||
|
if (res.code === 0) {
|
||||||
|
this.tableData = res.data.records
|
||||||
|
this.listQuery.total = res.data.total
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
// 图表
|
// 图表
|
||||||
await getproddata(this.listQuery).then(resp => {
|
await getproddata(this.listQuery).then(resp => {
|
||||||
if (resp.data?.length > 0) {
|
if (resp.data?.length > 0) {
|
||||||
const chartData = Object.groupBy(resp.data, (member) => member.datestr)
|
const chartData = Object.groupBy(resp.data, (member) => member.datestr)
|
||||||
this.buildChart(chartData, resp.data)
|
this.buildChart(chartData, resp.data)
|
||||||
} else {
|
} else {
|
||||||
this.$refs.lineChart.initChart([], [])
|
this.$refs.lineChart.initChart([], [])
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
}
|
||||||
},
|
},
|
||||||
buildChart(data, dataList) {
|
buildChart(data, dataList) {
|
||||||
let xAxisData = []
|
let xAxisData = []
|
||||||
@@ -392,6 +399,13 @@ export default {
|
|||||||
barWidth: 20,
|
barWidth: 20,
|
||||||
itemStyle: {
|
itemStyle: {
|
||||||
color: this.colorList[i]
|
color: this.colorList[i]
|
||||||
|
},
|
||||||
|
label: {
|
||||||
|
show: i === 2 ? true : false,
|
||||||
|
position: 'top',
|
||||||
|
formatter(params) {
|
||||||
|
return fac.name.substring(0, 2)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
dataList.forEach(item => {
|
dataList.forEach(item => {
|
||||||
@@ -411,6 +425,18 @@ export default {
|
|||||||
barWidth: 20,
|
barWidth: 20,
|
||||||
itemStyle: {
|
itemStyle: {
|
||||||
color: this.colorList[i]
|
color: this.colorList[i]
|
||||||
|
},
|
||||||
|
label: {
|
||||||
|
show: true,
|
||||||
|
position: 'top',
|
||||||
|
formatter(params) {
|
||||||
|
if (params.value === 0) {
|
||||||
|
return ''
|
||||||
|
} else {
|
||||||
|
// return ['瑞昌', '邯郸'][params.seriesName.split('-')[1]]
|
||||||
|
return fac.name.substring(0, 2)
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
dataList.forEach(item => {
|
dataList.forEach(item => {
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2022-01-21 14:43:06
|
* @Date: 2022-01-21 14:43:06
|
||||||
* @LastEditors: DY
|
* @LastEditors: DY
|
||||||
* @LastEditTime: 2024-06-19 15:13:23
|
* @LastEditTime: 2024-06-24 11:13:48
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@@ -40,7 +40,7 @@ export default {
|
|||||||
},
|
},
|
||||||
height: {
|
height: {
|
||||||
type: String,
|
type: String,
|
||||||
default: '30vh'
|
default: '35vh'
|
||||||
},
|
},
|
||||||
legendPosition: {
|
legendPosition: {
|
||||||
type: String,
|
type: String,
|
||||||
@@ -140,20 +140,24 @@ export default {
|
|||||||
xAxis: [
|
xAxis: [
|
||||||
{
|
{
|
||||||
type: 'category',
|
type: 'category',
|
||||||
// prettier-ignore
|
name: '日期',
|
||||||
data: xAxis
|
data: xAxis,
|
||||||
|
axisLabel: {
|
||||||
|
rotate: 25
|
||||||
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
yAxis: [
|
yAxis: [
|
||||||
{
|
{
|
||||||
type: 'value'
|
type: 'value',
|
||||||
|
name: '单位:个'
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
grid: {
|
grid: {
|
||||||
top: '20%',
|
top: '10%',
|
||||||
left: "1%",
|
left: "1%",
|
||||||
right: "3%",
|
right: "5%",
|
||||||
bottom: "1%",
|
bottom: "0%",
|
||||||
containLabel: true
|
containLabel: true
|
||||||
},
|
},
|
||||||
series: seriesList
|
series: seriesList
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Author: zhp
|
* @Author: zhp
|
||||||
* @Date: 2024-04-17 16:31:51
|
* @Date: 2024-04-17 16:31:51
|
||||||
* @LastEditTime: 2024-06-17 16:55:04
|
* @LastEditTime: 2024-06-24 15:43:50
|
||||||
* @LastEditors: DY
|
* @LastEditors: DY
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
@@ -375,7 +375,12 @@ export default {
|
|||||||
this.visible = true
|
this.visible = true
|
||||||
if (this.dataForm.id) {
|
if (this.dataForm.id) {
|
||||||
getProduceTargetDetail(this.dataForm.id).then(res => {
|
getProduceTargetDetail(this.dataForm.id).then(res => {
|
||||||
this.dataForm = res.data
|
// this.dataForm = res.data
|
||||||
|
for (const i in res.data) {
|
||||||
|
if (res.data[i] !== null) {
|
||||||
|
this.dataForm[i] = res.data[i]
|
||||||
|
}
|
||||||
|
}
|
||||||
if (this.dataForm.targetType === 0 || this.dataForm.targetType === 2 || this.dataForm.targetType === 3) {
|
if (this.dataForm.targetType === 0 || this.dataForm.targetType === 2 || this.dataForm.targetType === 3) {
|
||||||
// this.dataForm.reportTime = String(this.dataForm.targetTime)
|
// this.dataForm.reportTime = String(this.dataForm.targetTime)
|
||||||
this.$set(this.dataForm, 'reportTime', String(this.dataForm.targetTime))
|
this.$set(this.dataForm, 'reportTime', String(this.dataForm.targetTime))
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Author: zhp
|
* @Author: zhp
|
||||||
* @Date: 2023-11-06 15:15:30
|
* @Date: 2023-11-06 15:15:30
|
||||||
* @LastEditTime: 2024-06-17 17:03:17
|
* @LastEditTime: 2024-06-27 14:50:21
|
||||||
* @LastEditors: DY
|
* @LastEditors: DY
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
@@ -76,15 +76,44 @@
|
|||||||
<p class="text">{{ dataForm.endDate?.length > 0 ? dataForm.endDate[0] + '-' + dataForm.endDate[1] + '-' + dataForm.endDate[2] : '' }}</p>
|
<p class="text">{{ dataForm.endDate?.length > 0 ? dataForm.endDate[0] + '-' + dataForm.endDate[1] + '-' + dataForm.endDate[2] : '' }}</p>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-divider></el-divider>
|
<div style="width: 100%; padding: 0 32px"><el-divider style="margin: 0"></el-divider></div>
|
||||||
<div class="chartDiv">
|
<el-row :gutter="0" style="margin: 20px 32px">
|
||||||
<div ref="bar" :style="{ height: '30vh', width: '40vw' }" />
|
<el-col :span="8">
|
||||||
<div ref="pie" :style="{ height: '30vh', width: '40vw' }" />
|
<div>
|
||||||
</div>
|
<small-title slot="title" :no-padding="true">
|
||||||
<div class="chartDiv">
|
产品良率
|
||||||
<div ref="equipmentLine" :style="{ height: '30vh', width: '40vw' }" />
|
</small-title>
|
||||||
<div ref="line" v-show="dataForm.orderStatus === 2" :style="{ height: '30vh', width: '40vw' }" />
|
<div ref="pie" :style="{ height: '40vh', width: '100%' }" />
|
||||||
</div>
|
</div>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="16">
|
||||||
|
<div style="border-left: 1px solid #d1d3d8; width: 100%; padding-left: 32px">
|
||||||
|
<small-title slot="title" :no-padding="true">
|
||||||
|
历史趋势
|
||||||
|
</small-title>
|
||||||
|
<div ref="line" v-show="dataForm.orderStatus === 2" :style="{ height: '40vh', width: '50vw' }" />
|
||||||
|
</div>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<div style="width: 100%; padding: 0 32px"><el-divider style="margin: 0"></el-divider></div>
|
||||||
|
<el-row :gutter="0" style="margin: 20px 32px">
|
||||||
|
<el-col :span="8">
|
||||||
|
<div>
|
||||||
|
<small-title slot="title" :no-padding="true">
|
||||||
|
生产明细
|
||||||
|
</small-title>
|
||||||
|
<div ref="bar" :style="{ height: '40vh', width: '100%' }" />
|
||||||
|
</div>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="16">
|
||||||
|
<div style="border-left: 1px solid #d1d3d8; width: 100%; padding-left: 32px">
|
||||||
|
<small-title slot="title" :no-padding="true">
|
||||||
|
待制品分布
|
||||||
|
</small-title>
|
||||||
|
<div ref="equipmentLine" :style="{ height: '40vh', width: '50vw' }" />
|
||||||
|
</div>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
</div>
|
</div>
|
||||||
</el-drawer>
|
</el-drawer>
|
||||||
|
|
||||||
@@ -118,7 +147,8 @@ export default {
|
|||||||
barChart: null,
|
barChart: null,
|
||||||
equipmentLineChart: null,
|
equipmentLineChart: null,
|
||||||
visible: false,
|
visible: false,
|
||||||
dataForm: {}
|
dataForm: {},
|
||||||
|
colorList: ['#3E8EF7', '#69E6D8', '#F7C739'] // pie颜色
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
beforeDestroy() {
|
beforeDestroy() {
|
||||||
@@ -227,38 +257,47 @@ export default {
|
|||||||
initChart(barData) {
|
initChart(barData) {
|
||||||
this.barChart = echarts.init(this.$refs['bar'])
|
this.barChart = echarts.init(this.$refs['bar'])
|
||||||
this.barChart.setOption({
|
this.barChart.setOption({
|
||||||
title: {
|
// title: {
|
||||||
text: '生产明细',
|
// text: '生产明细',
|
||||||
left: 'center'
|
// left: 'center'
|
||||||
// subtext: 'Fake Data'
|
// // subtext: 'Fake Data'
|
||||||
},
|
// },
|
||||||
|
color: ['#3E8EF7'],
|
||||||
tooltip: {
|
tooltip: {
|
||||||
trigger: 'axis'
|
trigger: 'axis'
|
||||||
},
|
},
|
||||||
grid: { top: 100, right: 90, bottom: 10, left: 10, containLabel: true },
|
grid: { top: 100, right: 90, bottom: 10, left: 10, containLabel: true },
|
||||||
calculable: true,
|
calculable: true,
|
||||||
grid: {
|
grid: {
|
||||||
top: '20%',
|
top: '15%',
|
||||||
left: "1%",
|
left: 0,
|
||||||
right: "3%",
|
right: '10%',
|
||||||
bottom: "1%",
|
bottom: 0,
|
||||||
containLabel: true
|
containLabel: true
|
||||||
},
|
},
|
||||||
xAxis: {
|
xAxis: {
|
||||||
type: 'category',
|
type: 'category',
|
||||||
data: ['目标产量', '计划投入量', '实际投入', '实际产出', '废品数量', '待再加工数量'],
|
data: ['目标产量', '计划投入量', '实际投入', '实际产出', '废品数量', '待再加工数量'],
|
||||||
axisLabel: {
|
axisLabel: {
|
||||||
rotate:45
|
rotate: 25
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
yAxis: {
|
yAxis: {
|
||||||
type: 'value'
|
type: 'value',
|
||||||
|
name: '单位/片',
|
||||||
|
axisLine: {
|
||||||
|
show: true
|
||||||
|
}
|
||||||
},
|
},
|
||||||
series: [
|
series: [
|
||||||
{
|
{
|
||||||
data: barData,
|
data: barData,
|
||||||
type: 'bar',
|
type: 'bar',
|
||||||
barWidth: '40%'
|
barWidth: '40%',
|
||||||
|
label: {
|
||||||
|
show: true,
|
||||||
|
position: 'top'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}, true)
|
}, true)
|
||||||
@@ -266,8 +305,9 @@ export default {
|
|||||||
initPieChart(pieData) {
|
initPieChart(pieData) {
|
||||||
this.pieChart = echarts.init(this.$refs['pie'])
|
this.pieChart = echarts.init(this.$refs['pie'])
|
||||||
this.pieChart.setOption({
|
this.pieChart.setOption({
|
||||||
|
color: ['#3E8EF7', '#69E6D8', '#F7C739'],
|
||||||
title: {
|
title: {
|
||||||
text: !isNaN((pieData[0].value / (pieData[0].value + pieData[1].value)).toFixed(4) * 100) ? ( '产品良率 ' + (pieData[0].value / (pieData[0].value + pieData[1].value)).toFixed(4) * 100 + '%') : '产品良率 -',
|
// text: !isNaN((pieData[0].value / (pieData[0].value + pieData[1].value)).toFixed(4) * 100) ? ( '产品良率 ' + (pieData[0].value / (pieData[0].value + pieData[1].value)).toFixed(4) * 100 + '%') : '产品良率 -',
|
||||||
left: 'center'
|
left: 'center'
|
||||||
// subtext: 'Fake Data'
|
// subtext: 'Fake Data'
|
||||||
},
|
},
|
||||||
@@ -275,31 +315,31 @@ export default {
|
|||||||
trigger: 'item'
|
trigger: 'item'
|
||||||
},
|
},
|
||||||
legend: {
|
legend: {
|
||||||
top: '5%',
|
bottom: 0,
|
||||||
left: 'right',
|
left: 'center'
|
||||||
orient: 'vertical'
|
|
||||||
},
|
},
|
||||||
series: [
|
series: [
|
||||||
{
|
{
|
||||||
// name: 'Access From',
|
// name: 'Access From',
|
||||||
type: 'pie',
|
type: 'pie',
|
||||||
radius: ['40%', '70%'],
|
radius: ['50%', '70%'],
|
||||||
avoidLabelOverlap: false,
|
avoidLabelOverlap: false,
|
||||||
|
data: pieData,
|
||||||
label: {
|
label: {
|
||||||
show: false,
|
show: true,
|
||||||
position: 'center'
|
position: 'outside',
|
||||||
},
|
formatter: '{d|{d}%} \n {b|{b}}',
|
||||||
emphasis: {
|
rich: {
|
||||||
label: {
|
d: {
|
||||||
show: false,
|
color: 'inherit', // 系列色
|
||||||
fontSize: 40,
|
verticalAlign: 'top'
|
||||||
fontWeight: 'bold'
|
},
|
||||||
|
b: {
|
||||||
|
color: '#8C8C8C',
|
||||||
|
verticalAlign: 'top'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
labelLine: {
|
|
||||||
show: false
|
|
||||||
},
|
|
||||||
data: pieData
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}, true)
|
}, true)
|
||||||
@@ -307,39 +347,48 @@ export default {
|
|||||||
initEqLineChart(xAxisList, yAxisList) {
|
initEqLineChart(xAxisList, yAxisList) {
|
||||||
this.equipmentLineChart = echarts.init(this.$refs['equipmentLine'])
|
this.equipmentLineChart = echarts.init(this.$refs['equipmentLine'])
|
||||||
this.equipmentLineChart.setOption({
|
this.equipmentLineChart.setOption({
|
||||||
title: {
|
// title: {
|
||||||
text: '待制品分布',
|
// text: '待制品分布',
|
||||||
left: 'center'
|
// left: 'center'
|
||||||
// subtext: 'Fake Data'
|
// // subtext: 'Fake Data'
|
||||||
},
|
// },
|
||||||
|
color: ['#3E8EF7'],
|
||||||
tooltip: {
|
tooltip: {
|
||||||
trigger: 'axis'
|
trigger: 'axis'
|
||||||
},
|
},
|
||||||
grid: { top: 100, right: 90, bottom: 10, left: 10, containLabel: true },
|
grid: { top: 100, right: 90, bottom: 10, left: 10, containLabel: true },
|
||||||
calculable: true,
|
calculable: true,
|
||||||
grid: {
|
grid: {
|
||||||
top: '20%',
|
top: '15%',
|
||||||
left: "1%",
|
left: 0,
|
||||||
right: "3%",
|
right: 0,
|
||||||
bottom: "1%",
|
bottom: 0,
|
||||||
containLabel: true
|
containLabel: true
|
||||||
},
|
},
|
||||||
xAxis: {
|
xAxis: {
|
||||||
type: 'category',
|
type: 'category',
|
||||||
data: xAxisList,
|
data: xAxisList,
|
||||||
axisLabel: {
|
axisLabel: {
|
||||||
rotate:45,
|
rotate: 25
|
||||||
// width: '10%'
|
// width: '10%'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
yAxis: {
|
yAxis: {
|
||||||
type: 'value'
|
type: 'value',
|
||||||
|
name: '单位/片',
|
||||||
|
axisLine: {
|
||||||
|
show: true
|
||||||
|
}
|
||||||
},
|
},
|
||||||
series: [
|
series: [
|
||||||
{
|
{
|
||||||
data: yAxisList,
|
data: yAxisList,
|
||||||
type: 'bar',
|
type: 'bar',
|
||||||
barWidth: '50%'
|
barWidth: '50%',
|
||||||
|
label: {
|
||||||
|
show: true,
|
||||||
|
position: 'top'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}, true)
|
}, true)
|
||||||
@@ -347,27 +396,39 @@ export default {
|
|||||||
initLineChart(xAxisList, seriesList) {
|
initLineChart(xAxisList, seriesList) {
|
||||||
this.lineChart = echarts.init(this.$refs['line'])
|
this.lineChart = echarts.init(this.$refs['line'])
|
||||||
this.lineChart.setOption({
|
this.lineChart.setOption({
|
||||||
title: {
|
color: ['#3E8EF7'],
|
||||||
text: '历史趋势',
|
|
||||||
left: 'center' // 设置标题居中
|
|
||||||
},
|
|
||||||
tooltip: {
|
tooltip: {
|
||||||
trigger: 'item'
|
trigger: 'item'
|
||||||
},
|
},
|
||||||
|
grid: {
|
||||||
|
top: '15%',
|
||||||
|
left: 0,
|
||||||
|
right: 0,
|
||||||
|
bottom: 0,
|
||||||
|
containLabel: true
|
||||||
|
},
|
||||||
xAxis: {
|
xAxis: {
|
||||||
type: 'category',
|
type: 'category',
|
||||||
data: xAxisList,
|
data: xAxisList,
|
||||||
axisLabel: {
|
axisLabel: {
|
||||||
rotate:45
|
rotate: 25
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
yAxis: {
|
yAxis: {
|
||||||
type: 'value'
|
type: 'value',
|
||||||
|
name: '单位/片',
|
||||||
|
axisLine: {
|
||||||
|
show: true
|
||||||
|
}
|
||||||
},
|
},
|
||||||
series: [
|
series: [
|
||||||
{
|
{
|
||||||
data: seriesList,
|
data: seriesList,
|
||||||
type: 'line'
|
type: 'line',
|
||||||
|
label: {
|
||||||
|
show: true,
|
||||||
|
position: 'top'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}, true)
|
}, true)
|
||||||
@@ -381,14 +442,8 @@ export default {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
.chartDiv {
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
width: 100%;
|
|
||||||
padding: 5px;
|
|
||||||
padding-left: 30px;
|
|
||||||
}
|
|
||||||
.drawer >>> .el-drawer {
|
.drawer >>> .el-drawer {
|
||||||
border-radius: 8px 0 0 8px;
|
border-radius: 8px 0 0 8px;
|
||||||
}
|
}
|
||||||
@@ -405,7 +460,8 @@ export default {
|
|||||||
}
|
}
|
||||||
.detailBox p {
|
.detailBox p {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0 32px;
|
padding-left: 32px;
|
||||||
|
/* padding: 0 32px; */
|
||||||
}
|
}
|
||||||
.detailBox .title {
|
.detailBox .title {
|
||||||
/* width: 56px; */
|
/* width: 56px; */
|
||||||
@@ -427,6 +483,8 @@ export default {
|
|||||||
}
|
}
|
||||||
.detailBox {
|
.detailBox {
|
||||||
padding-top: 30px;
|
padding-top: 30px;
|
||||||
width: 99%;
|
overflow-x: hidden;
|
||||||
|
overflow-y: auto;
|
||||||
|
/* width: 99%; */
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Author: zhp
|
* @Author: zhp
|
||||||
* @Date: 2024-04-15 10:49:13
|
* @Date: 2024-04-15 10:49:13
|
||||||
* @LastEditTime: 2024-06-17 16:32:02
|
* @LastEditTime: 2024-06-24 15:08:34
|
||||||
* @LastEditors: DY
|
* @LastEditors: DY
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
@@ -76,7 +76,8 @@ import tableHeightMixin from "@/mixins/tableHeightMixin";
|
|||||||
import basicPage from '@/mixins/basic-page'
|
import basicPage from '@/mixins/basic-page'
|
||||||
import AddOrUpdate from './add-or-updata';
|
import AddOrUpdate from './add-or-updata';
|
||||||
import { factoryList, factoryArray } from "@/utils/constants";
|
import { factoryList, factoryArray } from "@/utils/constants";
|
||||||
import { publicFormatter } from "@/utils/dict";
|
// import { publicFormatter } from "@/utils/dict";
|
||||||
|
import statusChart from "./statusChart.vue";
|
||||||
|
|
||||||
// import FileSaver from 'file-saver'
|
// import FileSaver from 'file-saver'
|
||||||
// import * as XLSX from 'xlsx'
|
// import * as XLSX from 'xlsx'
|
||||||
@@ -206,13 +207,13 @@ export default {
|
|||||||
prop: 'factory',
|
prop: 'factory',
|
||||||
label: '工厂名称',
|
label: '工厂名称',
|
||||||
filter: (val) => factoryList[val],
|
filter: (val) => factoryList[val],
|
||||||
minWidth: 200,
|
minWidth: 220,
|
||||||
showOverflowtooltip: true
|
showOverflowtooltip: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'workOrderNumber',
|
prop: 'workOrderNumber',
|
||||||
label: '工单号',
|
label: '工单号',
|
||||||
minWidth: 120,
|
minWidth: 130,
|
||||||
showOverflowtooltip: true
|
showOverflowtooltip: true
|
||||||
// filter: (val) => ['玻璃芯片', '标准组件', 'BIPV', '定制组件'][val]
|
// filter: (val) => ['玻璃芯片', '标准组件', 'BIPV', '定制组件'][val]
|
||||||
},
|
},
|
||||||
@@ -246,8 +247,8 @@ export default {
|
|||||||
{
|
{
|
||||||
prop: 'orderStatus',
|
prop: 'orderStatus',
|
||||||
label: '工单状态',
|
label: '工单状态',
|
||||||
// filter: publicFormatter('workorder_status')
|
subcomponent: statusChart
|
||||||
filter: (val) => ['', '未开始', '生产中', '已完成'][val],
|
// filter: (val) => ['', '未开始', '生产中', '已完成'][val],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'startTime',
|
prop: 'startTime',
|
||||||
|
|||||||
51
src/views/produce/workOrder/statusChart.vue
Normal file
51
src/views/produce/workOrder/statusChart.vue
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
<!--
|
||||||
|
* @Author: Do not edit
|
||||||
|
* @Date: 2024-06-24 15:03:19
|
||||||
|
* @LastEditTime: 2024-06-24 15:07:42
|
||||||
|
* @LastEditors: DY
|
||||||
|
* @Description:
|
||||||
|
-->
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<span class="dot" :class="myClass"></span>
|
||||||
|
<span>{{ state }}</span>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: "statusChart",
|
||||||
|
props: {
|
||||||
|
injectData: {
|
||||||
|
type: Object,
|
||||||
|
default: () => ({}),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
state() {
|
||||||
|
return ['', '未开始', '生产中', '已完成'][this.injectData.orderStatus]
|
||||||
|
},
|
||||||
|
myClass() {
|
||||||
|
return ['', 'yellow', 'blue', 'green'][this.injectData.orderStatus]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
<style scoped>
|
||||||
|
.dot {
|
||||||
|
display: inline-block;
|
||||||
|
width: 6px;
|
||||||
|
height: 6px;
|
||||||
|
border-radius: 3px;
|
||||||
|
vertical-align: middle;
|
||||||
|
margin-right: 8px;
|
||||||
|
}
|
||||||
|
.green {
|
||||||
|
background: #10DC76;
|
||||||
|
}
|
||||||
|
.yellow {
|
||||||
|
background: #FFBD02;
|
||||||
|
}
|
||||||
|
.blue {
|
||||||
|
background: #3B79FF;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -30,7 +30,14 @@
|
|||||||
</div>
|
</div>
|
||||||
<!-- 图 -->
|
<!-- 图 -->
|
||||||
<div>
|
<div>
|
||||||
<div style="display: inline-block; width: 79%; vertical-align: top">
|
<div
|
||||||
|
style="
|
||||||
|
display: inline-block;
|
||||||
|
width: 79%;
|
||||||
|
vertical-align: top;
|
||||||
|
padding-right: 20px;
|
||||||
|
"
|
||||||
|
>
|
||||||
<base-chart
|
<base-chart
|
||||||
v-show="this.chartMsg1.series[0].data.length > 0"
|
v-show="this.chartMsg1.series[0].data.length > 0"
|
||||||
:chartHeight="chartHeight"
|
:chartHeight="chartHeight"
|
||||||
|
|||||||
@@ -20,29 +20,33 @@
|
|||||||
<el-form-item v-show="form.type === 0" label="时间" prop="dayTime">
|
<el-form-item v-show="form.type === 0" label="时间" prop="dayTime">
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
size="small"
|
size="small"
|
||||||
clearable
|
:clearable="false"
|
||||||
v-model="form.dayTime"
|
v-model="form.dayTime"
|
||||||
type="date"
|
type="date"
|
||||||
placeholder="选择日期"
|
placeholder="选择日期"
|
||||||
value-format="yyyy-MM-dd"
|
value-format="yyyy-MM-dd"
|
||||||
style="width: 150px"
|
style="width: 150px"
|
||||||
|
:picker-options="pickerOptions"
|
||||||
>
|
>
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item v-show="form.type === 1" label="时间" prop="weekTime">
|
<el-form-item v-show="form.type === 1" label="时间" prop="weekTime">
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
v-model="form.weekTime"
|
v-model="form.weekTime"
|
||||||
|
:clearable="false"
|
||||||
type="week"
|
type="week"
|
||||||
format="yyyy-MM-dd"
|
format="yyyy-MM-dd"
|
||||||
placeholder="选择周"
|
placeholder="选择周"
|
||||||
value-format="yyyy-MM-dd"
|
value-format="yyyy-MM-dd"
|
||||||
style="width: 150px"
|
style="width: 150px"
|
||||||
|
:picker-options="pickerOptions"
|
||||||
>
|
>
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item v-show="form.type === 2" label="时间" prop="monthTime">
|
<el-form-item v-show="form.type === 2" label="时间" prop="monthTime">
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
v-model="form.monthTime"
|
v-model="form.monthTime"
|
||||||
|
:clearable="false"
|
||||||
type="month"
|
type="month"
|
||||||
placeholder="选择月份"
|
placeholder="选择月份"
|
||||||
value-format="yyyy-MM-dd"
|
value-format="yyyy-MM-dd"
|
||||||
@@ -53,6 +57,7 @@
|
|||||||
<el-form-item v-show="form.type === 3" label="时间" prop="yearTime">
|
<el-form-item v-show="form.type === 3" label="时间" prop="yearTime">
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
v-model="form.yearTime"
|
v-model="form.yearTime"
|
||||||
|
:clearable="false"
|
||||||
type="year"
|
type="year"
|
||||||
placeholder="选择年份"
|
placeholder="选择年份"
|
||||||
value-format="yyyy-MM-dd"
|
value-format="yyyy-MM-dd"
|
||||||
@@ -94,6 +99,9 @@ export default {
|
|||||||
{ id: 2, name: "月" },
|
{ id: 2, name: "月" },
|
||||||
{ id: 3, name: "年" },
|
{ id: 3, name: "年" },
|
||||||
],
|
],
|
||||||
|
pickerOptions: {
|
||||||
|
firstDayOfWeek: 1,
|
||||||
|
},
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
@@ -116,6 +124,10 @@ export default {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
params.type = this.form.type;
|
params.type = this.form.type;
|
||||||
|
if (!params.startDate) {
|
||||||
|
this.$message.warning("时间不能为空");
|
||||||
|
return;
|
||||||
|
}
|
||||||
if (val === "search") {
|
if (val === "search") {
|
||||||
this.$emit("getSearch", params);
|
this.$emit("getSearch", params);
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -71,7 +71,7 @@ export default {
|
|||||||
"<br/>" +
|
"<br/>" +
|
||||||
`${
|
`${
|
||||||
params[i].seriesType === "line"
|
params[i].seriesType === "line"
|
||||||
? '<img width="10" height="10" style="margin-right:4px;" src="data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTIuNzIxNjM5NXB4IiBoZWlnaHQ9IjhweCIgdmlld0JveD0iMCAwIDEyLjcyMTYzOTUgOCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KICAgIDx0aXRsZT7nvJbnu4QgNjwvdGl0bGU+CiAgICA8ZyBpZD0iMDTmiqXooajnrqHnkIYiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSLmjIfmoIflrozmiJDmg4XlhrUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xMDUxLjYzOTE4MCwgLTQyNS4wMDAwMDApIj4KICAgICAgICAgICAgPGcgaWQ9Iue8lue7hC025aSH5Lu9LTQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwMjEuNTAwMDAwLCAzNDQuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8ZyBpZD0i57yW57uELTYiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDI5LjUwMDAwMCwgNzguMDAwMDAwKSI+CiAgICAgICAgICAgICAgICAgICAgPHJlY3QgaWQ9IuefqeW9oiIgeD0iMCIgeT0iMCIgd2lkdGg9IjE0IiBoZWlnaHQ9IjE0Ij48L3JlY3Q+CiAgICAgICAgICAgICAgICAgICAgPHBhdGggZD0iTTcuMTM5MTgwMjYsMyBDOS4wMDMxMDczNywzIDEwLjU2OTI2NzMsNC4yNzQ4OTI3MiAxMS4wMTMyMjU0LDYuMDAwMjQzNDcgTDEyLjM2MDgxOTcsNiBDMTIuOTEzMTA0NSw2IDEzLjM2MDgxOTcsNi40NDc3MTUyNSAxMy4zNjA4MTk3LDcgQzEzLjM2MDgxOTcsNy41NTIyODQ3NSAxMi45MTMxMDQ1LDggMTIuMzYwODE5Nyw4IEwxMS4wMTI5NjY3LDguMDAwNzYxMzQgQzEwLjU2ODY1OTIsOS43MjU2MDIyNCA5LjAwMjc0NTUxLDExIDcuMTM5MTgwMjYsMTEgQzUuMjc1NjE1MDEsMTEgMy43MDk3MDEzMSw5LjcyNTYwMjI0IDMuMjY1MzkzNzgsOC4wMDA3NjEzNCBMMS42MzkxODAyNiw4IEMxLjA4Njg5NTUxLDggMC42MzkxODAyNTgsNy41NTIyODQ3NSAwLjYzOTE4MDI1OCw3IEMwLjYzOTE4MDI1OCw2LjQ0NzcxNTI1IDEuMDg2ODk1NTEsNiAxLjYzOTE4MDI2LDYgTDMuMjY1MTM1MDksNi4wMDAyNDM0NyBDMy43MDkwOTMyLDQuMjc0ODkyNzIgNS4yNzUyNTMxNSwzIDcuMTM5MTgwMjYsMyBaIiBpZD0i5b2i54q257uT5ZCIIiBmaWxsPSIjRkZDRTZBIiBmaWxsLXJ1bGU9Im5vbnplcm8iPjwvcGF0aD4KICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+" />'
|
? '<img width="11" height="11" style="margin-right:4px;" src="data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTIuNzIxNjM5NXB4IiBoZWlnaHQ9IjhweCIgdmlld0JveD0iMCAwIDEyLjcyMTYzOTUgOCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KICAgIDx0aXRsZT7nvJbnu4QgNjwvdGl0bGU+CiAgICA8ZyBpZD0iMDTmiqXooajnrqHnkIYiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSLmjIfmoIflrozmiJDmg4XlhrUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xMDUxLjYzOTE4MCwgLTQyNS4wMDAwMDApIj4KICAgICAgICAgICAgPGcgaWQ9Iue8lue7hC025aSH5Lu9LTQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwMjEuNTAwMDAwLCAzNDQuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8ZyBpZD0i57yW57uELTYiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDI5LjUwMDAwMCwgNzguMDAwMDAwKSI+CiAgICAgICAgICAgICAgICAgICAgPHJlY3QgaWQ9IuefqeW9oiIgeD0iMCIgeT0iMCIgd2lkdGg9IjE0IiBoZWlnaHQ9IjE0Ij48L3JlY3Q+CiAgICAgICAgICAgICAgICAgICAgPHBhdGggZD0iTTcuMTM5MTgwMjYsMyBDOS4wMDMxMDczNywzIDEwLjU2OTI2NzMsNC4yNzQ4OTI3MiAxMS4wMTMyMjU0LDYuMDAwMjQzNDcgTDEyLjM2MDgxOTcsNiBDMTIuOTEzMTA0NSw2IDEzLjM2MDgxOTcsNi40NDc3MTUyNSAxMy4zNjA4MTk3LDcgQzEzLjM2MDgxOTcsNy41NTIyODQ3NSAxMi45MTMxMDQ1LDggMTIuMzYwODE5Nyw4IEwxMS4wMTI5NjY3LDguMDAwNzYxMzQgQzEwLjU2ODY1OTIsOS43MjU2MDIyNCA5LjAwMjc0NTUxLDExIDcuMTM5MTgwMjYsMTEgQzUuMjc1NjE1MDEsMTEgMy43MDk3MDEzMSw5LjcyNTYwMjI0IDMuMjY1MzkzNzgsOC4wMDA3NjEzNCBMMS42MzkxODAyNiw4IEMxLjA4Njg5NTUxLDggMC42MzkxODAyNTgsNy41NTIyODQ3NSAwLjYzOTE4MDI1OCw3IEMwLjYzOTE4MDI1OCw2LjQ0NzcxNTI1IDEuMDg2ODk1NTEsNiAxLjYzOTE4MDI2LDYgTDMuMjY1MTM1MDksNi4wMDAyNDM0NyBDMy43MDkwOTMyLDQuMjc0ODkyNzIgNS4yNzUyNTMxNSwzIDcuMTM5MTgwMjYsMyBaIiBpZD0i5b2i54q257uT5ZCIIiBmaWxsPSIjRkZDRTZBIiBmaWxsLXJ1bGU9Im5vbnplcm8iPjwvcGF0aD4KICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+" />'
|
||||||
: `<span style="display:inline-block;margin-right:4px;border-radius:2px;width:10px;height:10px;background-color:${params[i].color}"></span>`
|
: `<span style="display:inline-block;margin-right:4px;border-radius:2px;width:10px;height:10px;background-color:${params[i].color}"></span>`
|
||||||
}` +
|
}` +
|
||||||
`<span style='display:inline-block;width:180px;color:rgba(0,0,0,0.8);font-size:14px;'>${params[i].seriesName}</span>` +
|
`<span style='display:inline-block;width:180px;color:rgba(0,0,0,0.8);font-size:14px;'>${params[i].seriesName}</span>` +
|
||||||
|
|||||||
@@ -19,29 +19,33 @@
|
|||||||
<el-form-item v-show="form.type === 0" label="时间" prop="dayTime">
|
<el-form-item v-show="form.type === 0" label="时间" prop="dayTime">
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
size="small"
|
size="small"
|
||||||
clearable
|
:clearable="false"
|
||||||
v-model="form.dayTime"
|
v-model="form.dayTime"
|
||||||
type="date"
|
type="date"
|
||||||
placeholder="选择日期"
|
placeholder="选择日期"
|
||||||
value-format="yyyy-MM-dd"
|
value-format="yyyy-MM-dd"
|
||||||
style="width: 150px"
|
style="width: 150px"
|
||||||
|
:picker-options="pickerOptions"
|
||||||
>
|
>
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item v-show="form.type === 1" label="时间" prop="weekTime">
|
<el-form-item v-show="form.type === 1" label="时间" prop="weekTime">
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
v-model="form.weekTime"
|
v-model="form.weekTime"
|
||||||
|
:clearable="false"
|
||||||
type="week"
|
type="week"
|
||||||
format="yyyy-MM-dd"
|
format="yyyy-MM-dd"
|
||||||
placeholder="选择周"
|
placeholder="选择周"
|
||||||
value-format="yyyy-MM-dd"
|
value-format="yyyy-MM-dd"
|
||||||
style="width: 150px"
|
style="width: 150px"
|
||||||
|
:picker-options="pickerOptions"
|
||||||
>
|
>
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item v-show="form.type === 2" label="时间" prop="monthTime">
|
<el-form-item v-show="form.type === 2" label="时间" prop="monthTime">
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
v-model="form.monthTime"
|
v-model="form.monthTime"
|
||||||
|
:clearable="false"
|
||||||
type="month"
|
type="month"
|
||||||
placeholder="选择月份"
|
placeholder="选择月份"
|
||||||
value-format="yyyy-MM-dd"
|
value-format="yyyy-MM-dd"
|
||||||
@@ -52,6 +56,7 @@
|
|||||||
<el-form-item v-show="form.type === 3" label="时间" prop="yearTime">
|
<el-form-item v-show="form.type === 3" label="时间" prop="yearTime">
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
v-model="form.yearTime"
|
v-model="form.yearTime"
|
||||||
|
:clearable="false"
|
||||||
type="year"
|
type="year"
|
||||||
placeholder="选择年份"
|
placeholder="选择年份"
|
||||||
value-format="yyyy-MM-dd"
|
value-format="yyyy-MM-dd"
|
||||||
@@ -115,6 +120,9 @@ export default {
|
|||||||
{ id: 0, name: "瑞昌" },
|
{ id: 0, name: "瑞昌" },
|
||||||
{ id: 1, name: "邯郸" },
|
{ id: 1, name: "邯郸" },
|
||||||
],
|
],
|
||||||
|
pickerOptions: {
|
||||||
|
firstDayOfWeek: 1,
|
||||||
|
},
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
@@ -138,6 +146,10 @@ export default {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
params.type = this.form.type;
|
params.type = this.form.type;
|
||||||
|
if (!params.startDate) {
|
||||||
|
this.$message.warning("时间不能为空");
|
||||||
|
return;
|
||||||
|
}
|
||||||
if (val === "search") {
|
if (val === "search") {
|
||||||
this.$emit("getSearch", params);
|
this.$emit("getSearch", params);
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
266
src/views/report/components/produceLineBar.vue
Normal file
266
src/views/report/components/produceLineBar.vue
Normal file
@@ -0,0 +1,266 @@
|
|||||||
|
<!--
|
||||||
|
* @Author: zhp
|
||||||
|
* @Date: 2024-06-19 15:28:34
|
||||||
|
* @LastEditTime: 2024-06-27 10:40:57
|
||||||
|
* @LastEditors: zhp
|
||||||
|
* @Description:
|
||||||
|
-->
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<!-- 暂无数据 -->
|
||||||
|
<div class="no-data-bg" style="position: relative; left: 50%; transform: translateX(-50%)"
|
||||||
|
v-show="this.chartMsg.series[0].data.length === 0"></div>
|
||||||
|
<!-- 图例 -->
|
||||||
|
<div v-show="this.chartMsg.series[0].data.length > 0 ">
|
||||||
|
<div class="legendData" v-if="show">
|
||||||
|
<span class="itemData" v-for="item in legendList" :key="item.id">
|
||||||
|
<span v-if="item.type === 1" class="block" :style="{ backgroundColor: item.color }"></span>
|
||||||
|
<span v-if="item.type === 2" class="line" :style="{ backgroundColor: item.color }">
|
||||||
|
<span class="line-block" :style="{ backgroundColor: item.color }"></span>
|
||||||
|
</span>
|
||||||
|
{{ item.name }}</span>
|
||||||
|
</div>
|
||||||
|
<div :id="chartId" :style="{ width: '100%', height: chartHeight + 'px' }"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<script>
|
||||||
|
import * as echarts from "echarts";
|
||||||
|
import { debounce } from "@/utils/debounce";
|
||||||
|
export default {
|
||||||
|
name: "bmLineBar",
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
myChart: "",
|
||||||
|
option: {
|
||||||
|
color: [],
|
||||||
|
// color: ["#8EF0AB", "#63BDFF", "#288AFF"],
|
||||||
|
grid: {
|
||||||
|
left: 30,
|
||||||
|
right: 0,
|
||||||
|
bottom: 30,
|
||||||
|
top: 30,
|
||||||
|
containLabel:true,
|
||||||
|
},
|
||||||
|
tooltip: {
|
||||||
|
trigger: "axis",
|
||||||
|
axisPointer: {
|
||||||
|
// type: "cross",
|
||||||
|
crossStyle: {
|
||||||
|
color: "rgba(237,237,237,0.5)",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
formatter: function (params) {
|
||||||
|
// console.log('params', params);
|
||||||
|
var res = `<span style='color:rgba(0,0,0,0.8)'>${params[0].axisValueLabel}</span>`;
|
||||||
|
for (var i = 0, l = params.length; i < l; i++) {
|
||||||
|
res +=
|
||||||
|
"<br/>" +
|
||||||
|
`<span style='display:inline-block;margin-right:4px;border-radius:10px;width:10px;height:10px;background-color:${params[i].color}'></span>` +
|
||||||
|
`<span style='display:inline-block;width:150px;color:rgba(0,0,0,0.8);font-size:14px;'>${params[i].seriesName}</span>` +
|
||||||
|
`<span style='color:rgba(0,0,0,0.48);font-size:14px;'>${params[i].seriesName === "综合良率"
|
||||||
|
? (params[i].value ? params[i].value.toFixed(2) : 0.0) + "%"
|
||||||
|
: params[i].seriesName === "转化效率"
|
||||||
|
? (params[i].value ? params[i].value.toFixed(2) : 0.0) + "%"
|
||||||
|
: params[i].seriesName.search('总功率') != -1
|
||||||
|
? (params[i].value ? params[i].value : 0) + "MW"
|
||||||
|
: (params[i].value ? params[i].value : 0) + "片"
|
||||||
|
}</span>`;
|
||||||
|
}
|
||||||
|
return res;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
xAxis: {
|
||||||
|
type: "category",
|
||||||
|
data: [],
|
||||||
|
axisTick: {
|
||||||
|
show: false,
|
||||||
|
},
|
||||||
|
axisPointer: {
|
||||||
|
type: "shadow",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
dataZoom: [//滚动条
|
||||||
|
{
|
||||||
|
// 设置滚动条的隐藏与显示
|
||||||
|
show: true,
|
||||||
|
// 设置滚动条类型
|
||||||
|
type: "slider",
|
||||||
|
// 设置背景颜色
|
||||||
|
backgroundColor: "#F7F7F7",
|
||||||
|
// handleStyle: {
|
||||||
|
// color: '#D6D6D6'
|
||||||
|
// },
|
||||||
|
handleStyle: {
|
||||||
|
borderColor: '#EBEBEB',
|
||||||
|
color: '#EBEBEB'
|
||||||
|
},
|
||||||
|
moveHandleStyle: {
|
||||||
|
borderColor: '#EBEBEB',
|
||||||
|
color: '#EBEBEB'
|
||||||
|
},
|
||||||
|
emphasis: {
|
||||||
|
handleStyle: {
|
||||||
|
borderColor: '#D6D6D6',
|
||||||
|
color: '#D6D6D6'
|
||||||
|
},
|
||||||
|
moveHandleStyle: {
|
||||||
|
borderColor: '#D6D6D6',
|
||||||
|
color: '#D6D6D6'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
// 设置选中范围的填充颜色
|
||||||
|
fillerColor: "#F7F7F7",
|
||||||
|
// 设置边框颜色
|
||||||
|
borderColor: "#F7F7F7",
|
||||||
|
// 是否显示detail,即拖拽时候显示详细数值信息
|
||||||
|
showDetail: false,
|
||||||
|
// 数据窗口范围的起始数值
|
||||||
|
startValue: 0,
|
||||||
|
// 数据窗口范围的结束数值(一页显示多少条数据)
|
||||||
|
endValue: 5,
|
||||||
|
// empty:当前数据窗口外的数据,被设置为空。
|
||||||
|
// 即不会影响其他轴的数据范围
|
||||||
|
filterMode: "empty",
|
||||||
|
// 设置滚动条宽度,相对于盒子宽度
|
||||||
|
width: "100%",
|
||||||
|
// 设置滚动条高度
|
||||||
|
height: 3,
|
||||||
|
// 设置滚动条显示位置
|
||||||
|
left: "center",
|
||||||
|
// 是否锁定选择区域(或叫做数据窗口)的大小
|
||||||
|
zoomLoxk: true,
|
||||||
|
// 控制手柄的尺寸
|
||||||
|
handleSize: 0,
|
||||||
|
// dataZoom-slider组件离容器下侧的距离
|
||||||
|
bottom: 14,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
// 没有下面这块的话,只能拖动滚动条,
|
||||||
|
// 鼠标滚轮在区域内不能控制外部滚动条
|
||||||
|
type: "inside",
|
||||||
|
// 滚轮是否触发缩放
|
||||||
|
zoomOnMouseWheel: false,
|
||||||
|
// 鼠标滚轮触发滚动
|
||||||
|
moveOnMouseMove: true,
|
||||||
|
moveOnMouseWheel: true,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
yAxis:undefined,
|
||||||
|
series: [],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
},
|
||||||
|
props: {
|
||||||
|
chartHeight: {
|
||||||
|
type: Number,
|
||||||
|
default: 300,
|
||||||
|
},
|
||||||
|
type: {
|
||||||
|
type: Number,
|
||||||
|
default: 2,
|
||||||
|
},
|
||||||
|
show: {
|
||||||
|
type: Boolean,
|
||||||
|
default: true,
|
||||||
|
},
|
||||||
|
legendList: {
|
||||||
|
type: Array,
|
||||||
|
default: () => [],
|
||||||
|
},
|
||||||
|
chartMsg: {
|
||||||
|
type: Object,
|
||||||
|
default: () => {},
|
||||||
|
},
|
||||||
|
chartId: {
|
||||||
|
type: String,
|
||||||
|
default: "bmChart",
|
||||||
|
},
|
||||||
|
chartNum: {
|
||||||
|
type: Number,
|
||||||
|
default: 1,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
watch: {
|
||||||
|
chartHeight: {
|
||||||
|
handler(newVal) {
|
||||||
|
this.chartHeight = newVal;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
type() {
|
||||||
|
this.canvasReset();
|
||||||
|
},
|
||||||
|
chartNum(val) {
|
||||||
|
this.canvasReset();
|
||||||
|
},
|
||||||
|
chartMsg: {
|
||||||
|
handler(newVal) {
|
||||||
|
this.canvasReset();
|
||||||
|
},
|
||||||
|
deep: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.canvasReset();
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
canvasReset() {
|
||||||
|
debounce(() => {
|
||||||
|
this.getMes();
|
||||||
|
}, 500)();
|
||||||
|
},
|
||||||
|
getMes() {
|
||||||
|
console.log('222222', this.chartMsg.series);
|
||||||
|
if (this.myChart) {
|
||||||
|
this.myChart.dispose();
|
||||||
|
}
|
||||||
|
var chartDom = document.getElementById(this.chartId);
|
||||||
|
this.myChart = echarts.init(chartDom);
|
||||||
|
this.option.color = this.chartMsg.color;
|
||||||
|
this.option.xAxis.data = this.chartMsg.xData;
|
||||||
|
// this.option.yAxis.name = this.chartMsg.yName;
|
||||||
|
|
||||||
|
// this.option.yAxis.axisLabel = this.chartMsg.yAxisLabel;
|
||||||
|
this.option.series = this.chartMsg.series;
|
||||||
|
this.option.yAxis = this.chartMsg.yAxis;
|
||||||
|
|
||||||
|
this.myChart.setOption(this.option);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
<style lang="scss">
|
||||||
|
.legendData {
|
||||||
|
text-align: right;
|
||||||
|
position: relative;
|
||||||
|
// right: 30;
|
||||||
|
// top: 10px;
|
||||||
|
.itemData {
|
||||||
|
display: inline-block;
|
||||||
|
margin-right: 10px;
|
||||||
|
font-size: 14px;
|
||||||
|
color: #8c8c8c;
|
||||||
|
.block {
|
||||||
|
width: 10px;
|
||||||
|
height: 10px;
|
||||||
|
display: inline-block;
|
||||||
|
margin-right: 4px;
|
||||||
|
}
|
||||||
|
.line {
|
||||||
|
width: 10px;
|
||||||
|
height: 10px;
|
||||||
|
border-radius: 5px;
|
||||||
|
display: inline-block;
|
||||||
|
margin-right: 4px;
|
||||||
|
position: relative;
|
||||||
|
.line-block {
|
||||||
|
position: absolute;
|
||||||
|
width: 20px;
|
||||||
|
height: 2px;
|
||||||
|
left: -5px;
|
||||||
|
top: 4px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
261
src/views/report/components/produceLineBarTarget.vue
Normal file
261
src/views/report/components/produceLineBarTarget.vue
Normal file
@@ -0,0 +1,261 @@
|
|||||||
|
<!--
|
||||||
|
* @Author: zhp
|
||||||
|
* @Date: 2024-06-20 16:13:36
|
||||||
|
* @LastEditTime: 2024-06-27 09:51:43
|
||||||
|
* @LastEditors: zhp
|
||||||
|
* @Description:
|
||||||
|
-->
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<!-- 暂无数据 -->
|
||||||
|
<div class="no-data-bg" style="position: relative; left: 50%; transform: translateX(-50%)"
|
||||||
|
v-show="this.chartMsg.series.length === 0"></div>
|
||||||
|
<!-- 图例 -->
|
||||||
|
<div v-show="this.chartMsg.series.length > 0">
|
||||||
|
<div class="legendData" v-if="show">
|
||||||
|
<span class="itemData" v-for="item in legendList" :key="item.id">
|
||||||
|
<span v-if="item.type === 1" class="block" :style="{ backgroundColor: item.color }"></span>
|
||||||
|
<span v-if="item.type === 2" class="line" :style="{ backgroundColor: item.color }">
|
||||||
|
<span class="line-block" :style="{ backgroundColor: item.color }"></span>
|
||||||
|
</span>
|
||||||
|
{{ item.name }}</span>
|
||||||
|
</div>
|
||||||
|
<div :id="chartId" :style="{ width: '100%', height: chartHeight + 'px' }"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<script>
|
||||||
|
import * as echarts from "echarts";
|
||||||
|
import { debounce } from "@/utils/debounce";
|
||||||
|
export default {
|
||||||
|
name: "bmLineBar",
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
myChart: "",
|
||||||
|
option: {
|
||||||
|
color: [],
|
||||||
|
// color: ["#8EF0AB", "#63BDFF", "#288AFF"],
|
||||||
|
grid: {
|
||||||
|
left: 20,
|
||||||
|
right: 0,
|
||||||
|
bottom: 31,
|
||||||
|
top: 30,
|
||||||
|
containLabel:true,
|
||||||
|
},
|
||||||
|
tooltip: {
|
||||||
|
trigger: "axis",
|
||||||
|
axisPointer: {
|
||||||
|
// type: "cross",
|
||||||
|
crossStyle: {
|
||||||
|
color: "rgba(237,237,237,0.5)",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
formatter: function (params) {
|
||||||
|
console.log('params', params.data)
|
||||||
|
var res = `<span style='color:rgba(0,0,0,0.8)'>${params[0].axisValueLabel}</span>`;
|
||||||
|
for (var i = 0, l = params.length; i < l; i++) {
|
||||||
|
res +=
|
||||||
|
"<br/>" +
|
||||||
|
`<span style='display:inline-block;margin-right:4px;border-radius:10px;width:10px;height:10px;background-color:${params[i].color}'></span>` +
|
||||||
|
`<span style='display:inline-block;width:150px;color:rgba(0,0,0,0.8);font-size:14px;'>${params[i].seriesName}</span>` +
|
||||||
|
`<span style='color:rgba(0,0,0,0.48);font-size:14px;'>${params[i].seriesName === "综合良率"
|
||||||
|
? (params[i].data.titleValue ? params[i].data.titleValue.toFixed(2) : 0.0) + "%"
|
||||||
|
: params[i].seriesName === "转化效率"
|
||||||
|
? (params[i].data.titleValue ? params[i].data.titleValue.toFixed(2) : 0.0) + "%"
|
||||||
|
: params[i].seriesName.search('总功率') != -1
|
||||||
|
? (params[i].data.titleValue ? params[i].data.titleValue : 0) + "MW"
|
||||||
|
: (params[i].data.titleValue ? params[i].data.titleValue : 0) + "片"
|
||||||
|
}</span>`;
|
||||||
|
}
|
||||||
|
return res;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
xAxis: {
|
||||||
|
type: "category",
|
||||||
|
data: [],
|
||||||
|
axisTick: {
|
||||||
|
show: false,
|
||||||
|
},
|
||||||
|
axisPointer: {
|
||||||
|
type: "shadow",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
// dataZoom: [//滚动条
|
||||||
|
// {
|
||||||
|
// // 设置滚动条的隐藏与显示
|
||||||
|
// show: true,
|
||||||
|
// // 设置滚动条类型
|
||||||
|
// type: "slider",
|
||||||
|
// // 设置背景颜色
|
||||||
|
// backgroundColor: "rgb(19, 63, 100)",
|
||||||
|
// // 设置选中范围的填充颜色
|
||||||
|
// fillerColor: "rgb(16, 171, 198)",
|
||||||
|
// // 设置边框颜色
|
||||||
|
// borderColor: "rgb(19, 63, 100)",
|
||||||
|
// // 是否显示detail,即拖拽时候显示详细数值信息
|
||||||
|
// showDetail: false,
|
||||||
|
// // 数据窗口范围的起始数值
|
||||||
|
// startValue: 0,
|
||||||
|
// // 数据窗口范围的结束数值(一页显示多少条数据)
|
||||||
|
// endValue: 5,
|
||||||
|
// // empty:当前数据窗口外的数据,被设置为空。
|
||||||
|
// // 即不会影响其他轴的数据范围
|
||||||
|
// filterMode: "empty",
|
||||||
|
// // 设置滚动条宽度,相对于盒子宽度
|
||||||
|
// width: "50%",
|
||||||
|
// // 设置滚动条高度
|
||||||
|
// height: 8,
|
||||||
|
// // 设置滚动条显示位置
|
||||||
|
// left: "center",
|
||||||
|
// // 是否锁定选择区域(或叫做数据窗口)的大小
|
||||||
|
// zoomLoxk: true,
|
||||||
|
// // 控制手柄的尺寸
|
||||||
|
// handleSize: 0,
|
||||||
|
// // dataZoom-slider组件离容器下侧的距离
|
||||||
|
// bottom: 3,
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// // 没有下面这块的话,只能拖动滚动条,
|
||||||
|
// // 鼠标滚轮在区域内不能控制外部滚动条
|
||||||
|
// type: "inside",
|
||||||
|
// // 滚轮是否触发缩放
|
||||||
|
// zoomOnMouseWheel: false,
|
||||||
|
// // 鼠标滚轮触发滚动
|
||||||
|
// moveOnMouseMove: true,
|
||||||
|
// moveOnMouseWheel: true,
|
||||||
|
// },
|
||||||
|
|
||||||
|
// ],
|
||||||
|
yAxis:undefined,
|
||||||
|
series: [],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
},
|
||||||
|
props: {
|
||||||
|
chartHeight: {
|
||||||
|
type: Number,
|
||||||
|
default: 300,
|
||||||
|
},
|
||||||
|
gridLeft: {
|
||||||
|
type: Boolean,
|
||||||
|
default: true,
|
||||||
|
},
|
||||||
|
type: {
|
||||||
|
type: Number,
|
||||||
|
default: 2,
|
||||||
|
},
|
||||||
|
show: {
|
||||||
|
type: Boolean,
|
||||||
|
default: true,
|
||||||
|
},
|
||||||
|
legendList: {
|
||||||
|
type: Array,
|
||||||
|
default: () => [],
|
||||||
|
},
|
||||||
|
chartMsg: {
|
||||||
|
type: Object,
|
||||||
|
default: () => { },
|
||||||
|
},
|
||||||
|
chartId: {
|
||||||
|
type: String,
|
||||||
|
default: "bmChart",
|
||||||
|
},
|
||||||
|
chartNum: {
|
||||||
|
type: Number,
|
||||||
|
default: 1,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
watch: {
|
||||||
|
chartHeight: {
|
||||||
|
handler(newVal) {
|
||||||
|
this.chartHeight = newVal;
|
||||||
|
},
|
||||||
|
|
||||||
|
},
|
||||||
|
// gridLeft(val) {
|
||||||
|
// console.log(val)
|
||||||
|
|
||||||
|
// },
|
||||||
|
type() {
|
||||||
|
this.canvasReset();
|
||||||
|
},
|
||||||
|
chartNum(val) {
|
||||||
|
this.canvasReset();
|
||||||
|
},
|
||||||
|
chartMsg: {
|
||||||
|
handler(newVal) {
|
||||||
|
this.canvasReset();
|
||||||
|
},
|
||||||
|
deep: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.canvasReset();
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
canvasReset() {
|
||||||
|
debounce(() => {
|
||||||
|
this.getMes();
|
||||||
|
}, 500)();
|
||||||
|
},
|
||||||
|
getMes() {
|
||||||
|
console.log(this.gridLeft)
|
||||||
|
if (this.gridLeft === false) {
|
||||||
|
this.option.grid.left = 20
|
||||||
|
} else {
|
||||||
|
this.option.grid.left = -80
|
||||||
|
}
|
||||||
|
// console.log('222222', this.chartMsg);
|
||||||
|
if (this.myChart) {
|
||||||
|
this.myChart.dispose();
|
||||||
|
}
|
||||||
|
var chartDom = document.getElementById(this.chartId);
|
||||||
|
this.myChart = echarts.init(chartDom);
|
||||||
|
this.option.color = this.chartMsg.color;
|
||||||
|
this.option.xAxis.data = this.chartMsg.xData
|
||||||
|
// this.option.yAxis.name = this.chartMsg.yName;
|
||||||
|
|
||||||
|
// this.option.yAxis.axisLabel = this.chartMsg.yAxisLabel;
|
||||||
|
this.option.series = this.chartMsg.series;
|
||||||
|
this.option.yAxis = this.chartMsg.yAxis;
|
||||||
|
|
||||||
|
this.myChart.setOption(this.option);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
<style lang="scss">
|
||||||
|
.legendData {
|
||||||
|
text-align: right;
|
||||||
|
position: relative;
|
||||||
|
// right: 30;
|
||||||
|
// top: 10px;
|
||||||
|
.itemData {
|
||||||
|
display: inline-block;
|
||||||
|
margin-right: 10px;
|
||||||
|
font-size: 14px;
|
||||||
|
color: #8c8c8c;
|
||||||
|
.block {
|
||||||
|
width: 10px;
|
||||||
|
height: 10px;
|
||||||
|
display: inline-block;
|
||||||
|
margin-right: 4px;
|
||||||
|
}
|
||||||
|
.line {
|
||||||
|
width: 10px;
|
||||||
|
height: 10px;
|
||||||
|
border-radius: 5px;
|
||||||
|
display: inline-block;
|
||||||
|
margin-right: 4px;
|
||||||
|
position: relative;
|
||||||
|
.line-block {
|
||||||
|
position: absolute;
|
||||||
|
width: 20px;
|
||||||
|
height: 2px;
|
||||||
|
left: -5px;
|
||||||
|
top: 4px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
245
src/views/report/components/produceLineBarYearTarget.vue
Normal file
245
src/views/report/components/produceLineBarYearTarget.vue
Normal file
@@ -0,0 +1,245 @@
|
|||||||
|
<!--
|
||||||
|
* @Author: zhp
|
||||||
|
* @Date: 2024-06-20 16:13:52
|
||||||
|
* @LastEditTime: 2024-06-27 09:55:02
|
||||||
|
* @LastEditors: zhp
|
||||||
|
* @Description:
|
||||||
|
-->
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<!-- 暂无数据 -->
|
||||||
|
<div class="no-data-bg" style="position: relative; left: 50%; transform: translateX(-50%)"
|
||||||
|
v-show="this.chartMsg.series[0].data.length === 0"></div>
|
||||||
|
<!-- 图例 -->
|
||||||
|
<div v-show="this.chartMsg.series[0].data.length > 0">
|
||||||
|
<div class="legendData" v-if="show">
|
||||||
|
<span class="itemData" v-for="item in legendList" :key="item.id">
|
||||||
|
<span v-if="item.type === 1" class="block" :style="{ backgroundColor: item.color }"></span>
|
||||||
|
<span v-if="item.type === 2" class="line" :style="{ backgroundColor: item.color }">
|
||||||
|
<span class="line-block" :style="{ backgroundColor: item.color }"></span>
|
||||||
|
</span>
|
||||||
|
{{ item.name }}</span>
|
||||||
|
</div>
|
||||||
|
<div :id="chartId" :style="{ width: '100%', height: chartHeight + 'px' }"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<script>
|
||||||
|
import * as echarts from "echarts";
|
||||||
|
import { debounce } from "@/utils/debounce";
|
||||||
|
export default {
|
||||||
|
name: "bmLineBar",
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
myChart: "",
|
||||||
|
option: {
|
||||||
|
color: [],
|
||||||
|
// color: ["#8EF0AB", "#63BDFF", "#288AFF"],
|
||||||
|
grid: {
|
||||||
|
left: 60,
|
||||||
|
right: 0,
|
||||||
|
bottom: 30,
|
||||||
|
top: 30,
|
||||||
|
containLabel:true,
|
||||||
|
},
|
||||||
|
tooltip: {
|
||||||
|
trigger: "axis",
|
||||||
|
axisPointer: {
|
||||||
|
// type: "cross",
|
||||||
|
crossStyle: {
|
||||||
|
color: "rgba(237,237,237,0.5)",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
formatter: function (params) {
|
||||||
|
// console.log('params', params);
|
||||||
|
var res = `<span style='color:rgba(0,0,0,0.8)'>${params[0].axisValueLabel}</span>`;
|
||||||
|
for (var i = 0, l = params.length; i < l; i++) {
|
||||||
|
res +=
|
||||||
|
"<br/>" +
|
||||||
|
`<span style='display:inline-block;margin-right:4px;border-radius:10px;width:10px;height:10px;background-color:${params[i].color}'></span>` +
|
||||||
|
`<span style='display:inline-block;width:150px;color:rgba(0,0,0,0.8);font-size:14px;'>${params[i].seriesName}</span>` +
|
||||||
|
`<span style='color:rgba(0,0,0,0.48);font-size:14px;'>${params[i].seriesName === "综合良率"
|
||||||
|
? (params[i].value ? params[i].value.toFixed(2) : 0.0) + "%"
|
||||||
|
: params[i].seriesName === "转化效率"
|
||||||
|
? params[i].value+ "%"
|
||||||
|
: params[i].seriesName.search('总功率') != -1
|
||||||
|
? (params[i].value ? params[i] : 0) + "MW"
|
||||||
|
: (params[i].value ? params[i].value : 0) + "片"
|
||||||
|
}</span>`;
|
||||||
|
}
|
||||||
|
return res;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
xAxis: {
|
||||||
|
type: "category",
|
||||||
|
data: [],
|
||||||
|
axisTick: {
|
||||||
|
show: false,
|
||||||
|
},
|
||||||
|
axisPointer: {
|
||||||
|
type: "shadow",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
// dataZoom: [//滚动条
|
||||||
|
// {
|
||||||
|
// // 设置滚动条的隐藏与显示
|
||||||
|
// show: true,
|
||||||
|
// // 设置滚动条类型
|
||||||
|
// type: "slider",
|
||||||
|
// // 设置背景颜色
|
||||||
|
// backgroundColor: "rgb(19, 63, 100)",
|
||||||
|
// // 设置选中范围的填充颜色
|
||||||
|
// fillerColor: "rgb(16, 171, 198)",
|
||||||
|
// // 设置边框颜色
|
||||||
|
// borderColor: "rgb(19, 63, 100)",
|
||||||
|
// // 是否显示detail,即拖拽时候显示详细数值信息
|
||||||
|
// showDetail: false,
|
||||||
|
// // 数据窗口范围的起始数值
|
||||||
|
// startValue: 0,
|
||||||
|
// // 数据窗口范围的结束数值(一页显示多少条数据)
|
||||||
|
// endValue: 5,
|
||||||
|
// // empty:当前数据窗口外的数据,被设置为空。
|
||||||
|
// // 即不会影响其他轴的数据范围
|
||||||
|
// filterMode: "empty",
|
||||||
|
// // 设置滚动条宽度,相对于盒子宽度
|
||||||
|
// width: "50%",
|
||||||
|
// // 设置滚动条高度
|
||||||
|
// height: 8,
|
||||||
|
// // 设置滚动条显示位置
|
||||||
|
// left: "center",
|
||||||
|
// // 是否锁定选择区域(或叫做数据窗口)的大小
|
||||||
|
// zoomLoxk: true,
|
||||||
|
// // 控制手柄的尺寸
|
||||||
|
// handleSize: 0,
|
||||||
|
// // dataZoom-slider组件离容器下侧的距离
|
||||||
|
// bottom: 3,
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// // 没有下面这块的话,只能拖动滚动条,
|
||||||
|
// // 鼠标滚轮在区域内不能控制外部滚动条
|
||||||
|
// type: "inside",
|
||||||
|
// // 滚轮是否触发缩放
|
||||||
|
// zoomOnMouseWheel: false,
|
||||||
|
// // 鼠标滚轮触发滚动
|
||||||
|
// moveOnMouseMove: true,
|
||||||
|
// moveOnMouseWheel: true,
|
||||||
|
// },
|
||||||
|
|
||||||
|
// ],
|
||||||
|
yAxis:undefined,
|
||||||
|
series: [],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
},
|
||||||
|
props: {
|
||||||
|
chartHeight: {
|
||||||
|
type: Number,
|
||||||
|
default: 300,
|
||||||
|
},
|
||||||
|
type: {
|
||||||
|
type: Number,
|
||||||
|
default: 2,
|
||||||
|
},
|
||||||
|
show: {
|
||||||
|
type: Boolean,
|
||||||
|
default: true,
|
||||||
|
},
|
||||||
|
legendList: {
|
||||||
|
type: Array,
|
||||||
|
default: () => [],
|
||||||
|
},
|
||||||
|
chartMsg: {
|
||||||
|
type: Object,
|
||||||
|
default: () => { },
|
||||||
|
},
|
||||||
|
chartId: {
|
||||||
|
type: String,
|
||||||
|
default: "bmChart",
|
||||||
|
},
|
||||||
|
chartNum: {
|
||||||
|
type: Number,
|
||||||
|
default: 1,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
watch: {
|
||||||
|
chartHeight: {
|
||||||
|
handler(newVal) {
|
||||||
|
this.chartHeight = newVal;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
type() {
|
||||||
|
this.canvasReset();
|
||||||
|
},
|
||||||
|
chartNum(val) {
|
||||||
|
this.canvasReset();
|
||||||
|
},
|
||||||
|
chartMsg: {
|
||||||
|
handler(newVal) {
|
||||||
|
this.canvasReset();
|
||||||
|
},
|
||||||
|
deep: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.canvasReset();
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
canvasReset() {
|
||||||
|
debounce(() => {
|
||||||
|
this.getMes();
|
||||||
|
}, 500)();
|
||||||
|
},
|
||||||
|
getMes() {
|
||||||
|
if (this.myChart) {
|
||||||
|
this.myChart.dispose();
|
||||||
|
}
|
||||||
|
var chartDom = document.getElementById(this.chartId);
|
||||||
|
this.myChart = echarts.init(chartDom);
|
||||||
|
this.option.color = this.chartMsg.color;
|
||||||
|
this.option.xAxis.data = this.chartMsg.xData;
|
||||||
|
// this.option.yAxis.name = this.chartMsg.yName;
|
||||||
|
|
||||||
|
// this.option.yAxis.axisLabel = this.chartMsg.yAxisLabel;
|
||||||
|
this.option.series = this.chartMsg.series;
|
||||||
|
this.option.yAxis = this.chartMsg.yAxis;
|
||||||
|
|
||||||
|
this.myChart.setOption(this.option);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
<style lang="scss">
|
||||||
|
.legendData {
|
||||||
|
text-align: right;
|
||||||
|
position: relative;
|
||||||
|
// right: 30;
|
||||||
|
// top: 10px;
|
||||||
|
.itemData {
|
||||||
|
display: inline-block;
|
||||||
|
margin-right: 10px;
|
||||||
|
font-size: 14px;
|
||||||
|
color: #8c8c8c;
|
||||||
|
.block {
|
||||||
|
width: 10px;
|
||||||
|
height: 10px;
|
||||||
|
display: inline-block;
|
||||||
|
margin-right: 4px;
|
||||||
|
}
|
||||||
|
.line {
|
||||||
|
width: 10px;
|
||||||
|
height: 10px;
|
||||||
|
border-radius: 5px;
|
||||||
|
display: inline-block;
|
||||||
|
margin-right: 4px;
|
||||||
|
position: relative;
|
||||||
|
.line-block {
|
||||||
|
position: absolute;
|
||||||
|
width: 20px;
|
||||||
|
height: 2px;
|
||||||
|
left: -5px;
|
||||||
|
top: 4px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
262
src/views/report/components/produceLineYieldBarTarget.vue
Normal file
262
src/views/report/components/produceLineYieldBarTarget.vue
Normal file
@@ -0,0 +1,262 @@
|
|||||||
|
<!--
|
||||||
|
* @Author: zhp
|
||||||
|
* @Date: 2024-06-21 09:05:14
|
||||||
|
* @LastEditTime: 2024-06-27 10:59:40
|
||||||
|
* @LastEditors: zhp
|
||||||
|
* @Description:
|
||||||
|
-->
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<!-- 暂无数据 -->
|
||||||
|
<div class="no-data-bg" style="position: relative; left: 50%; transform: translateX(-50%)"
|
||||||
|
v-show="this.chartMsg.series[0].data.length === 0"></div>
|
||||||
|
<!-- 图例 -->
|
||||||
|
<div v-show="this.chartMsg.series[0].data.length > 0">
|
||||||
|
<div class="legendData" v-if="show">
|
||||||
|
<span class="itemData" v-for="item in legendList" :key="item.id">
|
||||||
|
<span v-if="item.type === 1" class="block" :style="{ backgroundColor: item.color }"></span>
|
||||||
|
<span v-if="item.type === 2" class="line" :style="{ backgroundColor: item.color }">
|
||||||
|
<span class="line-block" :style="{ backgroundColor: item.color }"></span>
|
||||||
|
</span>
|
||||||
|
{{ item.name }}</span>
|
||||||
|
</div>
|
||||||
|
<div :id="chartId" :style="{ width: '100%', height: chartHeight + 'px' }"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<script>
|
||||||
|
import * as echarts from "echarts";
|
||||||
|
import { debounce } from "@/utils/debounce";
|
||||||
|
export default {
|
||||||
|
name: "bmLineBar",
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
myChart: "",
|
||||||
|
option: {
|
||||||
|
color: [],
|
||||||
|
// color: ["#8EF0AB", "#63BDFF", "#288AFF"],
|
||||||
|
grid: {
|
||||||
|
left: 60,
|
||||||
|
right: 0,
|
||||||
|
bottom: 30,
|
||||||
|
top: 30,
|
||||||
|
containLabel:true,
|
||||||
|
},
|
||||||
|
tooltip: {
|
||||||
|
trigger: "axis",
|
||||||
|
axisPointer: {
|
||||||
|
// type: "cross",
|
||||||
|
crossStyle: {
|
||||||
|
color: "rgba(237,237,237,0.5)",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
formatter: function (params) {
|
||||||
|
// console.log('params', params)
|
||||||
|
let arr = []
|
||||||
|
var res = ``;
|
||||||
|
// for (var i = 0, l = params.length; i < l; i++) {
|
||||||
|
console.log()
|
||||||
|
if (params[0].axisValue === 'FTO投入' || params[0].axisValue === '芯片产量' || params[0].axisValue === '标准组件产量') {
|
||||||
|
res +=
|
||||||
|
"<br/>" +
|
||||||
|
`<span style='display:inline-block;margin-right:4px;border-radius:10px;width:10px;height:10px;background-color:${params[0].color}'></span>` +
|
||||||
|
`<span style='display:inline-block;width:150px;color:rgba(0,0,0,0.8);font-size:14px;'>${params[0].axisValueLabel}</span>` +
|
||||||
|
`<span style='color:rgba(0,0,0,0.48);font-size:14px;'>${params[0].name === "综合良率"
|
||||||
|
? (params[0].value ? params[0].value.toFixed(2) : 0.0) + "%"
|
||||||
|
: params[0].name === "转化效率"
|
||||||
|
? (params[0].value ? params[0].value.toFixed(2) : 0.0) + "%"
|
||||||
|
: params[i].seriesName.search('总功率') != -1
|
||||||
|
? (params[i].value ? params[i].value : 0) + "MW"
|
||||||
|
: (params[i].value ? params[i].value : 0) + "片"
|
||||||
|
}</span>`;
|
||||||
|
// }
|
||||||
|
}
|
||||||
|
if (params[1].axisValue === '综合良率' || params[1].axisValue === '转化效率') {
|
||||||
|
res +=
|
||||||
|
"<br/>" +
|
||||||
|
`<span style='display:inline-block;margin-right:4px;border-radius:10px;width:10px;height:10px;background-color:${params[1].color}'></span>` +
|
||||||
|
`<span style='display:inline-block;width:150px;color:rgba(0,0,0,0.8);font-size:14px;'>${params[1].axisValueLabel}</span>` +
|
||||||
|
`<span style='color:rgba(0,0,0,0.48);font-size:14px;'>${params[1].name === "综合良率"
|
||||||
|
? (params[1].value ? params[1].value.toFixed(2) : 0.0) + "%"
|
||||||
|
: params[1].name === "转化效率"
|
||||||
|
? (params[1].value ? params[1].value.toFixed(2) : 0.0) + "%"
|
||||||
|
: params[i].seriesName.search('总功率') != -1
|
||||||
|
? (params[i].value ? params[i].value : 0) + "MW"
|
||||||
|
: (params[i].value ? params[i].value : 0) + "片"
|
||||||
|
}</span>`;
|
||||||
|
}
|
||||||
|
return res;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
xAxis: {
|
||||||
|
type: "category",
|
||||||
|
data: [],
|
||||||
|
axisTick: {
|
||||||
|
show: false,
|
||||||
|
},
|
||||||
|
axisPointer: {
|
||||||
|
type: "shadow",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
// dataZoom: [//滚动条
|
||||||
|
// {
|
||||||
|
// // 设置滚动条的隐藏与显示
|
||||||
|
// show: true,
|
||||||
|
// // 设置滚动条类型
|
||||||
|
// type: "slider",
|
||||||
|
// // 设置背景颜色
|
||||||
|
// backgroundColor: "#F7F7F7",
|
||||||
|
// // 设置选中范围的填充颜色
|
||||||
|
// fillerColor: "#EBEBEB",
|
||||||
|
// // 设置边框颜色
|
||||||
|
// borderColor: "#F7F7F7",
|
||||||
|
// // 是否显示detail,即拖拽时候显示详细数值信息
|
||||||
|
// showDetail: false,
|
||||||
|
// // 数据窗口范围的起始数值
|
||||||
|
// startValue: 0,
|
||||||
|
// // 数据窗口范围的结束数值(一页显示多少条数据)
|
||||||
|
// endValue: 5,
|
||||||
|
// // empty:当前数据窗口外的数据,被设置为空。
|
||||||
|
// // 即不会影响其他轴的数据范围
|
||||||
|
// filterMode: "empty",
|
||||||
|
// // 设置滚动条宽度,相对于盒子宽度
|
||||||
|
// width: "100%",
|
||||||
|
// // 设置滚动条高度
|
||||||
|
// height: 8,
|
||||||
|
// // 设置滚动条显示位置
|
||||||
|
// left: "center",
|
||||||
|
// // 是否锁定选择区域(或叫做数据窗口)的大小
|
||||||
|
// zoomLoxk: true,
|
||||||
|
// // 控制手柄的尺寸
|
||||||
|
// handleSize: 0,
|
||||||
|
// // dataZoom-slider组件离容器下侧的距离
|
||||||
|
// bottom: 3,
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// // 没有下面这块的话,只能拖动滚动条,
|
||||||
|
// // 鼠标滚轮在区域内不能控制外部滚动条
|
||||||
|
// type: "inside",
|
||||||
|
// // 滚轮是否触发缩放
|
||||||
|
// zoomOnMouseWheel: false,
|
||||||
|
// // 鼠标滚轮触发滚动
|
||||||
|
// moveOnMouseMove: true,
|
||||||
|
// moveOnMouseWheel: true,
|
||||||
|
// },
|
||||||
|
// ],
|
||||||
|
yAxis:undefined,
|
||||||
|
series: [],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
},
|
||||||
|
props: {
|
||||||
|
chartHeight: {
|
||||||
|
type: Number,
|
||||||
|
default: 300,
|
||||||
|
},
|
||||||
|
type: {
|
||||||
|
type: Number,
|
||||||
|
default: 2,
|
||||||
|
},
|
||||||
|
show: {
|
||||||
|
type: Boolean,
|
||||||
|
default: true,
|
||||||
|
},
|
||||||
|
legendList: {
|
||||||
|
type: Array,
|
||||||
|
default: () => [],
|
||||||
|
},
|
||||||
|
chartMsg: {
|
||||||
|
type: Object,
|
||||||
|
default: () => { },
|
||||||
|
},
|
||||||
|
chartId: {
|
||||||
|
type: String,
|
||||||
|
default: "bmChart",
|
||||||
|
},
|
||||||
|
chartNum: {
|
||||||
|
type: Number,
|
||||||
|
default: 1,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
watch: {
|
||||||
|
chartHeight: {
|
||||||
|
handler(newVal) {
|
||||||
|
this.chartHeight = newVal;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
type() {
|
||||||
|
this.canvasReset();
|
||||||
|
},
|
||||||
|
chartNum(val) {
|
||||||
|
this.canvasReset();
|
||||||
|
},
|
||||||
|
chartMsg: {
|
||||||
|
handler(newVal) {
|
||||||
|
this.canvasReset();
|
||||||
|
},
|
||||||
|
deep: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.canvasReset();
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
canvasReset() {
|
||||||
|
debounce(() => {
|
||||||
|
this.getMes();
|
||||||
|
}, 500)();
|
||||||
|
},
|
||||||
|
getMes() {
|
||||||
|
if (this.myChart) {
|
||||||
|
this.myChart.dispose();
|
||||||
|
}
|
||||||
|
var chartDom = document.getElementById(this.chartId);
|
||||||
|
this.myChart = echarts.init(chartDom);
|
||||||
|
this.option.color = this.chartMsg.color;
|
||||||
|
this.option.xAxis.data = this.chartMsg.xData;
|
||||||
|
// this.option.yAxis.name = this.chartMsg.yName;
|
||||||
|
|
||||||
|
// this.option.yAxis.axisLabel = this.chartMsg.yAxisLabel;
|
||||||
|
this.option.series = this.chartMsg.series;
|
||||||
|
this.option.yAxis = this.chartMsg.yAxis;
|
||||||
|
|
||||||
|
this.myChart.setOption(this.option);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
<style lang="scss">
|
||||||
|
.legendData {
|
||||||
|
text-align: right;
|
||||||
|
position: relative;
|
||||||
|
// right: 30;
|
||||||
|
// top: 10px;
|
||||||
|
.itemData {
|
||||||
|
display: inline-block;
|
||||||
|
margin-right: 10px;
|
||||||
|
font-size: 14px;
|
||||||
|
color: #8c8c8c;
|
||||||
|
.block {
|
||||||
|
width: 10px;
|
||||||
|
height: 10px;
|
||||||
|
display: inline-block;
|
||||||
|
margin-right: 4px;
|
||||||
|
}
|
||||||
|
.line {
|
||||||
|
width: 10px;
|
||||||
|
height: 10px;
|
||||||
|
border-radius: 5px;
|
||||||
|
display: inline-block;
|
||||||
|
margin-right: 4px;
|
||||||
|
position: relative;
|
||||||
|
.line-block {
|
||||||
|
position: absolute;
|
||||||
|
width: 20px;
|
||||||
|
height: 2px;
|
||||||
|
left: -5px;
|
||||||
|
top: 4px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Author: zhp
|
* @Author: zhp
|
||||||
* @Date: 2024-04-15 10:49:13
|
* @Date: 2024-04-15 10:49:13
|
||||||
* @LastEditTime: 2024-06-18 13:41:03
|
* @LastEditTime: 2024-06-25 08:39:48
|
||||||
* @LastEditors: zhp
|
* @LastEditors: zhp
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
@@ -13,63 +13,52 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="app-container" style="margin-top: 8px;flex-grow: 1; height: auto;">
|
<div class="app-container" style="margin-top: 8px;flex-grow: 1; height: auto;">
|
||||||
<el-form :model="listQuery" :inline="true" ref="dataForm" class="blueTip">
|
<el-form :model="listQuery" :inline="true" ref="dataForm" class="blueTip">
|
||||||
<el-form-item label="时间维度" prop="date">
|
<el-form-item label="时间维度" prop="type">
|
||||||
<el-select size="small" clearable v-model="listQuery.type" placeholder="请选择">
|
<el-select size="small" clearable v-model="listQuery.type" placeholder="请选择">
|
||||||
<el-option v-for="item in timeList" :key="item.value" :label="item.label" :value="item.value">
|
<el-option v-for="item in timeList" :key="item.value" :label="item.label" :value="item.value">
|
||||||
</el-option>
|
</el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item v-show="listQuery.type === 0 || listQuery.type === ''" label="时间范围" prop="reportTime">
|
<el-form-item v-show="listQuery.type === 0 || listQuery.type === ''" label="时间范围" prop="reportTime">
|
||||||
<el-date-picker size="small" clearable v-model="listQuery.reportTime" type="daterange" range-separator="至"
|
<el-date-picker size="small" clearable v-model="listQuery.reportTime" type="datetimerange" range-separator="至"
|
||||||
start-placeholder="开始日期" value-format="yyyy-MM-dd HH:mm:ss" @change="changeDayTime" end-placeholder="结束日期">
|
start-placeholder="开始日期" value-format="yyyy-MM-dd" format="yyyy-MM-dd" @change="changeDayTime"
|
||||||
|
end-placeholder="结束日期">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item v-show="listQuery.type === 1" label="时间范围" prop="reportTime">
|
<el-form-item v-show="listQuery.type === 1" label="时间范围" prop="reportTime">
|
||||||
<el-date-picker size="small" clearable v-model="start" type="week" format="yyyy 第 WW 周" placeholder="选择周"
|
<el-date-picker size="small" clearable v-model="listQuery.start" type="week" format="yyyy 第 WW 周"
|
||||||
style="width: 180px" @change="onValueChange">
|
placeholder="选择周" style="width: 180px" @change="onValueChange" :picker-options="{'firstDayOfWeek': 1}">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
至
|
至
|
||||||
<el-date-picker size="small" clearable v-model="end" type="week" format="yyyy 第 WW 周" placeholder="选择周"
|
<el-date-picker size="small" clearable v-model="listQuery.end" type="week" format="yyyy 第 WW 周"
|
||||||
style="width: 180px" @change="onValueChange">
|
placeholder="选择周" style="width: 180px" @change="onValueChange" :picker-options="{'firstDayOfWeek': 1}">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
|
<!-- <span v-if="listQuery.start && listQuery.end" style="margin-left: 10px">
|
||||||
|
{{ date1 }} 至 {{ date2 }},共 {{ weekNum }} 周
|
||||||
|
</span> -->
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item v-show="listQuery.type === 2" label="时间值" prop="reportTime">
|
<el-form-item v-show="listQuery.type === 2" label="时间范围" prop="reportTime">
|
||||||
<el-date-picker size="small" v-model="listQuery.reportTime" type="monthrange"
|
<el-date-picker size="small" clearable v-model="listQuery.reportTime" type="monthrange"
|
||||||
value-format="yyyy-MM-DD HH:mm:ss" range-separator="至" start-placeholder="开始月份" end-placeholder="结束月份"
|
value-format="yyyy-MM-dd" range-separator="至" start-placeholder="开始月份" end-placeholder="结束月份"
|
||||||
@change="changeTime">
|
@change="changeTime">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item v-show="listQuery.type === 3" label="时间值" prop="reportTime">
|
<el-form-item v-show="listQuery.type === 3" label="时间范围" prop="reportTime">
|
||||||
<el-date-picker size="small" clearable v-model="listQuery.reportTime[0]" value-format="yyyy" type="year"
|
<el-date-picker size="small" clearable v-model="listQuery.start" value-format="yyyy-MM-dd" type="year"
|
||||||
placeholder="开始时间">
|
placeholder="开始时间">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
~
|
~
|
||||||
<el-date-picker size="small" clearable v-model="listQuery.reportTime[1]" value-format="yyyy" type="year"
|
<el-date-picker size="small" clearable v-model="listQuery.end" value-format="yyyy-MM-dd" type="year"
|
||||||
placeholder="结束时间" @change="getYear">
|
placeholder="结束时间" @change="getYear">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<!-- <el-form-item label="玻璃类型" prop="type">
|
|
||||||
<el-select v-model="listQuery.type" placeholder="请选择玻璃类型">
|
|
||||||
<el-option v-for="item in typeList" :key="item.id" :label="item.name" :value="item.id">
|
|
||||||
</el-option>
|
|
||||||
</el-select>
|
|
||||||
</el-form-item> -->
|
|
||||||
<!-- <el-form-item label="玻璃类型" prop="type">
|
|
||||||
<el-select v-model="listQuery.type" placeholder="请选择玻璃类型">
|
|
||||||
<el-option v-for="item in typeList" :key="item.id" :label="item.name" :value="item.id">
|
|
||||||
</el-option>
|
|
||||||
</el-select>
|
|
||||||
</el-form-item> -->
|
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button type="primary" size="small" @click="getDataList">查询</el-button>
|
<el-button type="primary" size="small" @click="getDataList">查询</el-button>
|
||||||
<el-divider direction="vertical"></el-divider>
|
|
||||||
<!-- <el-button type="primary" size="small" plain @click="handleImport">导入</el-button> -->
|
|
||||||
<el-button type="primary" size="small" plain @click="handleExport">导出</el-button>
|
<el-button type="primary" size="small" plain @click="handleExport">导出</el-button>
|
||||||
<!-- <el-button type="success" size="small" plain @click="addFactory">新增</el-button> -->
|
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<base-table :table-props="tableProps" :page="listQuery.pageNo" :limit="listQuery.pageSize"
|
<base-table :span-method="objectSpanMethod" :table-props="tableProps" :page="listQuery.pageNo"
|
||||||
:table-data="tableData">
|
:limit="listQuery.pageSize" :table-data="tableData" :max-height="tableH">
|
||||||
</base-table>
|
</base-table>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -77,7 +66,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
// import { parseTime } from '../../core/mixins/code-filter';
|
// import { parseTime } from '../../core/mixins/code-filter';
|
||||||
import { getComprehensiveDataPage } from '@/api/report';
|
import { getComprehensiveDataPage, exportComprehensiveDataPage } from '@/api/report';
|
||||||
// import { getWorkOrderPage, exportExcel, getOverView } from '@/components/buttonNav'
|
// import { getWorkOrderPage, exportExcel, getOverView } from '@/components/buttonNav'
|
||||||
// import inputTable from './inputTable.vue';
|
// import inputTable from './inputTable.vue';
|
||||||
// import lineChart from './lineChart';
|
// import lineChart from './lineChart';
|
||||||
@@ -97,18 +86,22 @@ export default {
|
|||||||
return {
|
return {
|
||||||
factoryList,
|
factoryList,
|
||||||
factoryArray,
|
factoryArray,
|
||||||
start: undefined,
|
currentMenu:'邯郸',
|
||||||
end: undefined,
|
|
||||||
listQuery: {
|
listQuery: {
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 999,
|
||||||
// size: 10,
|
// size: 10,
|
||||||
// current: 1,
|
// current: 1,
|
||||||
factory: null,
|
factory: undefined,
|
||||||
// total: 0,
|
// total: 0,
|
||||||
type: 2,
|
type: 2,
|
||||||
startDate: undefined,
|
startDate: undefined,
|
||||||
endDate: undefined,
|
endDate: undefined,
|
||||||
|
start: undefined,
|
||||||
|
end: undefined,
|
||||||
reportTime: []
|
reportTime: []
|
||||||
},
|
},
|
||||||
|
tableH: this.tableHeight(269),
|
||||||
timeList: [
|
timeList: [
|
||||||
{
|
{
|
||||||
value: 0,
|
value: 0,
|
||||||
@@ -152,81 +145,51 @@ export default {
|
|||||||
id: 2,
|
id: 2,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
tableProps: [
|
otherProps:[],
|
||||||
{
|
|
||||||
prop: 'factory',
|
|
||||||
label: '玻璃类型',
|
|
||||||
fixed:true,
|
|
||||||
// filter: (val) => factoryList[val],
|
|
||||||
// minWidth: 200,
|
|
||||||
// showOverflowtooltip: true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'workOrderNumber',
|
|
||||||
label: '科目/日期',
|
|
||||||
fixed: true,
|
|
||||||
// filter: (val) => ['玻璃芯片', '标准组件', 'BIPV', '定制组件'][val]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'workOrderType',
|
|
||||||
label: '单位',
|
|
||||||
fixed: true,
|
|
||||||
// filter: publicFormatter('workorder_status')
|
|
||||||
// filter: (val) => ['', '芯片工单', '组件类型', 'bipv类型'][val],
|
|
||||||
},
|
|
||||||
// {
|
|
||||||
// prop: 'plannedInvestment',
|
|
||||||
// label: '计划投入',
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// prop: 'actualInvestment',
|
|
||||||
// label: '实际投入',
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// prop: 'targetProduction',
|
|
||||||
// label: '目标产量',
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// prop: 'actualProduction',
|
|
||||||
// label: '实际产量',
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// prop: 'productionProgress',
|
|
||||||
// label: '生产进度',
|
|
||||||
// filter: (val) => (val * 100) + '%'
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// prop: 'orderStatus',
|
|
||||||
// label: '工单状态',
|
|
||||||
// filter: publicFormatter('workorder_status')
|
|
||||||
// // filter: (val) => ['未开始', '生产中', '已完成'][val],
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// prop: 'startTime',
|
|
||||||
// label: '开始时间',
|
|
||||||
// minWidth: 100,
|
|
||||||
// showOverflowtooltip: true
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// prop: 'endTime',
|
|
||||||
// label: '完成时间',
|
|
||||||
// minWidth: 100,
|
|
||||||
// showOverflowtooltip: true
|
|
||||||
// }
|
|
||||||
],
|
|
||||||
tableData: [],
|
tableData: [],
|
||||||
xAxis: [],
|
xAxis: [],
|
||||||
currentMenu:null,
|
// currentMenu:null,
|
||||||
lineData: {},
|
lineData: {},
|
||||||
data: {}
|
data: {}
|
||||||
// proLineList: [],
|
// proLineList: [],
|
||||||
// all: {}
|
// all: {}
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
watch: {
|
||||||
|
currentMenu() {
|
||||||
|
this.getDataList()
|
||||||
|
},
|
||||||
|
},
|
||||||
computed: {
|
computed: {
|
||||||
weekNum() {
|
weekNum() {
|
||||||
return Math.round((this.end - this.start) / (24 * 60 * 60 * 1000 * 7)) + 1
|
return Math.round((this.end - this.start) / (24 * 60 * 60 * 1000 * 7)) + 1
|
||||||
},
|
},
|
||||||
|
tableProps() {
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
prop: 'type',
|
||||||
|
label: '玻璃类型',
|
||||||
|
fixed: true,
|
||||||
|
// filter: (val) => factoryList[val],
|
||||||
|
// minWidth: 200,
|
||||||
|
// showOverflowtooltip: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'item',
|
||||||
|
label: '科目/日期',
|
||||||
|
fixed: true,
|
||||||
|
// filter: (val) => ['玻璃芯片', '标准组件', 'BIPV', '定制组件'][val]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'unit',
|
||||||
|
label: '单位',
|
||||||
|
fixed: true,
|
||||||
|
// filter: publicFormatter('workorder_status')
|
||||||
|
// filter: (val) => ['', '芯片工单', '组件类型', 'bipv类型'][val],
|
||||||
|
},
|
||||||
|
...this.otherProps
|
||||||
|
]
|
||||||
|
},
|
||||||
},
|
},
|
||||||
// created() {
|
// created() {
|
||||||
// const currentMonth = new Date()
|
// const currentMonth = new Date()
|
||||||
@@ -234,68 +197,71 @@ export default {
|
|||||||
// this.changeTime()
|
// this.changeTime()
|
||||||
// },
|
// },
|
||||||
mounted() {
|
mounted() {
|
||||||
|
this.tableH = this.tableHeight(269);
|
||||||
// this.getOverView()
|
// this.getOverView()
|
||||||
const currentMonth = new Date()
|
const today = new Date()
|
||||||
this.listQuery.reportTime = [moment(currentMonth).format('yyyy-MM-DD HH:mm:ss'), moment(currentMonth).format('yyyy-MM-DD HH:mm:ss')]
|
const sevenDaysAgo = new Date(today.getTime() - (7 * 24 * 60 * 60 * 1000))
|
||||||
this.changeTime()
|
this.listQuery.startDate = moment(sevenDaysAgo).format('yyyy-MM-DD')
|
||||||
|
this.listQuery.endDate = moment(today).format('yyyy-MM-DD')
|
||||||
|
this.listQuery.reportTime = [this.listQuery.startDate, this.listQuery.endDate]
|
||||||
this.getDataList()
|
this.getDataList()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
objectSpanMethod({ row, column, rowIndex, columnIndex }) {
|
||||||
|
let spanOneArr = [], concatOne = 0;
|
||||||
|
// let spanTwoArr = [], concatTwo = 0;
|
||||||
|
|
||||||
|
this.tableData.map((item, index) => {
|
||||||
|
// console.log(inde);
|
||||||
|
if (index === 0) {
|
||||||
|
spanOneArr.push(1);
|
||||||
|
} else {
|
||||||
|
//第一列需合并相同内容的判断条件
|
||||||
|
if (item.type === this.tableData[index - 1].type) {
|
||||||
|
spanOneArr[concatOne] += 1;
|
||||||
|
spanOneArr.push(0);
|
||||||
|
} else {
|
||||||
|
spanOneArr.push(1);
|
||||||
|
concatOne = index;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
if (columnIndex === 1) {
|
||||||
|
const _row = spanOneArr[rowIndex];
|
||||||
|
const _col = _row > 0 ? 1 : 0;
|
||||||
|
return {
|
||||||
|
rowspan: _row,
|
||||||
|
colspan: _col
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
getYear(e) {
|
getYear(e) {
|
||||||
if (this.end && Number(this.end) - Number(this.start) > 10) {
|
if (this.listQuery.end - this.listQuery.start > 10 * 365 * 24 * 60 * 60 * 1000) {
|
||||||
this.$message({
|
this.$message({
|
||||||
message: '年份起止时间不能超过十年',
|
message: '年份起止时间不能超过十年',
|
||||||
type: 'warning'
|
type: 'warning'
|
||||||
});
|
});
|
||||||
this.start = undefined
|
this.listQuery.reportTime = []
|
||||||
this.end = undefined
|
this.listQuery.start = undefined
|
||||||
|
this.listQuery.end = undefined
|
||||||
// console.log();
|
// console.log();
|
||||||
} else {
|
} else {
|
||||||
if (Number(this.end) < Number(this.start)) {
|
this.listQuery.startDate = this.listQuery.start
|
||||||
this.$message({
|
this.listQuery.endDate = this.listQuery.end
|
||||||
message: '结束年份不能小于开始年份',
|
|
||||||
type: 'warning'
|
|
||||||
});
|
|
||||||
this.start = undefined
|
|
||||||
this.end = undefined
|
|
||||||
} else {
|
|
||||||
this.listQuery.startDate = Number(this.start)
|
|
||||||
this.listQuery.endDate = Number(this.end)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
if (!this.start && !this.end) {
|
if (!this.listQuery.start && !this.listQuery.end) {
|
||||||
this.listQuery.startDate = undefined
|
this.listQuery.startDate = undefined
|
||||||
this.listQuery.endDate = undefined
|
this.listQuery.endDate = undefined
|
||||||
}
|
}
|
||||||
// console.log(e);
|
// console.log(e);
|
||||||
},
|
},
|
||||||
changeTime() {
|
|
||||||
if (this.listQuery.reportTime) {
|
|
||||||
console.log(this.listQuery.reportTime)
|
|
||||||
let start = new Date(this.listQuery.reportTime[0])
|
|
||||||
let end = new Date(this.listQuery.reportTime[1])
|
|
||||||
// const years = Number(this.listQuery.reportTime[1].slice(0, 4)) - Number(this.listQuery.reportTime[0].slice(0, 4))
|
|
||||||
// const months = Number(this.listQuery.reportTime[1].slice(4)) - Number(this.listQuery.reportTime[0].slice(4))
|
|
||||||
// console.log(years);
|
|
||||||
if ((end - start) > 31104000000) {
|
|
||||||
this.$message({
|
|
||||||
message: '时间范围不能超过24个月',
|
|
||||||
type: 'warning'
|
|
||||||
});
|
|
||||||
this.listQuery.reportTime = [];
|
|
||||||
} else {
|
|
||||||
this.listQuery.startDate = this.listQuery.reportTime[0]
|
|
||||||
this.listQuery.endDate = this.listQuery.reportTime[1]
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
this.listQuery.startDate = undefined
|
|
||||||
this.listQuery.endDate = undefined
|
|
||||||
}
|
|
||||||
},
|
|
||||||
onValueChange(picker, k) { // 选中近k周后触发的操作
|
onValueChange(picker, k) { // 选中近k周后触发的操作
|
||||||
if (this.start && this.end) {
|
// console.log(this.listQuery.reportTime[0], this.listQuery.reportTime[1])
|
||||||
this.date1 = moment(this.start.getTime() - 24 * 60 * 60 * 1000).format('YYYY-MM-DD HH:mm:ss')
|
if (this.listQuery.start && this.listQuery.end) {
|
||||||
this.date2 = moment(this.end.getTime() + 5 * 24 * 60 * 60 * 1000).format('YYYY-MM-DD HH:mm:ss')
|
console.log(this.listQuery.reportTime)
|
||||||
|
this.date1 = moment(this.listQuery.start.getTime() - 24 * 60 * 60 * 1000).format('YYYY-MM-DD HH:mm:ss')
|
||||||
|
this.date2 = moment(this.listQuery.end.getTime() + 5 * 24 * 60 * 60 * 1000).format('YYYY-MM-DD HH:mm:ss')
|
||||||
const numDays = (new Date(this.date2).getTime() - new Date(this.date1).getTime()) / (24 * 3600 * 1000);
|
const numDays = (new Date(this.date2).getTime() - new Date(this.date1).getTime()) / (24 * 3600 * 1000);
|
||||||
if (numDays > 168) {
|
if (numDays > 168) {
|
||||||
console.log(numDays)
|
console.log(numDays)
|
||||||
@@ -304,20 +270,21 @@ export default {
|
|||||||
type: 'warning'
|
type: 'warning'
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
this.listQuery.startDate = this.date1
|
this.listQuery.startDate = moment(this.listQuery.start.getTime() - 24 * 60 * 60 * 1000).format('YYYY-MM-DD')
|
||||||
this.listQuery.endDate = this.date2
|
this.listQuery.endDate = moment(this.listQuery.end.getTime() + 5 * 24 * 60 * 60 * 1000).format('YYYY-MM-DD')
|
||||||
// this.listQuery.startDate = Number(moment(this.start.getTime()).format('YYYYWW'))
|
|
||||||
// this.listQuery.endDate = Number(moment(this.end.getTime()).format('YYYYWW'))
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!this.start && !this.end) {
|
if (!this.listQuery.start && !this.listQuery.end) {
|
||||||
this.listQuery.startDate = undefined
|
this.listQuery.startDate = undefined
|
||||||
this.listQuery.endDate = undefined
|
this.listQuery.endDate = undefined
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
changeDayTime() {
|
changeDayTime() {
|
||||||
if (this.listQuery.reportTime) {
|
if (this.listQuery.reportTime) {
|
||||||
const numDays = Number(this.listQuery.reportTime[1]) - Number(this.listQuery.reportTime[0])
|
// this.createStartDate = moment(new Date(this.listQuery.reportTime[0]), 'yyyy-MM-dd hh:mm:ss');
|
||||||
|
// this.createEndDate = moment(new Date(this.listQuery.reportTime[1]), 'yyyy-MM-dd hh:mm:ss');
|
||||||
|
console.log(this.listQuery.reportTime[1])
|
||||||
|
const numDays = (this.listQuery.reportTime[1] - this.listQuery.reportTime[0]) / (24 * 3600 * 1000);
|
||||||
if (numDays > 30) {
|
if (numDays > 30) {
|
||||||
this.$message({
|
this.$message({
|
||||||
message: '时间范围不能超过30天',
|
message: '时间范围不能超过30天',
|
||||||
@@ -333,36 +300,212 @@ export default {
|
|||||||
this.listQuery.endDate = undefined
|
this.listQuery.endDate = undefined
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
getOverView() {
|
changeTime(value) {
|
||||||
// getOverView().then(res => {
|
if (this.listQuery.reportTime) {
|
||||||
// this.data = res.data
|
const numDays = this.listQuery.reportTime[1] - this.listQuery.reportTime[0];
|
||||||
// console.log('aa', res.data)
|
if (numDays > 2 * 365 * 24 * 60 * 60 * 1000) {
|
||||||
// })
|
this.$message({
|
||||||
},
|
message: '时间范围不能超过24个月',
|
||||||
otherMethods(val) {
|
type: 'warning'
|
||||||
this.detailOrUpdateVisible = true;
|
});
|
||||||
// this.addOrEditTitle = "详情";
|
this.listQuery.reportTime = [];
|
||||||
this.$nextTick(() => {
|
} else {
|
||||||
// this.$refs.detailOrUpdate.init(val.data.id);
|
this.listQuery.startDate = this.listQuery.reportTime[0]
|
||||||
});
|
this.listQuery.endDate = this.listQuery.reportTime[1]
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
this.listQuery.startDate = undefined
|
||||||
|
this.listQuery.endDate = undefined
|
||||||
|
}
|
||||||
},
|
},
|
||||||
async getDataList() {
|
async getDataList() {
|
||||||
console.log(this.listQuery);
|
if (!this.listQuery.startDate && !this.listQuery.endDate) {
|
||||||
if (this.listQuery.type == 3) {
|
return this.$message('请选择起止时间')
|
||||||
this.listQuery.startDate = this.listQuery.reportTime[0] + '-01-01 00:00:00'
|
|
||||||
this.listQuery.endDate = this.listQuery.reportTime[1] + '-12-31 23:59:59'
|
|
||||||
}
|
}
|
||||||
|
this.otherProps = []
|
||||||
let arr = []
|
let arr = []
|
||||||
this.currentMenu === '邯郸' ? arr.push(1) : arr.push(2)
|
this.currentMenu === '邯郸' ? arr.push(1) : arr.push(0)
|
||||||
this.listQuery.factory = arr
|
this.listQuery.factory = arr
|
||||||
const res = await getComprehensiveDataPage(this.listQuery)
|
const res = await getComprehensiveDataPage(this.listQuery)
|
||||||
this.tableData = res.data.list
|
// this.tableData = res.data.list
|
||||||
this.listQuery.total = res.data.total
|
let dataArr = [{
|
||||||
if (this.listQuery.total > 0) {
|
type: '芯片',
|
||||||
this.tableData.forEach(item => {
|
item: 'FTO投入',
|
||||||
item.startTime = item.startDate ? item.startDate[0] + '-' + item.startDate[1] + '-' + item.startDate[2] : '--'
|
unit: '片'
|
||||||
item.endTime = item.endDate ? item.endDate[0] + '-' + item.endDate[1] + '-' + item.endDate[2] : '--'
|
},
|
||||||
|
{
|
||||||
|
type: '芯片',
|
||||||
|
item: '芯片产量',
|
||||||
|
unit: '片'
|
||||||
|
}, {
|
||||||
|
type: '芯片',
|
||||||
|
item: '芯片平均功率',
|
||||||
|
unit: 'W'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: '芯片',
|
||||||
|
item: '芯片良率',
|
||||||
|
unit: '%'
|
||||||
|
}, {
|
||||||
|
type: '芯片',
|
||||||
|
item: '芯片产量',
|
||||||
|
unit: '片'
|
||||||
|
}, {
|
||||||
|
type: '芯片',
|
||||||
|
item: '芯片总功率',
|
||||||
|
unit: 'MW'
|
||||||
|
}, {
|
||||||
|
type: '芯片',
|
||||||
|
item: 'CSS稼动率',
|
||||||
|
unit: '%'
|
||||||
|
}, {
|
||||||
|
type: '芯片',
|
||||||
|
item: '芯片段OEE',
|
||||||
|
unit: '%'
|
||||||
|
}, {
|
||||||
|
type: '芯片',
|
||||||
|
item: '芯片产能利用率',
|
||||||
|
unit: '%'
|
||||||
|
}, {
|
||||||
|
type: '芯片',
|
||||||
|
item: '芯片人均产量',
|
||||||
|
unit: '片/人'
|
||||||
|
}, {
|
||||||
|
type: '芯片',
|
||||||
|
item: '芯片BOM',
|
||||||
|
unit: '元/片'
|
||||||
|
}, {
|
||||||
|
type: '标准组件',
|
||||||
|
item: '标准组件产量',
|
||||||
|
unit: '片'
|
||||||
|
}, {
|
||||||
|
type: '标准组件',
|
||||||
|
item: '标准组件平均功率',
|
||||||
|
unit: 'W'
|
||||||
|
}, {
|
||||||
|
type: '标准组件',
|
||||||
|
item: '标准组件良率',
|
||||||
|
unit: '%'
|
||||||
|
}, {
|
||||||
|
type: '标准组件',
|
||||||
|
item: '标准组件总功率',
|
||||||
|
unit: 'MW'
|
||||||
|
}, {
|
||||||
|
type: '标准组件',
|
||||||
|
item: '封装线OEE',
|
||||||
|
unit: '%'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: '标准组件',
|
||||||
|
item: '封装线产能利用率',
|
||||||
|
unit: '%'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: '标准组件',
|
||||||
|
item: '标准组件人均产量',
|
||||||
|
unit: '片/人'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: '标准组件',
|
||||||
|
item: '封装BOM',
|
||||||
|
unit: '元/片'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'BIPV',
|
||||||
|
item: '芯片使用量',
|
||||||
|
unit: '%'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'BIPV',
|
||||||
|
item: 'BIPV产量',
|
||||||
|
unit: 'm2'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'BIPV',
|
||||||
|
item: '芯片使用率',
|
||||||
|
unit: '%'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'BIPV',
|
||||||
|
item: '人均产量',
|
||||||
|
unit: 'm2/人'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'BIPV',
|
||||||
|
item: 'OEM及委外材料成本',
|
||||||
|
unit: '元/片'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'BIPV',
|
||||||
|
item: '内部材料成本',
|
||||||
|
unit: '元/片'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'BIPV',
|
||||||
|
item: '综合材料成本',
|
||||||
|
unit: '元/片'
|
||||||
|
},
|
||||||
|
]
|
||||||
|
res.data.forEach((ele, index) => {
|
||||||
|
let i = index + 1
|
||||||
|
// this.chartMsg.xData.push(ele.titleValue)
|
||||||
|
this.otherProps.push({
|
||||||
|
label: ele.titleValue,
|
||||||
|
prop: 'value' + i
|
||||||
})
|
})
|
||||||
|
})
|
||||||
|
console.log(this.otherProps)
|
||||||
|
res.data.forEach((item, index) => {
|
||||||
|
let i = index + 1
|
||||||
|
let m = 'value' + i
|
||||||
|
// ele.productYieldDataVOList.forEach((item) => {
|
||||||
|
dataArr[0]['' + m + ''] = item.ftoInput
|
||||||
|
// dataArr[0].factory = item.factory === 1 ? '邯郸' : '瑞昌'
|
||||||
|
// dataArr[1].factory = item.factory === 1 ? '邯郸' : '瑞昌'
|
||||||
|
// dataArr[2].factory = item.factory === 1 ? '邯郸' : '瑞昌'
|
||||||
|
// dataArr[3].factory = item.factory === 1 ? '邯郸' : '瑞昌'
|
||||||
|
dataArr[1]['' + m + ''] = item.chipYield
|
||||||
|
dataArr[2]['' + m + ''] = item.chipAveragePower
|
||||||
|
dataArr[4]['' + m + ''] = item.chipTotalPower
|
||||||
|
dataArr[5]['' + m + ''] = item.chipCssMarriageRate
|
||||||
|
dataArr[6]['' + m + ''] = item.chipOee
|
||||||
|
dataArr[7]['' + m + ''] = item.chipCapacityUtilizationRate
|
||||||
|
dataArr[8]['' + m + ''] = item.chipAnnualAverageProduction
|
||||||
|
dataArr[9]['' + m + ''] = item.chipBom
|
||||||
|
dataArr[10]['' + m + ''] = item.componentYield
|
||||||
|
dataArr[11]['' + m + ''] = item.componentAveragePower
|
||||||
|
dataArr[12]['' + m + ''] = item.componentYieldRate
|
||||||
|
dataArr[13]['' + m + ''] = item.componentTotalPower
|
||||||
|
dataArr[14]['' + m + ''] = item.componentOee
|
||||||
|
dataArr[15]['' + m + ''] = item.componentCapacityUtilizationRate
|
||||||
|
dataArr[16]['' + m + ''] = item.componentAnnualAverageProduction
|
||||||
|
dataArr[17]['' + m + ''] = item.componentBom
|
||||||
|
dataArr[18]['' + m + ''] = item.bipvChipUsage
|
||||||
|
dataArr[19]['' + m + ''] = item.bipvProductOutput
|
||||||
|
dataArr[20]['' + m + ''] = item.bipvChipUtilizationRate
|
||||||
|
dataArr[21]['' + m + ''] = item.bipvAnnualAverageProduction
|
||||||
|
dataArr[22]['' + m + ''] = item.bipvOeeMaterialCost
|
||||||
|
dataArr[23]['' + m + ''] = item.bipvInsideMaterialCost
|
||||||
|
dataArr[24]['' + m + ''] = item.bipvComprehensiveMaterialCost
|
||||||
|
|
||||||
|
// })
|
||||||
|
// ele.titleValue
|
||||||
|
// .push({
|
||||||
|
// label: ele.titleValue,
|
||||||
|
// props: 'value' + index + 1,
|
||||||
|
// })
|
||||||
|
})
|
||||||
|
console.log(dataArr);
|
||||||
|
if (res.data.length === 0) {
|
||||||
|
this.tableData = []
|
||||||
|
} else {
|
||||||
|
if (this.currentMenu != '瑞昌') {
|
||||||
|
this.tableData = dataArr
|
||||||
|
} else {
|
||||||
|
this.tableData = dataArr.filter(function (item) {
|
||||||
|
return item.type !== "BIPV"
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
buttonClick(val) {
|
buttonClick(val) {
|
||||||
@@ -392,6 +535,14 @@ export default {
|
|||||||
},
|
},
|
||||||
/** 导出按钮操作 */
|
/** 导出按钮操作 */
|
||||||
handleExport() {
|
handleExport() {
|
||||||
|
|
||||||
|
let fileName = "综合数据.xls";
|
||||||
|
exportComprehensiveDataPage(this.listQuery)
|
||||||
|
.then((response) => {
|
||||||
|
this.$download.excel(response, fileName);
|
||||||
|
this.$message.success("导出成功");
|
||||||
|
})
|
||||||
|
.catch(() => { });
|
||||||
// this.$modal.confirm('是否确认导出工单数据?').then(() => {
|
// this.$modal.confirm('是否确认导出工单数据?').then(() => {
|
||||||
// // 处理查询参数
|
// // 处理查询参数
|
||||||
// // let params = {...this.listQuery};
|
// // let params = {...this.listQuery};
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
<ButtonNav style="padding: 0;" :menus="['邯郸', '瑞昌']" :button-mode="true" @change="currentMenu = $event">
|
<ButtonNav style="padding: 0;" :menus="['邯郸', '瑞昌']" :button-mode="true" @change="currentMenu = $event">
|
||||||
</ButtonNav>
|
</ButtonNav>
|
||||||
<!-- </div> -->
|
<!-- </div> -->
|
||||||
<div class="containerTop">
|
<div class="search">
|
||||||
<el-form :model="listQuery" :inline="true" ref="dataForm" class="blueTip">
|
<el-form :model="listQuery" :inline="true" ref="dataForm" class="blueTip">
|
||||||
<el-form-item label="时间维度" prop="date">
|
<el-form-item label="时间维度" prop="date">
|
||||||
<el-select size="small" clearable v-model="listQuery.date" placeholder="请选择">
|
<el-select size="small" clearable v-model="listQuery.date" placeholder="请选择">
|
||||||
@@ -12,65 +12,80 @@
|
|||||||
</el-option>
|
</el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item v-show="listQuery.date === 0 || listQuery.type === ''" label="时间范围" prop="reportTime">
|
<el-form-item v-show="listQuery.date === 0 || listQuery.date === ''" label="时间范围" prop="reportTime">
|
||||||
<el-date-picker size="small" clearable v-model="listQuery.reportTime" type="daterange" range-separator="至"
|
<el-date-picker size="small" clearable v-model="listQuery.reportTime" type="datetimerange" range-separator="至"
|
||||||
start-placeholder="开始日期" value-format="yyyy-MM-dd HH:mm:ss" @change="changeDayTime" end-placeholder="结束日期">
|
start-placeholder="开始日期" value-format="yyyy-MM-dd" format="yyyy-MM-dd" @change="changeDayTime"
|
||||||
|
end-placeholder="结束日期">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item v-show="listQuery.date === 1" label="时间范围" prop="reportTime">
|
<el-form-item v-show="listQuery.date === 1" label="时间范围" prop="reportTime">
|
||||||
<el-date-picker size="small" clearable v-model="start" type="week" format="yyyy 第 WW 周" placeholder="选择周"
|
<el-date-picker size="small" clearable v-model="listQuery.start" type="week" format="yyyy 第 WW 周"
|
||||||
style="width: 180px" @change="onValueChange">
|
placeholder="选择周" style="width: 180px" @change="onValueChange" :picker-options="{'firstDayOfWeek': 1}">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
至
|
至
|
||||||
<el-date-picker size="small" clearable v-model="end" type="week" format="yyyy 第 WW 周" placeholder="选择周"
|
<el-date-picker size="small" clearable v-model="listQuery.end" type="week" format="yyyy 第 WW 周"
|
||||||
style="width: 180px" @change="onValueChange">
|
placeholder="选择周" style="width: 180px" @change="onValueChange" :picker-options="{'firstDayOfWeek': 1}">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
<!-- <span v-if="start && end" style="margin-left: 10px">
|
<!-- <span v-if="listQuery.start && listQuery.end" style="margin-left: 10px">
|
||||||
{{ date1 }} 至 {{ date2 }},共 {{ weekNum }} 周
|
{{ date1 }} 至 {{ date2 }},共 {{ weekNum }} 周
|
||||||
</span> -->
|
</span> -->
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item v-show="listQuery.date === 2" label="时间值" prop="reportTime">
|
<el-form-item v-show="listQuery.date === 2" label="时间范围" prop="reportTime">
|
||||||
<el-date-picker size="small" v-model="listQuery.reportTime" type="monthrange"
|
<el-date-picker size="small" clearable v-model="listQuery.reportTime" type="monthrange"
|
||||||
value-format="yyyy-MM-DD HH:mm:ss" range-separator="至" start-placeholder="开始月份" end-placeholder="结束月份"
|
value-format="yyyy-MM-dd" range-separator="至" start-placeholder="开始月份" end-placeholder="结束月份"
|
||||||
@change="changeTime">
|
@change="changeTime">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item v-show="listQuery.date === 3" label="时间值" prop="reportTime">
|
<el-form-item v-show="listQuery.date === 3" label="时间范围" prop="reportTime">
|
||||||
<el-date-picker size="small" clearable v-model="listQuery.reportTime[0]" value-format="yyyy" type="year"
|
<el-date-picker size="small" clearable v-model="listQuery.start" value-format="yyyy-MM-dd" type="year"
|
||||||
placeholder="开始时间">
|
placeholder="开始时间">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
~
|
~
|
||||||
<el-date-picker size="small" clearable v-model="listQuery.reportTime[1]" value-format="yyyy" type="year"
|
<el-date-picker size="small" clearable v-model="listQuery.end" value-format="yyyy-MM-dd" type="year"
|
||||||
placeholder="结束时间" @change="getYear">
|
placeholder="结束时间" @change="getYear">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<!-- <el-form-item label="玻璃类型" prop="type">
|
|
||||||
<el-select v-model="listQuery.type" placeholder="请选择玻璃类型">
|
|
||||||
<el-option v-for="item in typeList" :key="item.id" :label="item.name" :value="item.id">
|
|
||||||
</el-option>
|
|
||||||
</el-select>
|
|
||||||
</el-form-item> -->
|
|
||||||
<!-- <el-form-item label="玻璃类型" prop="type">
|
|
||||||
<el-select v-model="listQuery.type" placeholder="请选择玻璃类型">
|
|
||||||
<el-option v-for="item in typeList" :key="item.id" :label="item.name" :value="item.id">
|
|
||||||
</el-option>
|
|
||||||
</el-select>
|
|
||||||
</el-form-item> -->
|
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button type="primary" size="small" @click="getDataList">查询</el-button>
|
<el-button type="primary" size="small" @click="getDataList">查询</el-button>
|
||||||
<el-divider direction="vertical"></el-divider>
|
|
||||||
<!-- <el-button type="primary" size="small" plain @click="handleImport">导入</el-button> -->
|
|
||||||
<el-button type="primary" size="small" plain @click="handleExport">导出</el-button>
|
<el-button type="primary" size="small" plain @click="handleExport">导出</el-button>
|
||||||
<!-- <el-button type="success" size="small" plain @click="addFactory">新增</el-button> -->
|
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<!-- <div class="smallTitle">产量转化效率</div> -->
|
</div>
|
||||||
|
<div class="containerTop">
|
||||||
<!-- <bmSearchBar @getSearch="getSearch" @handleExport="handleExport" /> -->
|
<el-row v-if="listQuery.date === 2">
|
||||||
<bm-line-bar :chartHeight="chartHeight" :legendList="legendList" :chartMsg="chartMsg" :chartId="chartId"
|
<el-col :span="16">
|
||||||
:chartNum="chartNum" />
|
<div class="blueTip">
|
||||||
<base-table :table-props="tableProps" :page="listQuery.current" :limit="listQuery.size" :table-data="tableData"
|
产量转化效率
|
||||||
:max-height="tableH" />
|
</div>
|
||||||
|
<bm-line-bar :chartHeight="chartHeight" :legendList="legendList" :chartMsg="chartMsg" :chartId="chartId"
|
||||||
|
:chartNum="chartNum" />
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<div class="blueTip">
|
||||||
|
{{ title }}
|
||||||
|
</div>
|
||||||
|
<produce-line-bar-year-target :chartHeight="chartHeight" :legendList="legendListTarget"
|
||||||
|
:chartMsg="chartMsgYearTarget" :chartId=" 'yearData'" :chartNum="chartNum" />
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row v-else>
|
||||||
|
<!-- <el-col :span="24"> -->
|
||||||
|
<div class="blueTip">
|
||||||
|
产量转化效率
|
||||||
|
</div>
|
||||||
|
<bm-line-bar :chartHeight="chartHeight" :legendList="legendList" :chartMsg="chartMsg" :chartId="chartId"
|
||||||
|
:chartNum="chartNum" />
|
||||||
|
<!-- </el-col> -->
|
||||||
|
<!-- <el-col :span="8">
|
||||||
|
<div class="blueTip">
|
||||||
|
{{ title }}
|
||||||
|
</div>
|
||||||
|
<produce-line-bar-year-target :chartHeight="chartHeight" :legendList="legendList"
|
||||||
|
:chartMsg="chartMsgYearTarget" :chartId=" 'yearData'" :chartNum="chartNum" />
|
||||||
|
</el-col> -->
|
||||||
|
</el-row>
|
||||||
|
<base-table :key="showTable" :table-props="tableProps" :page="listQuery.current"
|
||||||
|
:limit="listQuery.size" :table-data="tableData" :max-height="tableH" />
|
||||||
</div>
|
</div>
|
||||||
<!-- <div class="containerBottom">
|
<!-- <div class="containerBottom">
|
||||||
|
|
||||||
@@ -79,60 +94,24 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import bmSearchBar from "./components/bmSearchBar.vue";
|
import { getProduceTransData, exportProduceTransData } from '@/api/report';
|
||||||
import BmLineBar from "./components/bmLineBar.vue";
|
import bmSearchBar from "./components/bmSearchBar";
|
||||||
|
import BmLineBar from "./components/produceLineBar.vue";
|
||||||
|
import produceLineBarYearTarget from "./components/produceLineYieldBarTarget.vue";
|
||||||
|
|
||||||
import ButtonNav from '@/components/ButtonNav'
|
import ButtonNav from '@/components/ButtonNav'
|
||||||
import moment from 'moment'
|
import moment from 'moment'
|
||||||
import { getProduceTransData } from '@/api/report';
|
|
||||||
const tableProps = [
|
|
||||||
{
|
|
||||||
prop: "factory",
|
|
||||||
label: "玻璃类型",
|
|
||||||
// filter: (val) => factoryList[val],
|
|
||||||
minWidth: 200,
|
|
||||||
showOverflowtooltip: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: "name",
|
|
||||||
label: "科目",
|
|
||||||
minWidth: 120,
|
|
||||||
showOverflowtooltip: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: "unit",
|
|
||||||
label: "单位",
|
|
||||||
minWidth: 80,
|
|
||||||
showOverflowtooltip: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: "time1",
|
|
||||||
label: "时间1",
|
|
||||||
minWidth: 150,
|
|
||||||
showOverflowtooltip: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: "time2",
|
|
||||||
label: "时间2",
|
|
||||||
minWidth: 150,
|
|
||||||
showOverflowtooltip: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: "mubiao",
|
|
||||||
label: "目标值",
|
|
||||||
minWidth: 150,
|
|
||||||
showOverflowtooltip: true,
|
|
||||||
},
|
|
||||||
];
|
|
||||||
export default {
|
export default {
|
||||||
name: "ChipYieldBM",
|
name: "ChipYieldBM",
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
tableProps,
|
otherProps: [],
|
||||||
start: undefined,
|
title: '',
|
||||||
end: undefined,
|
currentMenu: '邯郸',
|
||||||
|
showTable:false,
|
||||||
listQuery: {
|
listQuery: {
|
||||||
// size: 10,
|
start: undefined,
|
||||||
// current: 1,
|
end: undefined,
|
||||||
factorys: null,
|
factorys: null,
|
||||||
// total: 0,
|
// total: 0,
|
||||||
date: 2,
|
date: 2,
|
||||||
@@ -158,72 +137,80 @@ export default {
|
|||||||
label: '年'
|
label: '年'
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
tableData: [
|
tableData: [],
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
],
|
|
||||||
chartHeight: this.tableHeight(137) / 2 - 111,
|
chartHeight: this.tableHeight(137) / 2 - 111,
|
||||||
tableH: this.tableHeight(137) / 2 - 70,
|
tableH: this.tableHeight(137) / 2 - 70,
|
||||||
legendList: [
|
legendList: [
|
||||||
{ id: 1, name: "2024年4月目标值", type: 2, color: "#FFCE6A" },
|
{
|
||||||
{ id: 2, name: "2023年4月", type: 1, color: "#8EF0AB" },
|
id: 2, name: "芯片总功率", type: 1, color: "#8EF0AB"
|
||||||
{ id: 3, name: "2024年4月", type: 1, color: "#288AFF" },
|
},
|
||||||
|
{ id: 3, name: "标准组件总功率", type: 1, color: "#288AFF" },
|
||||||
|
{
|
||||||
|
id: 1, name: "转化效率", type: 2, color: "#FFCE6A"
|
||||||
|
},
|
||||||
|
// {
|
||||||
|
// id: 3, name: "", type: 1, color: "#288AFF"
|
||||||
|
// },
|
||||||
],
|
],
|
||||||
chartMsg: {
|
legendListTarget: [
|
||||||
color: ["#FFCE6A", "#8EF0AB", "#288AFF"],
|
|
||||||
xData: ["成都", "邯郸", "瑞昌"],
|
{
|
||||||
yName: "单位/%",
|
id: 2, name: "芯片总功率", type: 1, color: "#8EF0AB"
|
||||||
series: [
|
},
|
||||||
|
{
|
||||||
|
id: 3, name: "标准组件总功率", type: 1, color: "#288AFF"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 1, name: "转化效率", type: 1, color: "#64BDFF"
|
||||||
|
},
|
||||||
|
// {
|
||||||
|
// id: 3, name: "", type: 1, color: "#288AFF"
|
||||||
|
// },
|
||||||
|
],
|
||||||
|
chartMsgYearTarget: {
|
||||||
|
color: ["#8EF0AB", "#288AFF","#64BDFF",],
|
||||||
|
xData: ['芯片总功率', '标准组件总功率','转化效率'],
|
||||||
|
// yName: "单位/%",
|
||||||
|
yAxis: [
|
||||||
{
|
{
|
||||||
name: "2024年4月目标值",
|
type: "value",
|
||||||
data: [
|
name: "单位/MW",
|
||||||
{ name: "%", value: 85 },
|
// splitNumber: 5,
|
||||||
{ name: "%", value: 85 },
|
// min: function (value) {//取最小值向下取整为最小刻度
|
||||||
{ name: "%", value: 85 },
|
// return 0
|
||||||
],
|
// },
|
||||||
type: "line",
|
// max: function (value) {//取最大值向上取整为最大刻度
|
||||||
symbol: "circle",
|
// return Math.ceil(value.max)
|
||||||
symbolSize: 6,
|
// },
|
||||||
label: {
|
alignTicks: true,
|
||||||
show: true,
|
nameTextStyle: {
|
||||||
color: "#FFAE17",
|
fontSize: 12,
|
||||||
formatter: function (params) {
|
align: "right",
|
||||||
return params.value.toFixed(2) + "%";
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
|
axisLabel: {},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "2023年4月",
|
type: 'value',
|
||||||
data: [
|
alignTicks: true,
|
||||||
{ name: "%", value: 57.5 },
|
// min: 0,
|
||||||
{ name: "%", value: 21.66 },
|
// max: 100,
|
||||||
{ name: "%", value: 18.4 },
|
// scale: true,
|
||||||
],
|
// interval: 25,//间隔
|
||||||
|
// inverse: true,
|
||||||
|
// splitNumber: 5,
|
||||||
|
name: "单位/%",
|
||||||
|
nameTextStyle: {
|
||||||
|
fontSize: 12,
|
||||||
|
align: "right",
|
||||||
|
},
|
||||||
|
axisLabel: {},
|
||||||
|
}
|
||||||
|
],
|
||||||
|
series: [
|
||||||
|
{
|
||||||
|
name: "",
|
||||||
|
// yAxisIndex: 0,
|
||||||
|
data: [],
|
||||||
type: "bar",
|
type: "bar",
|
||||||
barWidth: 20,
|
barWidth: 20,
|
||||||
label: {
|
label: {
|
||||||
@@ -231,25 +218,114 @@ export default {
|
|||||||
position: [-18, -16],
|
position: [-18, -16],
|
||||||
color: "#68C483",
|
color: "#68C483",
|
||||||
formatter: function (params) {
|
formatter: function (params) {
|
||||||
return params.value.toFixed(2) + "%";
|
return params.value
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "2024年4月",
|
name: '',
|
||||||
|
type: 'bar',
|
||||||
|
data: [],
|
||||||
|
type: "bar",
|
||||||
|
barWidth: 20,
|
||||||
|
label: {
|
||||||
|
show: true,
|
||||||
|
position: [-18, -16],
|
||||||
|
color: "#68C483",
|
||||||
|
formatter: function (params) {
|
||||||
|
return params.value
|
||||||
|
},
|
||||||
|
},
|
||||||
|
yAxisIndex: 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
},
|
||||||
|
chartMsg: {
|
||||||
|
color: ["#8EF0AB", "#288AFF","#FFCE6A",],
|
||||||
|
xData: [],
|
||||||
|
yName: "",
|
||||||
|
yAxis: [
|
||||||
|
{
|
||||||
|
type: "value",
|
||||||
|
name: "单位/片",
|
||||||
|
// min: function (value) {//取最小值向下取整为最小刻度
|
||||||
|
// return 0
|
||||||
|
// },
|
||||||
|
// max: function (value) {//取最大值向上取整为最大刻度
|
||||||
|
// return Math.ceil(value.max)
|
||||||
|
// },
|
||||||
|
alignTicks: true,
|
||||||
|
// splitNumber: 5,
|
||||||
|
// scale: true,
|
||||||
|
nameTextStyle: {
|
||||||
|
fontSize: 12,
|
||||||
|
align: "right",
|
||||||
|
},
|
||||||
|
axisLabel: {},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'value',
|
||||||
|
// inverse: true,
|
||||||
|
name: "单位/%",
|
||||||
|
scale: true,
|
||||||
|
alignTicks: true,
|
||||||
|
// min: 0,
|
||||||
|
// max: 100,
|
||||||
|
// scale: true,
|
||||||
|
// interval: 25,//间隔
|
||||||
|
// splitNumber: 5,
|
||||||
|
nameTextStyle: {
|
||||||
|
fontSize: 12,
|
||||||
|
align: "right",
|
||||||
|
},
|
||||||
|
axisLabel: {},
|
||||||
|
}
|
||||||
|
],
|
||||||
|
series: [
|
||||||
|
{
|
||||||
|
name: "芯片总功率",
|
||||||
data: [
|
data: [
|
||||||
{ name: "%", value: 23.33 },
|
|
||||||
{ name: "%", value: 7.02 },
|
|
||||||
{ name: "%", value: 80.2 },
|
|
||||||
],
|
],
|
||||||
type: "bar",
|
type: "bar",
|
||||||
barWidth: 20,
|
barWidth: 20,
|
||||||
label: {
|
label: {
|
||||||
show: true,
|
show: true,
|
||||||
position: [0, -16],
|
position: [-50, -16],
|
||||||
|
color: "#68C483",
|
||||||
|
formatter: function (params) {
|
||||||
|
return params.value.toFixed(2)
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "标准组件总功率",
|
||||||
|
data: [
|
||||||
|
],
|
||||||
|
type: "bar",
|
||||||
|
barWidth: 20,
|
||||||
|
label: {
|
||||||
|
show: true,
|
||||||
|
position: [10, -16],
|
||||||
color: "#288AFF",
|
color: "#288AFF",
|
||||||
formatter: function (params) {
|
formatter: function (params) {
|
||||||
return params.value.toFixed(2) + "%";
|
return params.value.toFixed(2)
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "转化效率",
|
||||||
|
data: [
|
||||||
|
],
|
||||||
|
type: "line",
|
||||||
|
symbol: "circle",
|
||||||
|
// barWidth: 20,
|
||||||
|
symbolSize: 6,
|
||||||
|
yAxisIndex: 1,
|
||||||
|
label: {
|
||||||
|
show: true,
|
||||||
|
color: "#FFAE17",
|
||||||
|
formatter: function (params) {
|
||||||
|
return params.value.toFixed(2)
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@@ -262,9 +338,28 @@ export default {
|
|||||||
components: {
|
components: {
|
||||||
bmSearchBar,
|
bmSearchBar,
|
||||||
BmLineBar,
|
BmLineBar,
|
||||||
|
produceLineBarYearTarget,
|
||||||
ButtonNav
|
ButtonNav
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
|
tableProps() {
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
prop: "item",
|
||||||
|
label: "科目",
|
||||||
|
// filter: (val) => factoryList[val],
|
||||||
|
minWidth: 200,
|
||||||
|
showOverflowtooltip: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: "unit",
|
||||||
|
label: "单位",
|
||||||
|
minWidth: 120,
|
||||||
|
showOverflowtooltip: true,
|
||||||
|
},
|
||||||
|
...this.otherProps
|
||||||
|
]
|
||||||
|
},
|
||||||
weekNum() {
|
weekNum() {
|
||||||
return Math.round((this.end - this.start) / (24 * 60 * 60 * 1000 * 7)) + 1
|
return Math.round((this.end - this.start) / (24 * 60 * 60 * 1000 * 7)) + 1
|
||||||
},
|
},
|
||||||
@@ -274,8 +369,11 @@ export default {
|
|||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
// 监听左侧菜单栏是否展开
|
// 监听左侧菜单栏是否展开
|
||||||
|
currentMenu() {
|
||||||
|
this.getDataList()
|
||||||
|
},
|
||||||
isOpen(val) {
|
isOpen(val) {
|
||||||
if (this.$route.name === "ChipYieldBM") {
|
if (this.$route.name === "produceConversion") {
|
||||||
this.chartNum++;
|
this.chartNum++;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -290,73 +388,75 @@ export default {
|
|||||||
},
|
},
|
||||||
activated() {
|
activated() {
|
||||||
// 图重新加载,为了防止窗口变化后尺寸图显示不佳,数据不更新
|
// 图重新加载,为了防止窗口变化后尺寸图显示不佳,数据不更新
|
||||||
if (this.$route.name === "ChipYieldBM") {
|
if (this.$route.name === "produceConversion") {
|
||||||
this.chartNum++;
|
this.chartNum++;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
// this.getOverView()
|
// this.getOverView()
|
||||||
const currentMonth = new Date()
|
const today = new Date()
|
||||||
this.listQuery.reportTime = [moment(currentMonth).format('yyyy-MM-DD HH:mm:ss'), moment(currentMonth).format('yyyy-MM-DD HH:mm:ss')]
|
const sevenDaysAgo = new Date(today.getTime() - (7 * 24 * 60 * 60 * 1000))
|
||||||
this.changeTime()
|
this.listQuery.beginTime = moment(sevenDaysAgo).format('yyyy-MM-DD')
|
||||||
|
this.listQuery.endTime = moment(today).format('yyyy-MM-DD')
|
||||||
|
this.listQuery.reportTime = [this.listQuery.beginTime, this.listQuery.endTime]
|
||||||
this.getDataList()
|
this.getDataList()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
objectSpanMethod({ row, column, rowIndex, columnIndex }) {
|
||||||
|
let spanOneArr = [], concatOne = 0;
|
||||||
|
// let spanTwoArr = [], concatTwo = 0;
|
||||||
|
|
||||||
|
this.tableData.map((item, index) => {
|
||||||
|
// console.log(inde);
|
||||||
|
if (index === 0) {
|
||||||
|
spanOneArr.push(1);
|
||||||
|
} else {
|
||||||
|
//第一列需合并相同内容的判断条件
|
||||||
|
if (item.factory === this.tableData[index - 1].factory) {
|
||||||
|
spanOneArr[concatOne] += 1;
|
||||||
|
spanOneArr.push(0);
|
||||||
|
} else {
|
||||||
|
spanOneArr.push(1);
|
||||||
|
concatOne = index;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
if (columnIndex === 0) {
|
||||||
|
const _row = spanOneArr[rowIndex];
|
||||||
|
const _col = _row > 0 ? 1 : 0;
|
||||||
|
return {
|
||||||
|
rowspan: _row,
|
||||||
|
colspan: _col
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
getYear(e) {
|
getYear(e) {
|
||||||
if (this.end && Number(this.end) - Number(this.start) > 10) {
|
if (this.listQuery.end - this.listQuery.start > 10 * 365 * 24 * 60 * 60 * 1000) {
|
||||||
this.$message({
|
this.$message({
|
||||||
message: '年份起止时间不能超过十年',
|
message: '年份起止时间不能超过十年',
|
||||||
type: 'warning'
|
type: 'warning'
|
||||||
});
|
});
|
||||||
this.start = undefined
|
this.listQuery.reportTime = []
|
||||||
this.end = undefined
|
this.listQuery.start = undefined
|
||||||
|
this.listQuery.end = undefined
|
||||||
// console.log();
|
// console.log();
|
||||||
} else {
|
} else {
|
||||||
if (Number(this.end) < Number(this.start)) {
|
this.listQuery.beginTime = this.listQuery.start
|
||||||
this.$message({
|
this.listQuery.endTime = this.listQuery.end
|
||||||
message: '结束年份不能小于开始年份',
|
|
||||||
type: 'warning'
|
|
||||||
});
|
|
||||||
this.start = undefined
|
|
||||||
this.end = undefined
|
|
||||||
} else {
|
|
||||||
this.listQuery.beginTime = Number(this.start)
|
|
||||||
this.listQuery.endTime = Number(this.end)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
if (!this.start && !this.end) {
|
if (!this.listQuery.start && !this.listQuery.end) {
|
||||||
this.listQuery.beginTime = undefined
|
this.listQuery.beginTime = undefined
|
||||||
this.listQuery.endTime = undefined
|
this.listQuery.endTime = undefined
|
||||||
}
|
}
|
||||||
// console.log(e);
|
// console.log(e);
|
||||||
},
|
},
|
||||||
changeTime() {
|
|
||||||
if (this.listQuery.reportTime) {
|
|
||||||
console.log(this.listQuery.reportTime)
|
|
||||||
let start = new Date(this.listQuery.reportTime[0])
|
|
||||||
let end = new Date(this.listQuery.reportTime[1])
|
|
||||||
// const years = Number(this.listQuery.reportTime[1].slice(0, 4)) - Number(this.listQuery.reportTime[0].slice(0, 4))
|
|
||||||
// const months = Number(this.listQuery.reportTime[1].slice(4)) - Number(this.listQuery.reportTime[0].slice(4))
|
|
||||||
// console.log(years);
|
|
||||||
if ((end - start) > 31104000000) {
|
|
||||||
this.$message({
|
|
||||||
message: '时间范围不能超过24个月',
|
|
||||||
type: 'warning'
|
|
||||||
});
|
|
||||||
this.listQuery.reportTime = [];
|
|
||||||
} else {
|
|
||||||
this.listQuery.beginTime = this.listQuery.reportTime[0]
|
|
||||||
this.listQuery.endTime = this.listQuery.reportTime[1]
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
this.listQuery.beginTime = undefined
|
|
||||||
this.listQuery.endTime = undefined
|
|
||||||
}
|
|
||||||
},
|
|
||||||
onValueChange(picker, k) { // 选中近k周后触发的操作
|
onValueChange(picker, k) { // 选中近k周后触发的操作
|
||||||
if (this.start && this.end) {
|
// console.log(this.listQuery.reportTime[0], this.listQuery.reportTime[1])
|
||||||
this.date1 = moment(this.start.getTime() - 24 * 60 * 60 * 1000).format('YYYY-MM-DD HH:mm:ss')
|
if (this.listQuery.start && this.listQuery.end) {
|
||||||
this.date2 = moment(this.end.getTime() + 5 * 24 * 60 * 60 * 1000).format('YYYY-MM-DD HH:mm:ss')
|
console.log(this.listQuery.reportTime)
|
||||||
|
this.date1 = moment(this.listQuery.start.getTime() - 24 * 60 * 60 * 1000).format('YYYY-MM-DD HH:mm:ss')
|
||||||
|
this.date2 = moment(this.listQuery.end.getTime() + 5 * 24 * 60 * 60 * 1000).format('YYYY-MM-DD HH:mm:ss')
|
||||||
const numDays = (new Date(this.date2).getTime() - new Date(this.date1).getTime()) / (24 * 3600 * 1000);
|
const numDays = (new Date(this.date2).getTime() - new Date(this.date1).getTime()) / (24 * 3600 * 1000);
|
||||||
if (numDays > 168) {
|
if (numDays > 168) {
|
||||||
console.log(numDays)
|
console.log(numDays)
|
||||||
@@ -365,20 +465,21 @@ export default {
|
|||||||
type: 'warning'
|
type: 'warning'
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
this.listQuery.beginTime = this.date1
|
this.listQuery.beginTime = moment(this.listQuery.start.getTime() - 24 * 60 * 60 * 1000).format('YYYY-MM-DD')
|
||||||
this.listQuery.endTime = this.date2
|
this.listQuery.endTime = moment(this.listQuery.end.getTime() + 5 * 24 * 60 * 60 * 1000).format('YYYY-MM-DD')
|
||||||
// this.listQuery.beginTime = Number(moment(this.start.getTime()).format('YYYYWW'))
|
|
||||||
// this.listQuery.endTime = Number(moment(this.end.getTime()).format('YYYYWW'))
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!this.start && !this.end) {
|
if (!this.listQuery.start && !this.listQuery.end) {
|
||||||
this.listQuery.beginTime = undefined
|
this.listQuery.beginTime = undefined
|
||||||
this.listQuery.endTime = undefined
|
this.listQuery.endTime = undefined
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
changeDayTime() {
|
changeDayTime() {
|
||||||
if (this.listQuery.reportTime) {
|
if (this.listQuery.reportTime) {
|
||||||
const numDays = Number(this.listQuery.reportTime[1]) - Number(this.listQuery.reportTime[0])
|
// this.createbeginTime = moment(new Date(this.listQuery.reportTime[0]), 'yyyy-MM-dd hh:mm:ss');
|
||||||
|
// this.createendTime = moment(new Date(this.listQuery.reportTime[1]), 'yyyy-MM-dd hh:mm:ss');
|
||||||
|
console.log(this.listQuery.reportTime[1])
|
||||||
|
const numDays = (this.listQuery.reportTime[1] - this.listQuery.reportTime[0]) / (24 * 3600 * 1000);
|
||||||
if (numDays > 30) {
|
if (numDays > 30) {
|
||||||
this.$message({
|
this.$message({
|
||||||
message: '时间范围不能超过30天',
|
message: '时间范围不能超过30天',
|
||||||
@@ -394,42 +495,198 @@ export default {
|
|||||||
this.listQuery.endTime = undefined
|
this.listQuery.endTime = undefined
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
getOverView() {
|
changeTime(value) {
|
||||||
// getOverView().then(res => {
|
if (this.listQuery.reportTime) {
|
||||||
// this.data = res.data
|
const numDays = this.listQuery.reportTime[1] - this.listQuery.reportTime[0];
|
||||||
// console.log('aa', res.data)
|
if (numDays > 2 * 365 * 24 * 60 * 60 * 1000) {
|
||||||
// })
|
this.$message({
|
||||||
},
|
message: '时间范围不能超过24个月',
|
||||||
otherMethods(val) {
|
type: 'warning'
|
||||||
this.detailOrUpdateVisible = true;
|
});
|
||||||
// this.addOrEditTitle = "详情";
|
this.listQuery.reportTime = [];
|
||||||
this.$nextTick(() => {
|
} else {
|
||||||
// this.$refs.detailOrUpdate.init(val.data.id);
|
this.listQuery.beginTime = this.listQuery.reportTime[0]
|
||||||
});
|
this.listQuery.endTime = this.listQuery.reportTime[1]
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
this.listQuery.beginTime = undefined
|
||||||
|
this.listQuery.endTime = undefined
|
||||||
|
}
|
||||||
},
|
},
|
||||||
async getDataList() {
|
async getDataList() {
|
||||||
|
this.otherProps = []
|
||||||
|
this.chartMsg.xData = []
|
||||||
|
this.chartMsg.series[0].data = []
|
||||||
|
this.chartMsg.series[1].data = []
|
||||||
|
this.chartMsg.series[2].data = []
|
||||||
|
this.chartMsgYearTarget.series[0].data = []
|
||||||
|
this.chartMsgYearTarget.series[1].data = []
|
||||||
|
this.title = ''
|
||||||
|
if (!this.listQuery.beginTime && !this.listQuery.endTime) {
|
||||||
|
return this.$message('请选择起止时间')
|
||||||
|
}
|
||||||
console.log(this.listQuery);
|
console.log(this.listQuery);
|
||||||
if (this.listQuery.date == 3) {
|
if (this.listQuery.type == 3) {
|
||||||
this.listQuery.beginTime = this.listQuery.reportTime[0] + '-01-01 00:00:00'
|
this.listQuery.beginTime = this.listQuery.reportTime[0]
|
||||||
this.listQuery.endTime = this.listQuery.reportTime[1] + '-12-31 23:59:59'
|
this.listQuery.endTime = this.listQuery.reportTime[1]
|
||||||
}
|
}
|
||||||
let arr = []
|
let arr = []
|
||||||
this.currentMenu === '邯郸' ? arr.push(1) : arr.push(2)
|
this.currentMenu === '邯郸' ? arr.push(1) : arr.push(0)
|
||||||
this.listQuery.factorys = arr
|
this.listQuery.factorys = arr
|
||||||
const res = await getProduceTransData(this.listQuery)
|
const res = await getProduceTransData(this.listQuery)
|
||||||
this.tableData = res.data.list
|
let dataArr = [{
|
||||||
this.listQuery.total = res.data.total
|
factory: null,
|
||||||
if (this.listQuery.total > 0) {
|
item: '芯片总功率',
|
||||||
this.tableData.forEach(item => {
|
unit: 'MW'
|
||||||
item.startTime = item.beginTime ? item.beginTime[0] + '-' + item.beginTime[1] + '-' + item.beginTime[2] : '--'
|
},
|
||||||
item.endTime = item.endTime ? item.endTime[0] + '-' + item.endTime[1] + '-' + item.endTime[2] : '--'
|
{
|
||||||
})
|
factory: null,
|
||||||
|
item: '标准组件总功率',
|
||||||
|
unit: 'MW'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
factory: null,
|
||||||
|
item: '转化效率',
|
||||||
|
unit: '%'
|
||||||
}
|
}
|
||||||
|
]
|
||||||
|
res.data.forEach(element => {
|
||||||
|
element.list.reverse().forEach((ele, index) => {
|
||||||
|
let i = index + 1
|
||||||
|
this.chartMsg.xData.push(ele.reportTimep)
|
||||||
|
this.otherProps.push({
|
||||||
|
label: ele.reportTimep,
|
||||||
|
prop: 'value' + i
|
||||||
|
})
|
||||||
|
})
|
||||||
|
})
|
||||||
|
if (res.data[0].list.length != 0) {
|
||||||
|
this.chartMsg.xData.push(res.data[0].list[0].reportTimep + '目标')
|
||||||
|
if (this.listQuery.date === 0 || this.listQuery.date === 1 || this.listQuery.date === 2) {
|
||||||
|
this.otherProps.push({
|
||||||
|
label: res.data[0].list[0].reportTimep + '目标',
|
||||||
|
prop: 'dayData'
|
||||||
|
})
|
||||||
|
dataArr[0]['dayData'] = res.data[0].list[0].chipTarget
|
||||||
|
dataArr[1]['dayData'] = res.data[0].list[0].standTarget
|
||||||
|
dataArr[2]['dayData'] = res.data[0].list[0].conversionEfficiencyTarget
|
||||||
|
}
|
||||||
|
if (this.listQuery.date === 2 || this.listQuery.date === 3) {
|
||||||
|
this.otherProps.push({
|
||||||
|
label: res.data[0].yearTarget.targetTime,
|
||||||
|
prop: 'yearData'
|
||||||
|
})
|
||||||
|
dataArr[0]['yearData'] = res.data[0].yearTarget.chipTotalPower
|
||||||
|
dataArr[1]['yearData'] = res.data[0].yearTarget.componentTotalPower
|
||||||
|
dataArr[2]['yearData'] = res.data[0].yearTarget.componentConversionEfficiency
|
||||||
|
}
|
||||||
|
res.data.forEach((ele, index) => {
|
||||||
|
// let i = index + 1
|
||||||
|
// let m = 'value' + i
|
||||||
|
ele.list.forEach((item, index) => {
|
||||||
|
let i = index + 1
|
||||||
|
let m = 'value' + i
|
||||||
|
// ele.productionSituationDataVOList.forEach((item) => {
|
||||||
|
dataArr[0]['' + m + ''] = item.chipTotalPowers
|
||||||
|
dataArr[1]['' + m + ''] = item.scTotalPowers
|
||||||
|
dataArr[2]['' + m + ''] = item.conversionEfficiency
|
||||||
|
|
||||||
|
// dataArr[3]['' + m + ''] = ele.comprehensiveYieldRate
|
||||||
|
// })
|
||||||
|
// ele.titleValue
|
||||||
|
// .push({
|
||||||
|
// label: ele.titleValue,
|
||||||
|
// props: 'value' + index + 1,
|
||||||
|
// })
|
||||||
|
})
|
||||||
|
})
|
||||||
|
this.title = res.data[0].yearTarget.targetTime ? res.data[0].yearTarget.targetTime + '目标值' : ''
|
||||||
|
this.chartMsgYearTarget.series[0].data = [
|
||||||
|
{
|
||||||
|
value: res.data[0].yearTarget.chipTotalPower,
|
||||||
|
itemStyle: {
|
||||||
|
color: '#8EF0AB'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: res.data[0].yearTarget.componentTotalPower,
|
||||||
|
itemStyle: {
|
||||||
|
color: '#288AFF'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: null,
|
||||||
|
itemStyle: {
|
||||||
|
color: '#64BDFF'
|
||||||
|
}
|
||||||
|
}]
|
||||||
|
this.chartMsgYearTarget.series[1].data = [
|
||||||
|
{
|
||||||
|
value: null,
|
||||||
|
itemStyle: {
|
||||||
|
color: '#8EF0AB'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: null,
|
||||||
|
itemStyle: {
|
||||||
|
color: '#288AFF'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: res.data[0].yearTarget.componentConversionEfficiency,
|
||||||
|
itemStyle: {
|
||||||
|
color: '#64BDFF'
|
||||||
|
}
|
||||||
|
}]
|
||||||
|
console.log(dataArr);
|
||||||
|
for (let i in dataArr[0]) {
|
||||||
|
this.chartMsg.series[0].name = dataArr[0]['item']
|
||||||
|
if (i.search('value') === 0) {
|
||||||
|
this.chartMsg.series[0].data.push({
|
||||||
|
name: dataArr[0]['item'],
|
||||||
|
value: dataArr[0][i] === 0 ? null : dataArr[0][i]
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for (let i in dataArr[1]) {
|
||||||
|
this.chartMsg.series[1].name = dataArr[1]['item']
|
||||||
|
if (i.search('value') === 0) {
|
||||||
|
this.chartMsg.series[1].data.push({
|
||||||
|
name: dataArr[1]['item'],
|
||||||
|
value: dataArr[1][i] === 0 ? null : dataArr[1][i]
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for (let i in dataArr[2]) {
|
||||||
|
this.chartMsg.series[2].name = dataArr[2]['item']
|
||||||
|
if (i.search('value') === 0) {
|
||||||
|
this.chartMsg.series[2].data.push({
|
||||||
|
name: dataArr[2]['item'],
|
||||||
|
value: dataArr[2][i] === 0 ? null : dataArr[2][i]
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
this.chartMsgYearTarget.series[0].data = []
|
||||||
|
this.chartMsgYearTarget.series[1].data = []
|
||||||
|
}
|
||||||
|
// for (let i in dataArr[3]) {
|
||||||
|
// this.chartMsg.series[3].name = dataArr[3]['item']
|
||||||
|
// if (i.search('value') === 0) {
|
||||||
|
// this.chartMsg.series[3].data.push({
|
||||||
|
// name: dataArr[3]['item'],
|
||||||
|
// name: dataArr[3][i]
|
||||||
|
// })
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
this.tableData = res.data[0].list.length !== 0 ? dataArr : []
|
||||||
|
this.showTable = !this.showTable
|
||||||
},
|
},
|
||||||
_setTableHeight() {
|
_setTableHeight() {
|
||||||
this.tableH = this.tableHeight(137) / 2 - 70;
|
this.tableH = this.tableHeight(137) / 2 - 70;
|
||||||
this.chartHeight = this.tableHeight(137) / 2 - 111;
|
this.chartHeight = this.tableHeight(137) / 2 - 111;
|
||||||
if (this.$route.name === "ChipYieldBM") {
|
if (this.$route.name === "produceConversion") {
|
||||||
this.chartNum++;
|
this.chartNum++;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -438,6 +695,13 @@ export default {
|
|||||||
console.log("=========================");
|
console.log("=========================");
|
||||||
},
|
},
|
||||||
handleExport() {
|
handleExport() {
|
||||||
|
let fileName = "产量转化效率.xls";
|
||||||
|
exportProduceTransData(this.listQuery)
|
||||||
|
.then((response) => {
|
||||||
|
this.$download.excel(response, fileName);
|
||||||
|
this.$message.success("导出成功");
|
||||||
|
})
|
||||||
|
.catch(() => { });
|
||||||
console.log("导出");
|
console.log("导出");
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@@ -450,9 +714,10 @@ export default {
|
|||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
padding: 16px 16px 0 16px;
|
padding: 16px 16px 0 16px;
|
||||||
margin-bottom: 8px;
|
margin: 8px 0px;
|
||||||
}
|
}
|
||||||
.containerTop{
|
|
||||||
|
.containerTop {
|
||||||
height: calc((100vh - 170px));
|
height: calc((100vh - 170px));
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
@@ -469,6 +734,7 @@ export default {
|
|||||||
margin-right: 8PX;
|
margin-right: 8PX;
|
||||||
margin-top: 8px;
|
margin-top: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.containerTop {
|
.containerTop {
|
||||||
margin-top: 8px;
|
margin-top: 8px;
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -4,73 +4,88 @@
|
|||||||
<ButtonNav style="padding: 0;" :menus="['邯郸', '瑞昌']" :button-mode="true" @change="currentMenu = $event">
|
<ButtonNav style="padding: 0;" :menus="['邯郸', '瑞昌']" :button-mode="true" @change="currentMenu = $event">
|
||||||
</ButtonNav>
|
</ButtonNav>
|
||||||
<!-- </div> -->
|
<!-- </div> -->
|
||||||
<div class="containerTop">
|
<div class="search">
|
||||||
<el-form :model="listQuery" :inline="true" ref="dataForm" class="blueTip">
|
<el-form :model="listQuery" :inline="true" ref="dataForm" class="blueTip">
|
||||||
<el-form-item label="时间维度" prop="date">
|
<el-form-item label="时间维度" prop="type">
|
||||||
<el-select size="small" clearable v-model="listQuery.type" placeholder="请选择">
|
<el-select size="small" clearable v-model="listQuery.type" placeholder="请选择">
|
||||||
<el-option v-for="item in timeList" :key="item.value" :label="item.label" :value="item.value">
|
<el-option v-for="item in timeList" :key="item.value" :label="item.label" :value="item.value">
|
||||||
</el-option>
|
</el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item v-show="listQuery.type === 0 || listQuery.type === ''" label="时间范围" prop="reportTime">
|
<el-form-item v-show="listQuery.type === 0 || listQuery.type === ''" label="时间范围" prop="reportTime">
|
||||||
<el-date-picker size="small" clearable v-model="listQuery.reportTime" type="daterange" range-separator="至"
|
<el-date-picker size="small" clearable v-model="listQuery.reportTime" type="datetimerange" range-separator="至"
|
||||||
start-placeholder="开始日期" value-format="yyyy-MM-dd HH:mm:ss" @change="changeDayTime" end-placeholder="结束日期">
|
start-placeholder="开始日期" value-format="yyyy-MM-dd" format="yyyy-MM-dd" @change="changeDayTime"
|
||||||
|
end-placeholder="结束日期">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item v-show="listQuery.type === 1" label="时间范围" prop="reportTime">
|
<el-form-item v-show="listQuery.type === 1" label="时间范围" prop="reportTime">
|
||||||
<el-date-picker size="small" clearable v-model="start" type="week" format="yyyy 第 WW 周" placeholder="选择周"
|
<el-date-picker size="small" clearable v-model="listQuery.start" type="week" format="yyyy 第 WW 周"
|
||||||
style="width: 180px" @change="onValueChange">
|
placeholder="选择周" style="width: 180px" @change="onValueChange" :picker-options="{'firstDayOfWeek': 1}">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
至
|
至
|
||||||
<el-date-picker size="small" clearable v-model="end" type="week" format="yyyy 第 WW 周" placeholder="选择周"
|
<el-date-picker size="small" clearable v-model="listQuery.end" type="week" format="yyyy 第 WW 周"
|
||||||
style="width: 180px" @change="onValueChange">
|
placeholder="选择周" style="width: 180px" @change="onValueChange" :picker-options="{'firstDayOfWeek': 1}">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
<!-- <span v-if="start && end" style="margin-left: 10px">
|
<!-- <span v-if="listQuery.start && listQuery.end" style="margin-left: 10px">
|
||||||
{{ date1 }} 至 {{ date2 }},共 {{ weekNum }} 周
|
{{ date1 }} 至 {{ date2 }},共 {{ weekNum }} 周
|
||||||
</span> -->
|
</span> -->
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item v-show="listQuery.type === 2" label="时间值" prop="reportTime">
|
<el-form-item v-show="listQuery.type === 2" label="时间范围" prop="reportTime">
|
||||||
<el-date-picker size="small" v-model="listQuery.reportTime" type="monthrange"
|
<el-date-picker size="small" clearable v-model="listQuery.reportTime" type="monthrange"
|
||||||
value-format="yyyy-MM-DD HH:mm:ss" range-separator="至" start-placeholder="开始月份" end-placeholder="结束月份"
|
value-format="yyyy-MM-dd" range-separator="至" start-placeholder="开始月份" end-placeholder="结束月份"
|
||||||
@change="changeTime">
|
@change="changeTime">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item v-show="listQuery.type === 3" label="时间值" prop="reportTime">
|
<el-form-item v-show="listQuery.type === 3" label="时间范围" prop="reportTime">
|
||||||
<el-date-picker size="small" clearable v-model="listQuery.reportTime[0]" value-format="yyyy" type="year"
|
<el-date-picker size="small" clearable v-model="listQuery.start" value-format="yyyy-MM-dd" type="year"
|
||||||
placeholder="开始时间">
|
placeholder="开始时间">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
~
|
~
|
||||||
<el-date-picker size="small" clearable v-model="listQuery.reportTime[1]" value-format="yyyy" type="year"
|
<el-date-picker size="small" clearable v-model="listQuery.end" value-format="yyyy-MM-dd" type="year"
|
||||||
placeholder="结束时间" @change="getYear">
|
placeholder="结束时间" @change="getYear">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<!-- <el-form-item label="玻璃类型" prop="type">
|
|
||||||
<el-select v-model="listQuery.type" placeholder="请选择玻璃类型">
|
|
||||||
<el-option v-for="item in typeList" :key="item.id" :label="item.name" :value="item.id">
|
|
||||||
</el-option>
|
|
||||||
</el-select>
|
|
||||||
</el-form-item> -->
|
|
||||||
<!-- <el-form-item label="玻璃类型" prop="type">
|
|
||||||
<el-select v-model="listQuery.type" placeholder="请选择玻璃类型">
|
|
||||||
<el-option v-for="item in typeList" :key="item.id" :label="item.name" :value="item.id">
|
|
||||||
</el-option>
|
|
||||||
</el-select>
|
|
||||||
</el-form-item> -->
|
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button type="primary" size="small" @click="getDataList">查询</el-button>
|
<el-button type="primary" size="small" @click="getDataList">查询</el-button>
|
||||||
<el-divider direction="vertical"></el-divider>
|
|
||||||
<!-- <el-button type="primary" size="small" plain @click="handleImport">导入</el-button> -->
|
|
||||||
<el-button type="primary" size="small" plain @click="handleExport">导出</el-button>
|
<el-button type="primary" size="small" plain @click="handleExport">导出</el-button>
|
||||||
<!-- <el-button type="success" size="small" plain @click="addFactory">新增</el-button> -->
|
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<!-- <div class="smallTitle">产量转化效率</div> -->
|
</div>
|
||||||
|
<div class="containerTop">
|
||||||
<!-- <bmSearchBar @getSearch="getSearch" @handleExport="handleExport" /> -->
|
<el-row v-if="listQuery.type === 2">
|
||||||
<bm-line-bar :chartHeight="chartHeight" :legendList="legendList" :chartMsg="chartMsg" :chartId="chartId"
|
<el-col :span="16">
|
||||||
:chartNum="chartNum" />
|
<div class="blueTip">
|
||||||
<base-table :table-props="tableProps" :page="listQuery.current" :limit="listQuery.size" :table-data="tableData"
|
产量及良率对比
|
||||||
:max-height="tableH" />
|
</div>
|
||||||
|
<bm-line-bar :chartHeight="chartHeight" :legendList="legendList" :chartMsg="chartMsg" :chartId="chartId"
|
||||||
|
:chartNum="chartNum" />
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<div class="blueTip">
|
||||||
|
{{ title }}
|
||||||
|
</div>
|
||||||
|
<produce-line-bar-year-target :chartHeight="chartHeight" :legendList="legendListTarget"
|
||||||
|
:chartMsg="chartMsgYearTarget" :chartId=" 'yearData'" :chartNum="chartNum" />
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row v-else>
|
||||||
|
<!-- <el-col :span="24"> -->
|
||||||
|
<div class="blueTip">
|
||||||
|
产量及良率对比
|
||||||
|
</div>
|
||||||
|
<bm-line-bar :chartHeight="chartHeight" :legendList="legendList" :chartMsg="chartMsg" :chartId="chartId"
|
||||||
|
:chartNum="chartNum" />
|
||||||
|
<!-- </el-col> -->
|
||||||
|
<!-- <el-col :span="8">
|
||||||
|
<div class="blueTip">
|
||||||
|
{{ title }}
|
||||||
|
</div>
|
||||||
|
<produce-line-bar-year-target :chartHeight="chartHeight" :legendList="legendList"
|
||||||
|
:chartMsg="chartMsgYearTarget" :chartId=" 'yearData'" :chartNum="chartNum" />
|
||||||
|
</el-col> -->
|
||||||
|
</el-row>
|
||||||
|
<base-table :key="showTable" :table-props="tableProps" :page="listQuery.current"
|
||||||
|
:limit="listQuery.size" :table-data="tableData" :max-height="tableH" />
|
||||||
</div>
|
</div>
|
||||||
<!-- <div class="containerBottom">
|
<!-- <div class="containerBottom">
|
||||||
|
|
||||||
@@ -79,60 +94,29 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import bmSearchBar from "./components/bmSearchBar.vue";
|
import { getProductionYieldSituationMWData, exportProductionYieldSituationMWData } from '@/api/report';
|
||||||
import BmLineBar from "./components/bmLineBar.vue";
|
import bmSearchBar from "./components/bmSearchBar";
|
||||||
|
import BmLineBar from "./components/produceLineBar.vue";
|
||||||
|
import produceLineBarYearTarget from "./components/produceLineYieldBarTarget.vue";
|
||||||
import ButtonNav from '@/components/ButtonNav'
|
import ButtonNav from '@/components/ButtonNav'
|
||||||
import moment from 'moment'
|
import moment from 'moment'
|
||||||
const tableProps = [
|
|
||||||
{
|
|
||||||
prop: "factory",
|
|
||||||
label: "玻璃类型",
|
|
||||||
// filter: (val) => factoryList[val],
|
|
||||||
minWidth: 200,
|
|
||||||
showOverflowtooltip: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: "name",
|
|
||||||
label: "科目",
|
|
||||||
minWidth: 120,
|
|
||||||
showOverflowtooltip: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: "unit",
|
|
||||||
label: "单位",
|
|
||||||
minWidth: 80,
|
|
||||||
showOverflowtooltip: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: "time1",
|
|
||||||
label: "时间1",
|
|
||||||
minWidth: 150,
|
|
||||||
showOverflowtooltip: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: "time2",
|
|
||||||
label: "时间2",
|
|
||||||
minWidth: 150,
|
|
||||||
showOverflowtooltip: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: "mubiao",
|
|
||||||
label: "目标值",
|
|
||||||
minWidth: 150,
|
|
||||||
showOverflowtooltip: true,
|
|
||||||
},
|
|
||||||
];
|
|
||||||
export default {
|
export default {
|
||||||
name: "ChipYieldBM",
|
name: "ChipYieldBM",
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
tableProps,
|
otherProps: [],
|
||||||
start: undefined,
|
start: undefined,
|
||||||
end: undefined,
|
end: undefined,
|
||||||
|
title: '',
|
||||||
|
showTable:false,
|
||||||
listQuery: {
|
listQuery: {
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 999,
|
||||||
// size: 10,
|
// size: 10,
|
||||||
// current: 1,
|
// current: 1,
|
||||||
factory: null,
|
factory: null,
|
||||||
|
start: undefined,
|
||||||
|
end: undefined,
|
||||||
// total: 0,
|
// total: 0,
|
||||||
type: 2,
|
type: 2,
|
||||||
startDate: undefined,
|
startDate: undefined,
|
||||||
@@ -157,72 +141,74 @@ export default {
|
|||||||
label: '年'
|
label: '年'
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
tableData: [
|
tableData: [],
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
{ factory: "工厂1" },
|
|
||||||
],
|
|
||||||
chartHeight: this.tableHeight(137) / 2 - 111,
|
chartHeight: this.tableHeight(137) / 2 - 111,
|
||||||
tableH: this.tableHeight(137) / 2 - 70,
|
tableH: this.tableHeight(137) / 2 - 70,
|
||||||
legendList: [
|
legendList: [
|
||||||
{ id: 1, name: "2024年4月目标值", type: 2, color: "#FFCE6A" },
|
{
|
||||||
{ id: 2, name: "2023年4月", type: 1, color: "#8EF0AB" },
|
id: 1, name: "综合良率", type: 2, color: "#FFCE6A" },
|
||||||
{ id: 3, name: "2024年4月", type: 1, color: "#288AFF" },
|
{
|
||||||
|
id: 2, name: "FTO投入", type: 1, color: "#8EF0AB" },
|
||||||
|
{ id: 3, name: "芯片产量", type: 1, color: "#288AFF" },
|
||||||
|
{
|
||||||
|
id: 4, name: "标准组件产量", type: 1, color: "#64BDFF" },
|
||||||
],
|
],
|
||||||
chartMsg: {
|
legendListTarget: [
|
||||||
color: ["#FFCE6A", "#8EF0AB", "#288AFF"],
|
{
|
||||||
xData: ["成都", "邯郸", "瑞昌"],
|
id: 2, name: "FTO投入", type: 1, color: "#8EF0AB"
|
||||||
yName: "单位/%",
|
},
|
||||||
series: [
|
{ id: 3, name: "芯片产量", type: 1, color: "#288AFF" },
|
||||||
|
{
|
||||||
|
id: 4, name: "标准组件产量", type: 1, color: "#64BDFF"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 1, name: "综合良率", type: 1, color: "#7164FF"
|
||||||
|
},
|
||||||
|
],
|
||||||
|
chartMsgYearTarget: {
|
||||||
|
color: ["#8EF0AB", "#288AFF", '#64BDFF', "#7164FF",],
|
||||||
|
xData: [],
|
||||||
|
// yName: "单位/%",
|
||||||
|
yAxis: [
|
||||||
{
|
{
|
||||||
name: "2024年4月目标值",
|
type: "value",
|
||||||
data: [
|
name: "单位/片",
|
||||||
{ name: "%", value: 85 },
|
splitNumber: 4,
|
||||||
{ name: "%", value: 85 },
|
// min: function (value) {//取最小值向下取整为最小刻度
|
||||||
{ name: "%", value: 85 },
|
// return Math.floor(value.min)
|
||||||
],
|
// },
|
||||||
type: "line",
|
// max: function (value) {//取最大值向上取整为最大刻度
|
||||||
symbol: "circle",
|
// return Math.ceil(value.max)
|
||||||
symbolSize: 6,
|
// },
|
||||||
label: {
|
alignTicks: true,
|
||||||
show: true,
|
nameTextStyle: {
|
||||||
color: "#FFAE17",
|
fontSize: 12,
|
||||||
formatter: function (params) {
|
align: "right",
|
||||||
return params.value.toFixed(2) + "%";
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
|
axisLabel: {},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "2023年4月",
|
type: 'value',
|
||||||
data: [
|
// inverse: true,
|
||||||
{ name: "%", value: 57.5 },
|
alignTicks: true,
|
||||||
{ name: "%", value: 21.66 },
|
// min: 0,
|
||||||
{ name: "%", value: 18.4 },
|
// max: 100,
|
||||||
],
|
// scale: true,
|
||||||
|
// interval: 25,//间隔
|
||||||
|
splitNumber: 4,
|
||||||
|
name: "单位/%",
|
||||||
|
nameTextStyle: {
|
||||||
|
fontSize: 12,
|
||||||
|
align: "right",
|
||||||
|
},
|
||||||
|
axisLabel: {},
|
||||||
|
}
|
||||||
|
],
|
||||||
|
series: [
|
||||||
|
{
|
||||||
|
name: "",
|
||||||
|
// yAxisIndex: 0,
|
||||||
|
data: [],
|
||||||
type: "bar",
|
type: "bar",
|
||||||
barWidth: 20,
|
barWidth: 20,
|
||||||
label: {
|
label: {
|
||||||
@@ -230,17 +216,90 @@ export default {
|
|||||||
position: [-18, -16],
|
position: [-18, -16],
|
||||||
color: "#68C483",
|
color: "#68C483",
|
||||||
formatter: function (params) {
|
formatter: function (params) {
|
||||||
return params.value.toFixed(2) + "%";
|
return params.value
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "2024年4月",
|
name: '',
|
||||||
data: [
|
// type: 'bar',
|
||||||
{ name: "%", value: 23.33 },
|
data: [],
|
||||||
{ name: "%", value: 7.02 },
|
type: "bar",
|
||||||
{ name: "%", value: 80.2 },
|
barWidth: 20,
|
||||||
],
|
label: {
|
||||||
|
show: true,
|
||||||
|
position: [-18, -16],
|
||||||
|
color: "#68C483",
|
||||||
|
formatter: function (params) {
|
||||||
|
return params.value
|
||||||
|
},
|
||||||
|
},
|
||||||
|
yAxisIndex: 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
},
|
||||||
|
chartMsg: {
|
||||||
|
color: ["#8EF0AB", "#288AFF", '#64BDFF', "#FFCE6A",],
|
||||||
|
xData: [],
|
||||||
|
// yName: "单位/%",
|
||||||
|
yAxis: [
|
||||||
|
{
|
||||||
|
type: "value",
|
||||||
|
name: "单位/片",
|
||||||
|
// min: function (value) {//取最小值向下取整为最小刻度
|
||||||
|
// return Math.floor(value.min)
|
||||||
|
// },
|
||||||
|
// max: function (value) {//取最大值向上取整为最大刻度
|
||||||
|
// return Math.ceil(value.max)
|
||||||
|
// },
|
||||||
|
alignTicks:true,
|
||||||
|
// splitNumber: 4,
|
||||||
|
// scale: true,
|
||||||
|
nameTextStyle: {
|
||||||
|
fontSize: 12,
|
||||||
|
align: "right",
|
||||||
|
},
|
||||||
|
axisLabel: {},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'value',
|
||||||
|
// inverse: true,
|
||||||
|
name: "单位/%",
|
||||||
|
alignTicks: true,
|
||||||
|
// min: 0,
|
||||||
|
// max:100,
|
||||||
|
// scale: true,
|
||||||
|
// interval: 25,//间隔
|
||||||
|
splitNumber: 4,
|
||||||
|
nameTextStyle: {
|
||||||
|
fontSize: 12,
|
||||||
|
align: "right",
|
||||||
|
},
|
||||||
|
axisLabel: {},
|
||||||
|
}
|
||||||
|
],
|
||||||
|
series: [
|
||||||
|
{
|
||||||
|
name: "",
|
||||||
|
// yAxisIndex: 0,
|
||||||
|
data: [],
|
||||||
|
type: "bar",
|
||||||
|
barWidth: 20,
|
||||||
|
yAxisIndex: 0,
|
||||||
|
label: {
|
||||||
|
show: true,
|
||||||
|
position: [-18, -16],
|
||||||
|
color: "#68C483",
|
||||||
|
formatter: function (params) {
|
||||||
|
return params.value
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "",
|
||||||
|
// yAxisIndex: 0,
|
||||||
|
data: [],
|
||||||
|
yAxisIndex: 0,
|
||||||
type: "bar",
|
type: "bar",
|
||||||
barWidth: 20,
|
barWidth: 20,
|
||||||
label: {
|
label: {
|
||||||
@@ -248,7 +307,39 @@ export default {
|
|||||||
position: [0, -16],
|
position: [0, -16],
|
||||||
color: "#288AFF",
|
color: "#288AFF",
|
||||||
formatter: function (params) {
|
formatter: function (params) {
|
||||||
return params.value.toFixed(2) + "%";
|
return params.value
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "",
|
||||||
|
// yAxisIndex: 0,
|
||||||
|
data: [],
|
||||||
|
type: "bar",
|
||||||
|
yAxisIndex: 0,
|
||||||
|
barWidth: 20,
|
||||||
|
label: {
|
||||||
|
show: true,
|
||||||
|
position: [0, -16],
|
||||||
|
color: "#64BDFF",
|
||||||
|
formatter: function (params) {
|
||||||
|
return params.value
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "",
|
||||||
|
data: [],
|
||||||
|
type: "line",
|
||||||
|
// barWidth: 20,
|
||||||
|
symbol: "circle",
|
||||||
|
symbolSize: 6,
|
||||||
|
yAxisIndex: 1,
|
||||||
|
label: {
|
||||||
|
show: true,
|
||||||
|
color: "#FFAE17",
|
||||||
|
formatter: function (params) {
|
||||||
|
return params.value.toFixed(2)
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@@ -261,20 +352,48 @@ export default {
|
|||||||
components: {
|
components: {
|
||||||
bmSearchBar,
|
bmSearchBar,
|
||||||
BmLineBar,
|
BmLineBar,
|
||||||
|
produceLineBarYearTarget,
|
||||||
ButtonNav
|
ButtonNav
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
|
tableProps() {
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
prop: "item",
|
||||||
|
label: "科目",
|
||||||
|
// filter: (val) => factoryList[val],
|
||||||
|
minWidth: 200,
|
||||||
|
showOverflowtooltip: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: "unit",
|
||||||
|
label: "单位",
|
||||||
|
minWidth: 120,
|
||||||
|
showOverflowtooltip: true,
|
||||||
|
},
|
||||||
|
...this.otherProps
|
||||||
|
]
|
||||||
|
},
|
||||||
weekNum() {
|
weekNum() {
|
||||||
return Math.round((this.end - this.start) / (24 * 60 * 60 * 1000 * 7)) + 1
|
return Math.round((this.end - this.start) / (24 * 60 * 60 * 1000 * 7)) + 1
|
||||||
},
|
},
|
||||||
isOpen() {
|
isOpen() {
|
||||||
return this.$store.getters.sidebar.opened;
|
return this.$store.getters.sidebar.opened;
|
||||||
},
|
},
|
||||||
|
type() {
|
||||||
|
return this.listQuery.type
|
||||||
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
// 监听左侧菜单栏是否展开
|
// 监听左侧菜单栏是否展开
|
||||||
|
type(val) {
|
||||||
|
|
||||||
|
},
|
||||||
|
currentMenu() {
|
||||||
|
this.getDataList()
|
||||||
|
},
|
||||||
isOpen(val) {
|
isOpen(val) {
|
||||||
if (this.$route.name === "ChipYieldBM") {
|
if (this.$route.name === "productionYield") {
|
||||||
this.chartNum++;
|
this.chartNum++;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -289,73 +408,75 @@ export default {
|
|||||||
},
|
},
|
||||||
activated() {
|
activated() {
|
||||||
// 图重新加载,为了防止窗口变化后尺寸图显示不佳,数据不更新
|
// 图重新加载,为了防止窗口变化后尺寸图显示不佳,数据不更新
|
||||||
if (this.$route.name === "ChipYieldBM") {
|
if (this.$route.name === "productionYield") {
|
||||||
this.chartNum++;
|
this.chartNum++;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
// this.getOverView()
|
// this.getOverView()
|
||||||
const currentMonth = new Date()
|
const today = new Date()
|
||||||
this.listQuery.reportTime = [moment(currentMonth).format('yyyy-MM-DD HH:mm:ss'), moment(currentMonth).format('yyyy-MM-DD HH:mm:ss')]
|
const sevenDaysAgo = new Date(today.getTime() - (7 * 24 * 60 * 60 * 1000))
|
||||||
this.changeTime()
|
this.listQuery.startDate = moment(sevenDaysAgo).format('yyyy-MM-DD')
|
||||||
|
this.listQuery.endDate = moment(today).format('yyyy-MM-DD')
|
||||||
|
this.listQuery.reportTime = [this.listQuery.startDate, this.listQuery.endDate]
|
||||||
this.getDataList()
|
this.getDataList()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
objectSpanMethod({ row, column, rowIndex, columnIndex }) {
|
||||||
|
let spanOneArr = [], concatOne = 0;
|
||||||
|
// let spanTwoArr = [], concatTwo = 0;
|
||||||
|
|
||||||
|
this.tableData.map((item, index) => {
|
||||||
|
// console.log(inde);
|
||||||
|
if (index === 0) {
|
||||||
|
spanOneArr.push(1);
|
||||||
|
} else {
|
||||||
|
//第一列需合并相同内容的判断条件
|
||||||
|
if (item.factory === this.tableData[index - 1].factory) {
|
||||||
|
spanOneArr[concatOne] += 1;
|
||||||
|
spanOneArr.push(0);
|
||||||
|
} else {
|
||||||
|
spanOneArr.push(1);
|
||||||
|
concatOne = index;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
if (columnIndex === 0) {
|
||||||
|
const _row = spanOneArr[rowIndex];
|
||||||
|
const _col = _row > 0 ? 1 : 0;
|
||||||
|
return {
|
||||||
|
rowspan: _row,
|
||||||
|
colspan: _col
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
getYear(e) {
|
getYear(e) {
|
||||||
if (this.end && Number(this.end) - Number(this.start) > 10) {
|
if (this.listQuery.end - this.listQuery.start > 10 * 365 * 24 * 60 * 60 * 1000) {
|
||||||
this.$message({
|
this.$message({
|
||||||
message: '年份起止时间不能超过十年',
|
message: '年份起止时间不能超过十年',
|
||||||
type: 'warning'
|
type: 'warning'
|
||||||
});
|
});
|
||||||
this.start = undefined
|
this.listQuery.reportTime = []
|
||||||
this.end = undefined
|
this.listQuery.start = undefined
|
||||||
|
this.listQuery.end = undefined
|
||||||
// console.log();
|
// console.log();
|
||||||
} else {
|
} else {
|
||||||
if (Number(this.end) < Number(this.start)) {
|
this.listQuery.startDate = this.listQuery.start
|
||||||
this.$message({
|
this.listQuery.endDate = this.listQuery.end
|
||||||
message: '结束年份不能小于开始年份',
|
|
||||||
type: 'warning'
|
|
||||||
});
|
|
||||||
this.start = undefined
|
|
||||||
this.end = undefined
|
|
||||||
} else {
|
|
||||||
this.listQuery.startDate = Number(this.start)
|
|
||||||
this.listQuery.endDate = Number(this.end)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
if (!this.start && !this.end) {
|
if (!this.listQuery.start && !this.listQuery.end) {
|
||||||
this.listQuery.startDate = undefined
|
this.listQuery.startDate = undefined
|
||||||
this.listQuery.endDate = undefined
|
this.listQuery.endDate = undefined
|
||||||
}
|
}
|
||||||
// console.log(e);
|
// console.log(e);
|
||||||
},
|
},
|
||||||
changeTime() {
|
|
||||||
if (this.listQuery.reportTime) {
|
|
||||||
console.log(this.listQuery.reportTime)
|
|
||||||
let start = new Date(this.listQuery.reportTime[0])
|
|
||||||
let end = new Date(this.listQuery.reportTime[1])
|
|
||||||
// const years = Number(this.listQuery.reportTime[1].slice(0, 4)) - Number(this.listQuery.reportTime[0].slice(0, 4))
|
|
||||||
// const months = Number(this.listQuery.reportTime[1].slice(4)) - Number(this.listQuery.reportTime[0].slice(4))
|
|
||||||
// console.log(years);
|
|
||||||
if ((end - start) > 31104000000) {
|
|
||||||
this.$message({
|
|
||||||
message: '时间范围不能超过24个月',
|
|
||||||
type: 'warning'
|
|
||||||
});
|
|
||||||
this.listQuery.reportTime = [];
|
|
||||||
} else {
|
|
||||||
this.listQuery.startDate = this.listQuery.reportTime[0]
|
|
||||||
this.listQuery.endDate = this.listQuery.reportTime[1]
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
this.listQuery.startDate = undefined
|
|
||||||
this.listQuery.endDate = undefined
|
|
||||||
}
|
|
||||||
},
|
|
||||||
onValueChange(picker, k) { // 选中近k周后触发的操作
|
onValueChange(picker, k) { // 选中近k周后触发的操作
|
||||||
if (this.start && this.end) {
|
// console.log(this.listQuery.reportTime[0], this.listQuery.reportTime[1])
|
||||||
this.date1 = moment(this.start.getTime() - 24 * 60 * 60 * 1000).format('YYYY-MM-DD HH:mm:ss')
|
if (this.listQuery.start && this.listQuery.end) {
|
||||||
this.date2 = moment(this.end.getTime() + 5 * 24 * 60 * 60 * 1000).format('YYYY-MM-DD HH:mm:ss')
|
console.log(this.listQuery.reportTime)
|
||||||
|
this.date1 = moment(this.listQuery.start.getTime() - 24 * 60 * 60 * 1000).format('YYYY-MM-DD HH:mm:ss')
|
||||||
|
this.date2 = moment(this.listQuery.end.getTime() + 5 * 24 * 60 * 60 * 1000).format('YYYY-MM-DD HH:mm:ss')
|
||||||
const numDays = (new Date(this.date2).getTime() - new Date(this.date1).getTime()) / (24 * 3600 * 1000);
|
const numDays = (new Date(this.date2).getTime() - new Date(this.date1).getTime()) / (24 * 3600 * 1000);
|
||||||
if (numDays > 168) {
|
if (numDays > 168) {
|
||||||
console.log(numDays)
|
console.log(numDays)
|
||||||
@@ -364,20 +485,21 @@ export default {
|
|||||||
type: 'warning'
|
type: 'warning'
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
this.listQuery.startDate = this.date1
|
this.listQuery.startDate = moment(this.listQuery.start.getTime() - 24 * 60 * 60 * 1000).format('YYYY-MM-DD')
|
||||||
this.listQuery.endDate = this.date2
|
this.listQuery.endDate = moment(this.listQuery.end.getTime() + 5 * 24 * 60 * 60 * 1000).format('YYYY-MM-DD')
|
||||||
// this.listQuery.startDate = Number(moment(this.start.getTime()).format('YYYYWW'))
|
|
||||||
// this.listQuery.endDate = Number(moment(this.end.getTime()).format('YYYYWW'))
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!this.start && !this.end) {
|
if (!this.listQuery.start && !this.listQuery.end) {
|
||||||
this.listQuery.startDate = undefined
|
this.listQuery.startDate = undefined
|
||||||
this.listQuery.endDate = undefined
|
this.listQuery.endDate = undefined
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
changeDayTime() {
|
changeDayTime() {
|
||||||
if (this.listQuery.reportTime) {
|
if (this.listQuery.reportTime) {
|
||||||
const numDays = Number(this.listQuery.reportTime[1]) - Number(this.listQuery.reportTime[0])
|
// this.createStartDate = moment(new Date(this.listQuery.reportTime[0]), 'yyyy-MM-dd hh:mm:ss');
|
||||||
|
// this.createEndDate = moment(new Date(this.listQuery.reportTime[1]), 'yyyy-MM-dd hh:mm:ss');
|
||||||
|
console.log(this.listQuery.reportTime[1])
|
||||||
|
const numDays = (this.listQuery.reportTime[1] - this.listQuery.reportTime[0]) / (24 * 3600 * 1000);
|
||||||
if (numDays > 30) {
|
if (numDays > 30) {
|
||||||
this.$message({
|
this.$message({
|
||||||
message: '时间范围不能超过30天',
|
message: '时间范围不能超过30天',
|
||||||
@@ -393,40 +515,256 @@ export default {
|
|||||||
this.listQuery.endDate = undefined
|
this.listQuery.endDate = undefined
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
getOverView() {
|
changeTime(value) {
|
||||||
// getOverView().then(res => {
|
if (this.listQuery.reportTime) {
|
||||||
// this.data = res.data
|
const numDays = this.listQuery.reportTime[1] - this.listQuery.reportTime[0];
|
||||||
// console.log('aa', res.data)
|
if (numDays > 2 * 365 * 24 * 60 * 60 * 1000) {
|
||||||
// })
|
this.$message({
|
||||||
},
|
message: '时间范围不能超过24个月',
|
||||||
otherMethods(val) {
|
type: 'warning'
|
||||||
this.detailOrUpdateVisible = true;
|
});
|
||||||
// this.addOrEditTitle = "详情";
|
this.listQuery.reportTime = [];
|
||||||
this.$nextTick(() => {
|
} else {
|
||||||
// this.$refs.detailOrUpdate.init(val.data.id);
|
this.listQuery.startDate = this.listQuery.reportTime[0]
|
||||||
});
|
this.listQuery.endDate = this.listQuery.reportTime[1]
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
this.listQuery.startDate = undefined
|
||||||
|
this.listQuery.endDate = undefined
|
||||||
|
}
|
||||||
},
|
},
|
||||||
async getDataList() {
|
async getDataList() {
|
||||||
console.log(this.listQuery);
|
this.otherProps = []
|
||||||
if (this.listQuery.type == 3) {
|
this.chartMsg.xData = []
|
||||||
this.listQuery.startDate = this.listQuery.reportTime[0] + '-01-01 00:00:00'
|
this.chartMsg.series[0].data = []
|
||||||
this.listQuery.endDate = this.listQuery.reportTime[1] + '-12-31 23:59:59'
|
this.chartMsg.series[1].data = []
|
||||||
|
this.chartMsg.series[2].data = []
|
||||||
|
this.chartMsg.series[3].data = []
|
||||||
|
this.chartMsgYearTarget.xData = []
|
||||||
|
this.chartMsgYearTarget.series[0].data = []
|
||||||
|
this.chartMsgYearTarget.series[1].data = []
|
||||||
|
if (!this.listQuery.startDate && !this.listQuery.endDate) {
|
||||||
|
return this.$message('请选择起止时间')
|
||||||
}
|
}
|
||||||
this.listQuery.factory = this.currentMenu === '邯郸' ? 1 : 2
|
let arr = []
|
||||||
const res = await getComprehensiveDataPage(this.listQuery)
|
this.currentMenu === '邯郸' ? arr.push(1) : arr.push(0)
|
||||||
this.tableData = res.data.list
|
this.listQuery.factory = arr
|
||||||
this.listQuery.total = res.data.total
|
const res = await getProductionYieldSituationMWData(this.listQuery)
|
||||||
if (this.listQuery.total > 0) {
|
let dataArr = [{
|
||||||
this.tableData.forEach(item => {
|
factory: null,
|
||||||
item.startTime = item.startDate ? item.startDate[0] + '-' + item.startDate[1] + '-' + item.startDate[2] : '--'
|
item: 'FTO投入',
|
||||||
item.endTime = item.endDate ? item.endDate[0] + '-' + item.endDate[1] + '-' + item.endDate[2] : '--'
|
unit: '片'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
factory: null,
|
||||||
|
item: '芯片产量',
|
||||||
|
unit: '片'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
factory: null,
|
||||||
|
item: '标准组件产量',
|
||||||
|
unit: '片'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
factory: null,
|
||||||
|
item: '综合良率',
|
||||||
|
unit: '%'
|
||||||
|
},]
|
||||||
|
if (this.listQuery.type == 2) {
|
||||||
|
res.data.list.forEach((ele, index) => {
|
||||||
|
let i = index + 1
|
||||||
|
this.chartMsg.xData.push(ele.titleValue)
|
||||||
|
this.otherProps.push({
|
||||||
|
label: ele.titleValue,
|
||||||
|
prop: 'value' + i
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
this.chartMsgYearTarget.xData.push('FTO投入', '芯片产量', '标准组件产量', '综合良率')
|
||||||
|
res.data.list.slice(res.data.list.length - 1, res.data.list.length).forEach((ele) => {
|
||||||
|
this.title = ele.titleValue
|
||||||
|
ele.productYieldDataVOList.forEach((item) => {
|
||||||
|
// this.chartMsgYearTarget.series[0].name = 'FTO投入目标值',
|
||||||
|
// this.chartMsgYearTarget.series[1].name = '芯片产量目标值',
|
||||||
|
// this.chartMsgYearTarget.series[2].name = '标准组件产量目标值',
|
||||||
|
// this.chartMsgYearTarget.series[3].name = '综合良率目标值',
|
||||||
|
this.chartMsgYearTarget.series[0].data = [
|
||||||
|
{
|
||||||
|
value: item.ftoInput,
|
||||||
|
itemStyle: {
|
||||||
|
color: '#8EF0AB'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: item.chipYield,
|
||||||
|
itemStyle: {
|
||||||
|
color: '#288AFF'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: item.componentYield,
|
||||||
|
itemStyle: {
|
||||||
|
color: '#64BDFF'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: null,
|
||||||
|
itemStyle: {
|
||||||
|
color: '#FFCE6A'
|
||||||
|
}
|
||||||
|
}]
|
||||||
|
this.chartMsgYearTarget.series[1].data = [
|
||||||
|
{
|
||||||
|
value: null,
|
||||||
|
itemStyle: {
|
||||||
|
color: '#8EF0AB'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: null,
|
||||||
|
itemStyle: {
|
||||||
|
color: '#288AFF'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: null,
|
||||||
|
itemStyle: {
|
||||||
|
color: '#64BDFF'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: item.ftoInput,
|
||||||
|
itemStyle: {
|
||||||
|
color: '#FFCE6A'
|
||||||
|
}
|
||||||
|
}]
|
||||||
|
// dataArr[0]['' + m + ''] = item.ftoInput
|
||||||
|
// dataArr[0].factory = item.factory == 1 ? '邯郸' : '瑞昌'
|
||||||
|
// dataArr[1].factory = item.factory == 1 ? '邯郸' : '瑞昌'
|
||||||
|
// dataArr[2].factory = item.factory == 1 ? '邯郸' : '瑞昌'
|
||||||
|
// dataArr[3].factory = item.factory == 1 ? '邯郸' : '瑞昌'
|
||||||
|
// dataArr[1]['' + m + ''] = item.chipYield
|
||||||
|
// dataArr[2]['' + m + ''] = item.componentYield
|
||||||
|
// dataArr[3]['' + m + ''] = item.comprehensiveYieldRate
|
||||||
|
})
|
||||||
|
})
|
||||||
|
console.log(this.otherProps)
|
||||||
|
res.data.list.forEach((ele, index) => {
|
||||||
|
let i = index + 1
|
||||||
|
let m = 'value' + i
|
||||||
|
ele.productYieldDataVOList.forEach((item) => {
|
||||||
|
dataArr[0]['' + m + ''] = item.ftoInput
|
||||||
|
dataArr[1]['' + m + ''] = item.chipYield
|
||||||
|
dataArr[2]['' + m + ''] = item.componentYield
|
||||||
|
dataArr[3]['' + m + ''] = item.comprehensiveYieldRate
|
||||||
|
})
|
||||||
|
})
|
||||||
|
for (let i in dataArr[0]) {
|
||||||
|
this.chartMsg.series[0].name = dataArr[0]['item']
|
||||||
|
if (i.search('value') === 0) {
|
||||||
|
this.chartMsg.series[0].data.push({
|
||||||
|
name: dataArr[0]['item'],
|
||||||
|
value: dataArr[0][i] === 0 ? null : dataArr[0][i]
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for (let i in dataArr[1]) {
|
||||||
|
this.chartMsg.series[1].name = dataArr[1]['item']
|
||||||
|
if (i.search('value') === 0) {
|
||||||
|
this.chartMsg.series[1].data.push({
|
||||||
|
name: dataArr[1]['item'],
|
||||||
|
value: dataArr[1][i] === 0 ? null : dataArr[1][i]
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for (let i in dataArr[2]) {
|
||||||
|
this.chartMsg.series[2].name = dataArr[2]['item']
|
||||||
|
if (i.search('value') === 0) {
|
||||||
|
this.chartMsg.series[2].data.push({
|
||||||
|
name: dataArr[2]['item'],
|
||||||
|
value: dataArr[2][i] === 0 ? null : dataArr[2][i]
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for (let i in dataArr[3]) {
|
||||||
|
this.chartMsg.series[3].name = dataArr[3]['item']
|
||||||
|
if (i.search('value') === 0) {
|
||||||
|
this.chartMsg.series[3].data.push({
|
||||||
|
name: dataArr[3]['item'],
|
||||||
|
value: dataArr[3][i] === 0 ? null : dataArr[3][i]
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
res.data.list.forEach((ele, index) => {
|
||||||
|
let i = index + 1
|
||||||
|
this.chartMsg.xData.push(ele.titleValue)
|
||||||
|
this.otherProps.push({
|
||||||
|
label: ele.titleValue,
|
||||||
|
prop: 'value' + i
|
||||||
|
})
|
||||||
|
})
|
||||||
|
console.log(this.otherProps)
|
||||||
|
res.data.list.forEach((ele, index) => {
|
||||||
|
let i = index + 1
|
||||||
|
let m = 'value' + i
|
||||||
|
ele.productYieldDataVOList.forEach((item) => {
|
||||||
|
dataArr[0]['' + m + ''] = item.ftoInput
|
||||||
|
dataArr[0].factory = item.factory == 1 ? '邯郸' : '瑞昌'
|
||||||
|
dataArr[1].factory = item.factory == 1 ? '邯郸' : '瑞昌'
|
||||||
|
dataArr[2].factory = item.factory == 1 ? '邯郸' : '瑞昌'
|
||||||
|
dataArr[3].factory = item.factory == 1 ? '邯郸' : '瑞昌'
|
||||||
|
dataArr[1]['' + m + ''] = item.chipYield
|
||||||
|
dataArr[2]['' + m + ''] = item.componentYield
|
||||||
|
dataArr[3]['' + m + ''] = item.comprehensiveYieldRate
|
||||||
|
})
|
||||||
|
})
|
||||||
|
for (let i in dataArr[0]) {
|
||||||
|
this.chartMsg.series[0].name = dataArr[0]['item']
|
||||||
|
if (i.search('value') === 0) {
|
||||||
|
this.chartMsg.series[0].data.push({
|
||||||
|
name: dataArr[0]['item'],
|
||||||
|
value: dataArr[0][i] === 0 ? null : dataArr[0][i]
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for (let i in dataArr[1]) {
|
||||||
|
this.chartMsg.series[1].name = dataArr[1]['item']
|
||||||
|
if (i.search('value') === 0) {
|
||||||
|
this.chartMsg.series[1].data.push({
|
||||||
|
name: dataArr[1]['item'],
|
||||||
|
value: dataArr[1][i] === 0 ? null : dataArr[1][i]
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for (let i in dataArr[2]) {
|
||||||
|
this.chartMsg.series[2].name = dataArr[2]['item']
|
||||||
|
if (i.search('value') === 0) {
|
||||||
|
this.chartMsg.series[2].data.push({
|
||||||
|
name: dataArr[2]['item'],
|
||||||
|
value: dataArr[2][i] === 0 ? null : dataArr[2][i]
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for (let i in dataArr[3]) {
|
||||||
|
this.chartMsg.series[3].name = dataArr[3]['item']
|
||||||
|
if (i.search('value') === 0) {
|
||||||
|
this.chartMsg.series[3].data.push({
|
||||||
|
name: dataArr[3]['item'],
|
||||||
|
value: dataArr[3][i] === 0 ? null : dataArr[3][i]
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
console.log(dataArr)
|
||||||
|
this.tableData = res.data.length != 0 ? dataArr : []
|
||||||
|
this.showTable = !this.showTable
|
||||||
|
// this.tableProps.push()
|
||||||
},
|
},
|
||||||
_setTableHeight() {
|
_setTableHeight() {
|
||||||
this.tableH = this.tableHeight(137) / 2 - 70;
|
this.tableH = this.tableHeight(137) / 2 - 70;
|
||||||
this.chartHeight = this.tableHeight(137) / 2 - 111;
|
this.chartHeight = this.tableHeight(137) / 2 - 111;
|
||||||
if (this.$route.name === "ChipYieldBM") {
|
if (this.$route.name === "productionYield") {
|
||||||
this.chartNum++;
|
this.chartNum++;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -435,7 +773,16 @@ export default {
|
|||||||
console.log("=========================");
|
console.log("=========================");
|
||||||
},
|
},
|
||||||
handleExport() {
|
handleExport() {
|
||||||
console.log("导出");
|
// this.listQuery.type = val.type;
|
||||||
|
// this.listQuery.startDate = val.startDate;
|
||||||
|
// this.listQuery.factory = val.factory;
|
||||||
|
let fileName = "产品良率.xls";
|
||||||
|
exportProductionYieldSituationMWData(this.listQuery)
|
||||||
|
.then((response) => {
|
||||||
|
this.$download.excel(response, fileName);
|
||||||
|
this.$message.success("导出成功");
|
||||||
|
})
|
||||||
|
.catch(() => { });
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
@@ -447,7 +794,7 @@ export default {
|
|||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
padding: 16px 16px 0 16px;
|
padding: 16px 16px 0 16px;
|
||||||
margin-bottom: 8px;
|
margin:8px 0 8px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.containerTop {
|
.containerTop {
|
||||||
|
|||||||
@@ -254,6 +254,7 @@ export default {
|
|||||||
data: [],
|
data: [],
|
||||||
type: "bar",
|
type: "bar",
|
||||||
barWidth: 20,
|
barWidth: 20,
|
||||||
|
barGap: "100%",
|
||||||
label: {
|
label: {
|
||||||
show: true,
|
show: true,
|
||||||
position: "top",
|
position: "top",
|
||||||
|
|||||||
@@ -137,7 +137,7 @@
|
|||||||
|
|
||||||
<!-- 添加或修改菜单对话框 -->
|
<!-- 添加或修改菜单对话框 -->
|
||||||
<base-dialog :dialogTitle="title" :dialogVisible="open" width="50%">
|
<base-dialog :dialogTitle="title" :dialogVisible="open" width="50%">
|
||||||
<el-form ref="form" :model="form" :rules="rules" label-width="100px">
|
<el-form ref="form" :model="form" :rules="rules" label-width="120px">
|
||||||
<el-row>
|
<el-row>
|
||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
<el-form-item label="上级菜单">
|
<el-form-item label="上级菜单">
|
||||||
@@ -205,6 +205,7 @@
|
|||||||
v-model="form.sort"
|
v-model="form.sort"
|
||||||
controls-position="right"
|
controls-position="right"
|
||||||
:min="0"
|
:min="0"
|
||||||
|
style="width: 100%"
|
||||||
/>
|
/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
@@ -331,8 +332,8 @@
|
|||||||
</el-row>
|
</el-row>
|
||||||
</el-form>
|
</el-form>
|
||||||
<div slot="footer" class="dialog-footer">
|
<div slot="footer" class="dialog-footer">
|
||||||
<el-button type="primary" @click="submitForm">确 定</el-button>
|
|
||||||
<el-button @click="cancel">取 消</el-button>
|
<el-button @click="cancel">取 消</el-button>
|
||||||
|
<el-button type="primary" @click="submitForm">确 定</el-button>
|
||||||
</div>
|
</div>
|
||||||
</base-dialog>
|
</base-dialog>
|
||||||
</div>
|
</div>
|
||||||
@@ -437,6 +438,12 @@ export default {
|
|||||||
},
|
},
|
||||||
],
|
],
|
||||||
tableBtn: [
|
tableBtn: [
|
||||||
|
this.$auth.hasPermi("system:menu:create")
|
||||||
|
? {
|
||||||
|
type: "add",
|
||||||
|
btnName: "新增",
|
||||||
|
}
|
||||||
|
: undefined,
|
||||||
this.$auth.hasPermi("system:menu:update")
|
this.$auth.hasPermi("system:menu:update")
|
||||||
? {
|
? {
|
||||||
type: "edit",
|
type: "edit",
|
||||||
@@ -449,12 +456,6 @@ export default {
|
|||||||
btnName: "删除",
|
btnName: "删除",
|
||||||
}
|
}
|
||||||
: undefined,
|
: undefined,
|
||||||
this.$auth.hasPermi("system:menu:create")
|
|
||||||
? {
|
|
||||||
type: "add",
|
|
||||||
btnName: "新增",
|
|
||||||
}
|
|
||||||
: undefined,
|
|
||||||
].filter((v) => v),
|
].filter((v) => v),
|
||||||
tableProps,
|
tableProps,
|
||||||
heightNum: 210,
|
heightNum: 210,
|
||||||
|
|||||||
@@ -83,7 +83,7 @@
|
|||||||
{{ parseTime(form.startTime) }} | {{ form.duration }} ms
|
{{ parseTime(form.startTime) }} | {{ form.duration }} ms
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12">
|
<el-col :span="24">
|
||||||
<el-form-item label="操作结果:">
|
<el-form-item label="操作结果:">
|
||||||
<div v-if="form.resultCode === 0">
|
<div v-if="form.resultCode === 0">
|
||||||
正常 | {{ form.resultData }}
|
正常 | {{ form.resultData }}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="app-container">
|
<div class="user-container">
|
||||||
<!-- <doc-alert title="用户体系" url="https://doc.iocoder.cn/user-center/" />
|
<!-- <doc-alert title="用户体系" url="https://doc.iocoder.cn/user-center/" />
|
||||||
<doc-alert title="三方登陆" url="https://doc.iocoder.cn/social-user/" />
|
<doc-alert title="三方登陆" url="https://doc.iocoder.cn/social-user/" />
|
||||||
<doc-alert
|
<doc-alert
|
||||||
@@ -8,40 +8,43 @@
|
|||||||
/> -->
|
/> -->
|
||||||
<!-- 搜索工作栏 -->
|
<!-- 搜索工作栏 -->
|
||||||
|
|
||||||
<el-row :gutter="20">
|
<el-row :gutter="8" class="user-box">
|
||||||
<!--部门数据-->
|
<!--部门数据-->
|
||||||
<el-col :span="4" :xs="24">
|
<el-col :span="4" :xs="24">
|
||||||
<div class="head-container">
|
<div class="user-box-left">
|
||||||
<el-input
|
<div class="head-container">
|
||||||
v-model="deptName"
|
<el-input
|
||||||
placeholder="请输入部门名称"
|
v-model="deptName"
|
||||||
clearable
|
placeholder="请输入部门名称"
|
||||||
size="small"
|
clearable
|
||||||
prefix-icon="el-icon-search"
|
size="small"
|
||||||
style="margin-bottom: 20px"
|
prefix-icon="el-icon-search"
|
||||||
/>
|
style="margin-bottom: 20px"
|
||||||
</div>
|
/>
|
||||||
<div class="head-container">
|
</div>
|
||||||
<el-tree
|
<div class="head-container">
|
||||||
:data="deptOptions"
|
<el-tree
|
||||||
:props="defaultProps"
|
:data="deptOptions"
|
||||||
:expand-on-click-node="false"
|
:props="defaultProps"
|
||||||
:filter-node-method="filterNode"
|
:expand-on-click-node="false"
|
||||||
ref="tree"
|
:filter-node-method="filterNode"
|
||||||
default-expand-all
|
ref="tree"
|
||||||
highlight-current
|
default-expand-all
|
||||||
@node-click="handleNodeClick"
|
highlight-current
|
||||||
/>
|
@node-click="handleNodeClick"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</el-col>
|
</el-col>
|
||||||
<!--用户数据-->
|
<!--用户数据-->
|
||||||
<el-col :span="20" :xs="24">
|
<el-col :span="20" :xs="24">
|
||||||
<search-bar
|
<div class="user-box-right">
|
||||||
:formConfigs="formConfig"
|
<search-bar
|
||||||
ref="searchBarForm"
|
:formConfigs="formConfig"
|
||||||
@headBtnClick="buttonClick"
|
ref="userSearchBarForm"
|
||||||
/>
|
@headBtnClick="buttonClick"
|
||||||
<!-- <el-form
|
/>
|
||||||
|
<!-- <el-form
|
||||||
:model="queryParams"
|
:model="queryParams"
|
||||||
ref="queryForm"
|
ref="queryForm"
|
||||||
size="small"
|
size="small"
|
||||||
@@ -104,7 +107,7 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form> -->
|
</el-form> -->
|
||||||
|
|
||||||
<!-- <el-row :gutter="10" class="mb8">
|
<!-- <el-row :gutter="10" class="mb8">
|
||||||
<el-col :span="1.5">
|
<el-col :span="1.5">
|
||||||
<el-button
|
<el-button
|
||||||
type="primary"
|
type="primary"
|
||||||
@@ -144,25 +147,25 @@
|
|||||||
></right-toolbar>
|
></right-toolbar>
|
||||||
</el-row> -->
|
</el-row> -->
|
||||||
|
|
||||||
<!-- 列表 -->
|
<!-- 列表 -->
|
||||||
<base-table
|
<base-table
|
||||||
:page="queryParams.pageNo"
|
:page="queryParams.pageNo"
|
||||||
:limit="queryParams.pageSize"
|
:limit="queryParams.pageSize"
|
||||||
:table-props="tableProps"
|
:table-props="tableProps"
|
||||||
:table-data="userList"
|
:table-data="userList"
|
||||||
:max-height="tableH"
|
:max-height="tableH"
|
||||||
@emitFun="handleStatusChange"
|
@emitFun="handleStatusChange"
|
||||||
>
|
>
|
||||||
<method-btn
|
<method-btn
|
||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
:width="220"
|
:width="220"
|
||||||
label="操作"
|
label="操作"
|
||||||
:method-list="tableBtn"
|
:method-list="tableBtn"
|
||||||
@clickBtn="handleClick"
|
@clickBtn="handleClick"
|
||||||
/>
|
/>
|
||||||
</base-table>
|
</base-table>
|
||||||
<!-- <el-table v-loading="loading" :data="userList">
|
<!-- <el-table v-loading="loading" :data="userList">
|
||||||
<el-table-column
|
<el-table-column
|
||||||
label="用户编号"
|
label="用户编号"
|
||||||
align="center"
|
align="center"
|
||||||
@@ -288,18 +291,19 @@
|
|||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table> -->
|
</el-table> -->
|
||||||
|
|
||||||
<pagination
|
<pagination
|
||||||
:page.sync="queryParams.pageNo"
|
:page.sync="queryParams.pageNo"
|
||||||
:limit.sync="queryParams.pageSize"
|
:limit.sync="queryParams.pageSize"
|
||||||
:total="total"
|
:total="total"
|
||||||
@pagination="getList"
|
@pagination="getList"
|
||||||
/>
|
/>
|
||||||
|
</div>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
|
|
||||||
<!-- 添加或修改参数配置对话框 -->
|
<!-- 添加或修改参数配置对话框 -->
|
||||||
<base-dialog :dialogTitle="title" :dialogVisible="open" width="50%">
|
<base-dialog :dialogTitle="title" :dialogVisible="open" width="50%">
|
||||||
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
<el-form ref="form" :model="form" :rules="rules" label-width="100px">
|
||||||
<el-row>
|
<el-row>
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label="用户昵称" prop="nickname">
|
<el-form-item label="用户昵称" prop="nickname">
|
||||||
@@ -412,8 +416,8 @@
|
|||||||
</el-row>
|
</el-row>
|
||||||
</el-form>
|
</el-form>
|
||||||
<div slot="footer" class="dialog-footer">
|
<div slot="footer" class="dialog-footer">
|
||||||
<el-button type="primary" @click="submitForm">确 定</el-button>
|
|
||||||
<el-button @click="cancel">取 消</el-button>
|
<el-button @click="cancel">取 消</el-button>
|
||||||
|
<el-button type="primary" @click="submitForm">确 定</el-button>
|
||||||
</div>
|
</div>
|
||||||
</base-dialog>
|
</base-dialog>
|
||||||
|
|
||||||
@@ -448,7 +452,7 @@
|
|||||||
:underline="false"
|
:underline="false"
|
||||||
style="font-size: 12px; vertical-align: baseline"
|
style="font-size: 12px; vertical-align: baseline"
|
||||||
@click="importTemplate"
|
@click="importTemplate"
|
||||||
>下载模板</el-link
|
>导出模板</el-link
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</el-upload>
|
</el-upload>
|
||||||
@@ -606,6 +610,11 @@ export default {
|
|||||||
name: "search",
|
name: "search",
|
||||||
color: "primary",
|
color: "primary",
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
type: "button",
|
||||||
|
btnName: "重置",
|
||||||
|
name: "cancel",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
type: this.$auth.hasPermiOr([
|
type: this.$auth.hasPermiOr([
|
||||||
"system:user:create",
|
"system:user:create",
|
||||||
@@ -615,18 +624,11 @@ export default {
|
|||||||
? "separate"
|
? "separate"
|
||||||
: "",
|
: "",
|
||||||
},
|
},
|
||||||
{
|
|
||||||
type: this.$auth.hasPermi("system:user:create") ? "button" : "",
|
|
||||||
btnName: "新增",
|
|
||||||
name: "addNew",
|
|
||||||
color: "success",
|
|
||||||
plain: true,
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: this.$auth.hasPermi("system:user:import") ? "button" : "",
|
type: this.$auth.hasPermi("system:user:import") ? "button" : "",
|
||||||
btnName: "导入",
|
btnName: "导入",
|
||||||
name: "import",
|
name: "import",
|
||||||
color: "warning",
|
color: "primary",
|
||||||
plain: true,
|
plain: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -636,20 +638,15 @@ export default {
|
|||||||
color: "primary",
|
color: "primary",
|
||||||
plain: true,
|
plain: true,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
type: this.$auth.hasPermi("system:user:create") ? "button" : "",
|
||||||
|
btnName: "新增",
|
||||||
|
name: "addNew",
|
||||||
|
color: "success",
|
||||||
|
plain: true,
|
||||||
|
},
|
||||||
],
|
],
|
||||||
tableBtn: [
|
tableBtn: [
|
||||||
this.$auth.hasPermi("system:user:update")
|
|
||||||
? {
|
|
||||||
type: "edit",
|
|
||||||
btnName: "修改",
|
|
||||||
}
|
|
||||||
: undefined,
|
|
||||||
this.$auth.hasPermi("system:user:delete")
|
|
||||||
? {
|
|
||||||
type: "delete",
|
|
||||||
btnName: "删除",
|
|
||||||
}
|
|
||||||
: undefined,
|
|
||||||
this.$auth.hasPermi("system:user:update-password")
|
this.$auth.hasPermi("system:user:update-password")
|
||||||
? {
|
? {
|
||||||
type: "reset",
|
type: "reset",
|
||||||
@@ -662,6 +659,18 @@ export default {
|
|||||||
btnName: "分配角色",
|
btnName: "分配角色",
|
||||||
}
|
}
|
||||||
: undefined,
|
: undefined,
|
||||||
|
this.$auth.hasPermi("system:user:update")
|
||||||
|
? {
|
||||||
|
type: "edit",
|
||||||
|
btnName: "修改",
|
||||||
|
}
|
||||||
|
: undefined,
|
||||||
|
this.$auth.hasPermi("system:user:delete")
|
||||||
|
? {
|
||||||
|
type: "delete",
|
||||||
|
btnName: "删除",
|
||||||
|
}
|
||||||
|
: undefined,
|
||||||
].filter((v) => v),
|
].filter((v) => v),
|
||||||
tableProps,
|
tableProps,
|
||||||
// 遮罩层
|
// 遮罩层
|
||||||
@@ -803,6 +812,15 @@ export default {
|
|||||||
case "search":
|
case "search":
|
||||||
this.handleQuery(val);
|
this.handleQuery(val);
|
||||||
break;
|
break;
|
||||||
|
case "cancel":
|
||||||
|
this.$refs["userSearchBarForm"].resetForm();
|
||||||
|
this.queryParams.pageNo = 1;
|
||||||
|
this.queryParams.username = "";
|
||||||
|
this.queryParams.mobile = "";
|
||||||
|
this.queryParams.status = "";
|
||||||
|
this.queryParams.createTime = [];
|
||||||
|
this.getList();
|
||||||
|
break;
|
||||||
case "addNew":
|
case "addNew":
|
||||||
this.handleAdd();
|
this.handleAdd();
|
||||||
break;
|
break;
|
||||||
@@ -1033,7 +1051,7 @@ export default {
|
|||||||
this.upload.title = "用户导入";
|
this.upload.title = "用户导入";
|
||||||
this.upload.open = true;
|
this.upload.open = true;
|
||||||
},
|
},
|
||||||
/** 下载模板操作 */
|
/** 导出模板操作 */
|
||||||
importTemplate() {
|
importTemplate() {
|
||||||
importTemplate().then((response) => {
|
importTemplate().then((response) => {
|
||||||
this.$download.excel(response, "用户导入模板.xls");
|
this.$download.excel(response, "用户导入模板.xls");
|
||||||
@@ -1090,11 +1108,19 @@ export default {
|
|||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.app-container {
|
.user-container {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: calc(100vh - 120px - 8px);
|
height: calc(100vh - 120px - 8px);
|
||||||
background-color: #fff;
|
background-color: #f2f4f9;
|
||||||
border-radius: 8px;
|
|
||||||
padding: 8px;
|
.user-box {
|
||||||
|
.user-box-left,
|
||||||
|
.user-box-right {
|
||||||
|
background-color: #fff;
|
||||||
|
padding: 8px;
|
||||||
|
border-radius: 8px;
|
||||||
|
height: calc(100vh - 128px);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
Reference in New Issue
Block a user