Newer
Older
carbon-metering-front / src / views / data / environment / page.vue
<!-- 分布式/楼宇/储能 -->
<script lang="ts" setup name="environmentPage">
import { ElMessage, ElMessageBox } from 'element-plus'
import editList from './pageAdd.vue'
import { deleteEnvironmentList, getEnvironmentList } from '@/api/api/index'
// 查询参数
const searchQuery = reactive({
  offset: 1,
  limit: 20,
  startTime: '',
  endTime: '',
})
// 查询时间段范围
const TimeRanges = ref()
// 监听时间段范围
watch(() => TimeRanges.value, (newVal: string[]) => {
  if (newVal && newVal.length) {
    searchQuery.startTime = newVal[0]
    searchQuery.endTime = newVal[1]
  }
}, { deep: true })
const loadingTable = ref(true)
const columns = ref([
  { text: '环境温度(°C)', value: 'temperature', align: 'center' },
  { text: '相对湿度(%rh)', value: 'humidity', align: 'center' },
  { text: '风速(km/h)', value: 'windSpeed', align: 'center' },
  { text: '风向', value: 'windDirection', align: 'center' },
  // { text: '大气压力', value: 'atmos', align: 'center' },
  // { text: '降雨量', value: 'rainfall', align: 'center' },
  // { text: '关照/总辐射量', value: 'radiation', align: 'center' },
  { text: '高温(°C)', value: 'temDay', align: 'center' },
  { text: '低温(°C)', value: 'temNight', align: 'center' },
  // { text: '城市', value: 'city', align: 'center' },
  // { text: '天气情况', value: 'wea', align: 'center' },
  // { text: '天气图标', value: 'weaImg', align: 'center' },
]) // 表格
const total = ref<number>(0)
const list = ref<any[]>([])
// 搜索
const search = () => {
  loadingTable.value = true
  getEnvironmentList(searchQuery).then((res) => {
    list.value = res.data.rows.map((item) => {
      return {
        ...item,
        radiation: `${item.careRadiation}/${item.totalRadiation}`,
      }
    })
    total.value = res.data.total
    loadingTable.value = false
  })
}
const editRef = ref()
// 编辑
const edit = (row: any) => {
  editRef.value.initDialog('update', row)
}
// 删除
const del = (row: any) => {
  ElMessageBox.confirm(
    '确认删除选中的数据吗?',
    '提示',
    {
      confirmButtonText: '确认',
      cancelButtonText: '取消',
      type: 'warning',
    },
  )
    .then(() => {
      deleteEnvironmentList(row.id).then((res) => {
        ElMessage({
          type: 'success',
          message: '删除成功',
        })
        search()
      })
    })
    .catch(() => {
    })
}
// 新增
const add = (row: any) => {
  editRef.value.initDialog('create', {})
}
// 重置
const reset = () => {
  searchQuery.offset = 1
  searchQuery.limit = 20
  searchQuery.startTime = ''
  searchQuery.endTime = ''
}
// 页数发生变化后的操作,可能是页码变化,可能是每页容量变化,此函数必写
const changePage = (val: { size?: number; page?: number }) => {
  if (val && val.size) {
    searchQuery.limit = val.size
  }
  if (val && val.page) {
    searchQuery.offset = val.page
  }
  search()
}
// 表格被选中的行
const selectList = ref<any[]>([])
// 表格多选
const multiSelect = (row: any[]) => {
  selectList.value = row
}
onMounted(() => {
  search()
})
const publicPath = import.meta.env.BASE_URL
</script>

<template>
  <div>
    <edit-list ref="editRef" @refresh="search" />
    <!-- 筛选条件 -->
    <search-area :need-clear="true" @search="search" @clear="reset">
      <search-item>
        <el-date-picker
          v-model="TimeRanges"
          type="datetimerange"
          format="YYYY-MM-DD" value-format="YYYY-MM-DD"
          range-separator="至"
          start-placeholder="上传开始时间"
          end-placeholder="上传结束时间"
          clearable
        />
      </search-item>
    </search-area>
    <table-container>
      <template #btns-right>
        <icon-button icon="icon-add" title="新增" @click="add" />
      </template>
      <!-- 表格区域 -->
      <normal-table
        :data="list" :total="total" :columns="columns as any"
        :query="{ limit: searchQuery.limit, offset: searchQuery.offset }" :list-loading="loadingTable"
        :is-showmulti-select="true" :is-multi="true" @change="changePage" @multiSelect="multiSelect"
      >
        <template #preColumns>
          <el-table-column label="序号" width="55" align="center">
            <template #default="scope">
              {{ (searchQuery.offset - 1) * searchQuery.limit + scope.$index + 1 }}
            </template>
          </el-table-column>
          <el-table-column label="城市" align="center">
            <template #default="{ row }">
              {{ row.city }}
            </template>
          </el-table-column>
          <el-table-column label="天气情况" align="center">
            <template #default="{ row }">
              {{ row.wea }}
            </template>
          </el-table-column>
          <el-table-column label="天气图标" align="center" width="120">
            <template #default="{ row }">
              <el-image style="width: 65px; height: 30px;" :src="`${publicPath}wea/${row.wea}.png`" />
            </template>
          </el-table-column>
        </template>
        <template #columns>
          <el-table-column label="操作" align="center" width="120">
            <template #default="{ row }">
              <el-button type="primary" link size="small" @click="edit(row)">
                修改
              </el-button>
              <el-button type="primary" link size="small" @click="del(row)">
                删除
              </el-button>
            </template>
          </el-table-column>
        </template>
      </normal-table>
    </table-container>
  </div>
</template>