|
@@ -897,7 +897,7 @@ export default {
|
|
|
async refreshHandle() {
|
|
|
// 清除缓存配置项
|
|
|
this.refreshLoading = true;
|
|
|
- const { Source,ChartInfoId,UniqueCode } = this.chartInfo;
|
|
|
+ const { Source,ChartInfoId,UniqueCode,ChartType } = this.chartInfo;
|
|
|
|
|
|
let res=null
|
|
|
if(Source===1){
|
|
@@ -917,7 +917,10 @@ export default {
|
|
|
this.refreshLoading = false;
|
|
|
if (res.Ret !== 200) return
|
|
|
this.$message.success(res.Msg);
|
|
|
- Source === 1 ? this.getPreviewChartInfo() : this.getChartDetail(UniqueCode);
|
|
|
+
|
|
|
+ Source===1&&![7,10].includes(ChartType)
|
|
|
+ ? this.getPreviewChartInfo()
|
|
|
+ : this.getChartDetail(UniqueCode);
|
|
|
},
|
|
|
// 英文面板时候的判断
|
|
|
copyChartConfirm(type){
|