Browse Source

Merge remote-tracking branch 'remotes/origin/master'

master
xiaowuler 3 years ago
parent
commit
cd58ae5699
  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: [{ items: [{
title: '比湿', title: '比湿',
imgName: 'TFLD_Q2', imgName: 'TFLD_Q2',
imgUrl: '', imgUrl: '/images/null-picture.png',
preview: [] preview: []
}, { }, {
title: '风速和风向', title: '风速和风向',
imgName: 'TFLD_V10', imgName: 'TFLD_V10',
imgUrl: '', imgUrl: '/images/null-picture.png',
preview: [] preview: []
}, { }, {
title: '降水', title: '降水',
imgName: 'TFLD_RAIN', imgName: 'TFLD_RAIN',
imgUrl: '', imgUrl: '/images/null-picture.png',
preview: [] preview: []
}, { }, {
title: '平均气温', title: '平均气温',
imgName: 'TFLD_T2', imgName: 'TFLD_T2',
imgUrl: '', imgUrl: '/images/null-picture.png',
preview: [] preview: []
}, { }, {
title: '最低温度', title: '最低温度',
imgName: 'TFLD_TN', imgName: 'TFLD_TN',
imgUrl: '', imgUrl: '/images/null-picture.png',
preview: [] preview: []
}, { }, {
title: '最高温度', title: '最高温度',
imgName: 'TFLD_TX', imgName: 'TFLD_TX',
imgUrl: '', imgUrl: '/images/null-picture.png',
preview: [] preview: []
}], }],
indicatorImg: '/product/picture/images/decision-support/pollution-indicator/pollution-indicator.png', indicatorImg: '/product/picture/images/decision-support/pollution-indicator/pollution-indicator.png',

2
04.系统编码/Frontend/src/components/MicrowaveRadiation.vue

@ -118,7 +118,7 @@
hours: [], hours: [],
times: [], times: [],
currentTime: null, currentTime: null,
imgUrl: null, imgUrl: '/images/null-picture.png',
srcList: [], srcList: [],
isPlay: false, isPlay: false,
title: null, title: null,

2
04.系统编码/Frontend/src/components/RamanLidar.vue

@ -97,7 +97,7 @@
hours: [], hours: [],
times: [], times: [],
currentTime: null, currentTime: null,
imgUrl: null, imgUrl: '/images/null-picture.png',
srcList: [], srcList: [],
isPlay: false, isPlay: false,
title: null, title: null,

2
04.系统编码/Frontend/src/components/SynergyEvaluation.vue

@ -143,7 +143,7 @@
currentYear: '2000', currentYear: '2000',
currentSurfaceTemperatureTime: 'time0130', currentSurfaceTemperatureTime: 'time0130',
srcList: [], srcList: [],
imgUrl: null, imgUrl: '/images/null-picture.png',
imgUrls: [], imgUrls: [],
items: [{ items: [{
title: '地表温度(01:30)', title: '地表温度(01:30)',

1
04.系统编码/Frontend/src/uilts/Config.ts

@ -8,6 +8,7 @@ export class Config {
export class MicrowaveRadiationConfig { export class MicrowaveRadiationConfig {
private static url: string = Config.parentUrl + "/weibo"; private static url: string = Config.parentUrl + "/weibo";
public static getUrl(station: string, type: string, time: Moment): string { 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"); return this.url+ '/' + station + '/' + type + '/' + time.format("YYYY/YYYYMM/YYYYMMDD/YYYYMMDDHHmmss.png");
} }
} }

Loading…
Cancel
Save