This commit is contained in:
‘937886381’
2024-06-03 08:23:40 +08:00
parent 91fd1b09d5
commit 38665c38bd
39 changed files with 541 additions and 406 deletions

View File

@@ -1,8 +1,15 @@
<!--
<!--
* @Author: zhp
* @Date: 2024-04-28 13:42:51
* @LastEditTime: 2024-05-31 16:14:09
* @LastEditors: zhp
* @Description:
-->
<!--
filename: Bipv.vue
author: liubin
date: 2024-04-10 15:39:54
description:
description:
-->
<template>
@@ -24,7 +31,10 @@ export default {
data() {
const year = new Date().getFullYear();
// 城市数组的顺序必须是固定的
const cities = ["瑞昌", "邯郸", "株洲", "佳木斯", "成都", "凯盛", "蚌埠"];
const cities = ["瑞昌", "邯郸",
// "株洲", "佳木斯", "成都", "凯盛", "蚌埠"
];
return {
legend: [
{ label: `${year}年目标值`, color: "#f3c000" },

View File

@@ -1,8 +1,8 @@
<!--
<!--
filename: chip-invest.vue
author: liubin
date: 2024-04-10 08:59:28
description:
description:
-->
<template>
@@ -23,7 +23,9 @@ export default {
data() {
const year = new Date().getFullYear();
// 城市数组的顺序必须是固定的
const cities = ["瑞昌", "邯郸", "株洲", "佳木斯", "成都", "凯盛", "蚌埠"];
const cities = ["瑞昌", "邯郸",
// "株洲", "佳木斯", "成都", "凯盛", "蚌埠"
];
return {
legend: [
{ label: `${year - 1}`, color: "#12f7f1" },

View File

@@ -1,8 +1,8 @@
<!--
<!--
filename: ChipYield.vue
author: liubin
date: 2024-04-11 10:46:47
description:
description:
-->
<template>
@@ -11,24 +11,24 @@
<section class="right-part">
<div class="yield-location">
<section class="btn-group">
<button
<!-- <button
@click="activeLoc = '1'"
:class="activeLoc === '1' ? 'active' : ''"
>
成都
</button>
</button> -->
<button
@click="activeLoc = '2'"
:class="activeLoc === '2' ? 'active' : ''"
>
邯郸
</button>
<button
<!-- <button
@click="activeLoc = '3'"
:class="activeLoc === '3' ? 'active' : ''"
>
株洲
</button>
</button> -->
<button
@click="activeLoc = '4'"
:class="activeLoc === '4' ? 'active' : ''"
@@ -37,7 +37,7 @@
</button>
</section>
<section class="btn-group">
<button
<!-- <button
@click="activeLoc = '5'"
:class="activeLoc === '5' ? 'active' : ''"
class="fixwidth"
@@ -55,7 +55,7 @@
:class="activeLoc === '7' ? 'active' : ''"
>
蚌埠兴科
</button>
</button> -->
</section>
</div>
<div class="yield-summary">
@@ -85,13 +85,14 @@ export default {
props: {},
data() {
return {
activeLoc: "1",
activeLoc: "2",
};
},
computed: {
output() {
// ["瑞昌", "邯郸", "株洲", "佳木斯", "成都", "凯盛", "蚌埠"]
const chipOutput = this.$store.getters.home.chipOutput;
console.log('chipOutput', chipOutput);
if (
!chipOutput ||
!chipOutput.target ||

View File

@@ -1,8 +1,15 @@
<!--
<!--
* @Author: zhp
* @Date: 2024-04-28 13:42:51
* @LastEditTime: 2024-05-31 16:11:56
* @LastEditors: zhp
* @Description:
-->
<!--
filename: ChipYield.vue
author: liubin
date: 2024-04-11 10:46:47
description:
description:
-->
<template>

View File

@@ -1,8 +1,15 @@
<!--
<!--
* @Author: zhp
* @Date: 2024-04-28 13:42:51
* @LastEditTime: 2024-05-31 16:11:06
* @LastEditors: zhp
* @Description:
-->
<!--
filename: fto.vue
author: liubin
date: 2024-04-10 08:59:28
description:
description:
-->
<template>
@@ -23,7 +30,9 @@ export default {
data() {
const year = new Date().getFullYear();
// 城市数组的顺序必须是固定的
const cities = ["瑞昌", "邯郸", "株洲", "佳木斯", "成都", "凯盛", "蚌埠"];
const cities = ["瑞昌", "邯郸",
// "株洲", "佳木斯", "成都", "凯盛", "蚌埠"
];
return {
legend: [
{ label: `${year - 1}`, color: "#12f7f1" },

View File

@@ -1,8 +1,8 @@
<!--
<!--
filename: left-chart-base
author: liubin
date: 2024-04-10 08:59:28
description:
description:
-->
<template>
@@ -113,6 +113,16 @@ export default {
barWidth: 12,
itemStyle: {
borderRadius: [10, 10, 0, 0],
normal: {
label: {
show: true, //开启显示
position: 'top', //在上方显示
textStyle: { //数值样式
color: '#DFF1FE',
fontSize: 16
}
}
},
color: {
type: "linear",
x: 0,
@@ -146,11 +156,6 @@ export default {
name: '', // this.series[1].name,
type: "bar",
barWidth: 12,
// tooltip: {
// valueFormatter: function (value) {
// return value + " ml";
// },
// },
itemStyle: {
borderRadius: [10, 10, 0, 0],
color: {

View File

@@ -1,8 +1,15 @@
<!--
<!--
* @Author: zhp
* @Date: 2024-04-28 13:42:51
* @LastEditTime: 2024-05-31 16:13:47
* @LastEditors: zhp
* @Description:
-->
<!--
filename: right-chart-base
author: liubin
date: 2024-04-10 08:59:28
description:
description:
-->
<template>

View File

@@ -1,8 +1,8 @@
<!--
<!--
filename: Bipv.vue
author: liubin
date: 2024-04-10 15:39:54
description:
description:
-->
<template>
@@ -25,7 +25,9 @@ export default {
data() {
const year = new Date().getFullYear();
// 城市数组的顺序必须是固定的
const cities = ["瑞昌", "邯郸", "株洲", "佳木斯", "成都", "凯盛", "蚌埠"];
const cities = ["瑞昌", "邯郸",
// "株洲", "佳木斯", "成都", "凯盛", "蚌埠"
];
return {
legend: [
{ label: `${year}年目标值`, color: "#f3c000" },