|
@@ -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))
|