diff --git a/04.系统编码/Frontend/src/components/DecisionSupport.vue b/04.系统编码/Frontend/src/components/DecisionSupport.vue index 15cc658..ab19541 100644 --- a/04.系统编码/Frontend/src/components/DecisionSupport.vue +++ b/04.系统编码/Frontend/src/components/DecisionSupport.vue @@ -73,32 +73,32 @@ items: [{ title: '比湿', imgName: 'TFLD_Q2', - imgUrl: '', + imgUrl: '/images/null-picture.png', preview: [] }, { title: '风速和风向', imgName: 'TFLD_V10', - imgUrl: '', + imgUrl: '/images/null-picture.png', preview: [] }, { title: '降水', imgName: 'TFLD_RAIN', - imgUrl: '', + imgUrl: '/images/null-picture.png', preview: [] }, { title: '平均气温', imgName: 'TFLD_T2', - imgUrl: '', + imgUrl: '/images/null-picture.png', preview: [] }, { title: '最低温度', imgName: 'TFLD_TN', - imgUrl: '', + imgUrl: '/images/null-picture.png', preview: [] }, { title: '最高温度', imgName: 'TFLD_TX', - imgUrl: '', + imgUrl: '/images/null-picture.png', preview: [] }], indicatorImg: '/product/picture/images/decision-support/pollution-indicator/pollution-indicator.png', diff --git a/04.系统编码/Frontend/src/components/MicrowaveRadiation.vue b/04.系统编码/Frontend/src/components/MicrowaveRadiation.vue index 887d0c3..dfc361a 100644 --- a/04.系统编码/Frontend/src/components/MicrowaveRadiation.vue +++ b/04.系统编码/Frontend/src/components/MicrowaveRadiation.vue @@ -118,7 +118,7 @@ hours: [], times: [], currentTime: null, - imgUrl: null, + imgUrl: '/images/null-picture.png', srcList: [], isPlay: false, title: null, diff --git a/04.系统编码/Frontend/src/components/RamanLidar.vue b/04.系统编码/Frontend/src/components/RamanLidar.vue index 2df742e..3ebdd1b 100644 --- a/04.系统编码/Frontend/src/components/RamanLidar.vue +++ b/04.系统编码/Frontend/src/components/RamanLidar.vue @@ -97,7 +97,7 @@ hours: [], times: [], currentTime: null, - imgUrl: null, + imgUrl: '/images/null-picture.png', srcList: [], isPlay: false, title: null, diff --git a/04.系统编码/Frontend/src/components/SynergyEvaluation.vue b/04.系统编码/Frontend/src/components/SynergyEvaluation.vue index cc637f3..036843f 100644 --- a/04.系统编码/Frontend/src/components/SynergyEvaluation.vue +++ b/04.系统编码/Frontend/src/components/SynergyEvaluation.vue @@ -143,7 +143,7 @@ currentYear: '2000', currentSurfaceTemperatureTime: 'time0130', srcList: [], - imgUrl: null, + imgUrl: '/images/null-picture.png', imgUrls: [], items: [{ title: '地表温度(01:30)', diff --git a/04.系统编码/Frontend/src/uilts/Config.ts b/04.系统编码/Frontend/src/uilts/Config.ts index 6422b3c..7f33d8a 100644 --- a/04.系统编码/Frontend/src/uilts/Config.ts +++ b/04.系统编码/Frontend/src/uilts/Config.ts @@ -8,6 +8,7 @@ export class Config { export class MicrowaveRadiationConfig { private static url: string = Config.parentUrl + "/weibo"; public static getUrl(station: string, type: string, time: Moment): string { + console.log(this.url+ '/' + station + '/' + type + '/' + time.format("YYYY/YYYYMM/YYYYMMDD/YYYYMMDDHHmmss.png")) return this.url+ '/' + station + '/' + type + '/' + time.format("YYYY/YYYYMM/YYYYMMDD/YYYYMMDDHHmmss.png"); } }