Browse Source

commit

master
hehongxing 3 years ago
parent
commit
4faccf7446
  1. 12
      04.系统编码/Frontend/src/components/DecisionSupport.vue
  2. 2
      04.系统编码/Frontend/src/components/MicrowaveRadiation.vue
  3. 2
      04.系统编码/Frontend/src/components/RamanLidar.vue
  4. 2
      04.系统编码/Frontend/src/components/SynergyEvaluation.vue
  5. 1
      04.系统编码/Frontend/src/uilts/Config.ts

12
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: '/images/decision-support/pollution-indicator/pollution-indicator.png',

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

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

2
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)',

1
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");
}
}

Loading…
Cancel
Save