Browse Source

commit

master
hehongxing 3 years ago
parent
commit
062526fb23
  1. BIN
      04.系统编码/Frontend/public/images/default-picture.png
  2. 25
      04.系统编码/Frontend/src/components/DecisionSupport.vue
  3. 2
      04.系统编码/Frontend/src/components/MicrowaveRadiation.vue
  4. 2
      04.系统编码/Frontend/src/components/RamanLidar.vue
  5. 38
      04.系统编码/Frontend/src/components/SynergyEvaluation.vue
  6. 2
      04.系统编码/Frontend/src/uilts/axios.ts

BIN
04.系统编码/Frontend/public/images/default-picture.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 143 B

25
04.系统编码/Frontend/src/components/DecisionSupport.vue

@ -54,6 +54,15 @@
:initial-index="1"
fit="contain"
>
<template #error>
<div class="image-slot">
<img src="/images/null-picture.png" />
</div>
<p class="image-tip">暂无图片</p>
</template>
<template #placeholder>
<div class="image-placeholder">正在加载...</div>
</template>
</el-image>
</div>
</div>
@ -77,36 +86,36 @@ import { post } from '../uilts/axios';
items: [{
title: '比湿',
imgName: 'TFLD_Q2',
imgUrl: '/images/null-picture.png',
imgUrl: '/images/default-picture.png',
preview: []
}, {
title: '风速和风向',
imgName: 'TFLD_V10',
imgUrl: '/images/null-picture.png',
imgUrl: '/images/default-picture.png',
preview: []
}, {
title: '降水',
imgName: 'TFLD_RAIN',
imgUrl: '/images/null-picture.png',
imgUrl: '/images/default-picture.png',
preview: []
}, {
title: '平均气温',
imgName: 'TFLD_T2',
imgUrl: '/images/null-picture.png',
imgUrl: '/images/default-picture.png',
preview: []
}, {
title: '最低温度',
imgName: 'TFLD_TN',
imgUrl: '/images/null-picture.png',
imgUrl: '/images/default-picture.png',
preview: []
}, {
title: '最高温度',
imgName: 'TFLD_TX',
imgUrl: '/images/null-picture.png',
imgUrl: '/images/default-picture.png',
preview: []
}],
indicatorImg: '/images/decision-support/pollution-indicator/pollution-indicator.png',
indicatorPreview: ['/images/decision-support/pollution-indicator/pollution-indicator.png']
indicatorImg: '/product/picture/images/decision-support/pollution-indicator/pollution-indicator.png',
indicatorPreview: ['/product/picture/images/decision-support/pollution-indicator/pollution-indicator.png']
})
onMounted(() => {

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

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

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

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

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

@ -150,86 +150,86 @@ import { post } from '../uilts/axios';
currentYear: '2000',
currentSurfaceTemperatureTime: 'time0130',
srcList: [],
imgUrl: '/images/null-picture.png',
imgUrl: '/images/default-picture.png',
imgUrls: [],
items: [{
title: '地表温度(01:30)',
type: 'temperature0130',
imgUrl: '',
imgUrl: '/images/default-picture.png',
preview: []
}, {
title: '地表温度(10:30)',
type: 'temperature1030',
imgUrl: '',
imgUrl: '/images/default-picture.png',
preview: []
}, {
title: '地表温度(13:30)',
type: 'temperature1330',
imgUrl: '',
imgUrl: '/images/default-picture.png',
preview: []
}, {
title: '地表温度(22:30)',
type: 'temperature2230',
imgUrl: '',
imgUrl: '/images/default-picture.png',
preview: []
}, {
title: '反照率',
type: 'albedo',
imgUrl: '',
imgUrl: '/images/default-picture.png',
preview: []
}, {
title: '蒸散发',
type: 'evaporation',
imgUrl: '',
imgUrl: '/images/default-picture.png',
preview: []
}],
trendItems: [{
type: 'month_01',
imgUrl: '',
imgUrl: '/images/default-picture.png',
preview: []
}, {
type: 'month_02',
imgUrl: '',
imgUrl: '/images/default-picture.png',
preview: []
}, {
type: 'month_03',
imgUrl: '',
imgUrl: '/images/default-picture.png',
preview: []
}, {
type: 'month_04',
imgUrl: '',
imgUrl: '/images/default-picture.png',
preview: []
}, {
type: 'month_05',
imgUrl: '',
imgUrl: '/images/default-picture.png',
preview: []
}, {
type: 'month_06',
imgUrl: '',
imgUrl: '/images/default-picture.png',
preview: []
}, {
type: 'month_07',
imgUrl: '',
imgUrl: '/images/default-picture.png',
preview: []
}, {
type: 'month_08',
imgUrl: '',
imgUrl: '/images/default-picture.png',
preview: []
}, {
type: 'month_09',
imgUrl: '',
imgUrl: '/images/default-picture.png',
preview: []
}, {
type: 'month_10',
imgUrl: '',
imgUrl: '/images/default-picture.png',
preview: []
}, {
type: 'month_11',
imgUrl: '',
imgUrl: '/images/default-picture.png',
preview: []
}, {
type: 'month_12',
imgUrl: '',
imgUrl: '/images/default-picture.png',
preview: []
}]
})

2
04.系统编码/Frontend/src/uilts/axios.ts

@ -5,7 +5,7 @@ import { ElLoading } from 'element-plus'
let loading = null;
const service = axios.create({
baseURL:"http://localhost:8002",
baseURL:"http://112.124.40.88:8002",
// baseURL:"",
timeout: 500000
})

Loading…
Cancel
Save