Browse Source

Merge branch 'yufei' of gitadmin/tuoheng_lc_web into develop

tags/v1.0.0^2
yufei111 2 years ago
parent
commit
7b4e56d611
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      src/views/dashboard/components/AirCard.vue
  2. +1
    -1
      src/views/task-manage/question/components/PositionDrawer.vue

+ 1
- 1
src/views/dashboard/components/AirCard.vue View File

@@ -88,7 +88,7 @@ export default {
{ label: '气温', value: (parm.tmp / 10) + '℃' },
{ label: '湿度', value: (parm.hum / 10) + 'RH' },
{ label: '风度', value: parm.wspd + 'm/s' },
{ label: '风向', value: parm.wdir }
{ label: '风向', value: parm.wdir + ' °' }
] : []
videoRef.value.disposeVideo()
nextTick(() => {

+ 1
- 1
src/views/task-manage/question/components/PositionDrawer.vue View File

@@ -36,7 +36,7 @@ export default defineComponent({
})
watch(() => props.data, (value) => {
data.problemList = [value]
})
}, { deep: true })
/* 获取抽屉的信息 */
const getDrawerOptions = computed(() => {
return {

Loading…
Cancel
Save