This commit is contained in:
‘937886381’
2024-05-08 16:38:05 +08:00
parent b3578cdd8a
commit 9c9dba5452
31 changed files with 483 additions and 291 deletions

View File

@@ -1,8 +1,8 @@
<!--
<!--
filename: FtoInvest.vue
author: liubin
date: 2024-04-10 08:59:28
description:
description:
-->
<template>
@@ -73,7 +73,7 @@ export default {
break;
default:
dataList = [];
dataList[0] = chipInvest?.pervious;
dataList[0] = chipInvest?.previous;
dataList[1] = chipInvest?.current;
}
return getTemplate(this.period, dataList);

View File

@@ -1,8 +1,8 @@
<!--
<!--
filename: FtoInvest.vue
author: liubin
date: 2024-04-10 08:59:28
description:
description:
-->
<template>
@@ -74,7 +74,7 @@ export default {
break;
default:
dataList = [];
dataList[0] = ftoInvest?.pervious;
dataList[0] = ftoInvest?.previous;
dataList[1] = ftoInvest?.current;
}

View File

@@ -1,8 +1,8 @@
<!--
<!--
filename: DoubleRingChart.vue
author: liubin
date: 2024-04-17 11:01:55
description:
description:
-->
<template>
@@ -70,6 +70,7 @@ export default {
// [previousValue, currentValue, sumValue?]
const getter = this.$store.getters.copilot.yield[this.dataSourceField];
if (this.period === "日" || this.period === "周") {
console.log(this.period)
return [
getter.previous[this.factoryId],
getter.current[this.factoryId],