Browse Source

fix 看板

mayday 6 months ago
parent
commit
e983b846fb
2 changed files with 5 additions and 3 deletions
  1. 3 1
      .gitignore
  2. 2 2
      src/views/BI_manage/components/ChartBox.vue

+ 3 - 1
.gitignore

@@ -17,4 +17,6 @@
 
 /static/dll.vendor.js
 /.idea
-/static/base_config.js
+/static/base_config.js
+
+.vscode

+ 2 - 2
src/views/BI_manage/components/ChartBox.vue

@@ -1,7 +1,7 @@
 <template>
   <div class="chart-box" v-if="compData" ref="compRef" v-loading="loading" element-loading-text="拼命加载中">
     <div class="top-title-box">
-      <div class="title" @click="goDetail">{{ chartInfo.ChartName }}</div>
+      <div class="title" @click="goDetail">{{ chartInfo&&chartInfo.ChartName }}</div>
       <div class="opt-box">
         <img
           class="icon"
@@ -121,7 +121,7 @@ export default {
     async handleGetChartData() {
       const res = await dataBaseInterface.getChartByCode({ UniqueCode: this.compData.UniqueCode })
       this.loading = false
-      if (res.Ret !== 200) return;
+      if (res.Ret !== 200||!res.Data.ChartInfo) return;
       this.chartInfo = res.Data.ChartInfo;
 
       this.chartInfo.SeasonExtraConfig && (this.SeasonExtraConfig = JSON.parse(this.chartInfo.SeasonExtraConfig))