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,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 ||