2024-03-06 16:14:09 +08:00
|
|
|
<template>
|
2024-03-12 16:15:45 +08:00
|
|
|
<div>
|
|
|
|
|
<div>
|
|
|
|
|
<TableHeader area datePicker ref="TableHeaderRef">
|
|
|
|
|
<template #select>
|
|
|
|
|
<el-form-item label="是否上传">
|
|
|
|
|
<el-select v-model="tableStore.table.params.searchState" placeholder="请选择是否上传">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in uploadData"
|
|
|
|
|
:key="item.id"
|
|
|
|
|
:label="item.name"
|
|
|
|
|
:value="item.id"
|
|
|
|
|
></el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</template>
|
|
|
|
|
<template #operation>
|
|
|
|
|
<el-button icon="el-icon-Upload" type="primary">上传</el-button>
|
|
|
|
|
<el-button icon="el-icon-Download" type="primary">导出</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</TableHeader>
|
|
|
|
|
<Table ref="tableRef" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
|
import { ref, onMounted, provide, nextTick } from 'vue'
|
|
|
|
|
import TableStore from '@/utils/tableStore'
|
|
|
|
|
import Table from '@/components/table/index.vue'
|
|
|
|
|
import TableHeader from '@/components/table/header/index.vue'
|
|
|
|
|
import { ElMessage, ElMessageBox } from 'element-plus'
|
|
|
|
|
import { mainHeight } from '@/utils/layout'
|
|
|
|
|
import { useDictData } from '@/stores/dictData'
|
|
|
|
|
import { addUse, updateUse, removeUse } from '@/api/advance-boot/bearingCapacity'
|
2024-03-06 16:14:09 +08:00
|
|
|
|
2024-03-12 16:15:45 +08:00
|
|
|
const dictData = useDictData()
|
|
|
|
|
const uploadData = [
|
|
|
|
|
{
|
|
|
|
|
id: 0,
|
2024-03-06 16:14:09 +08:00
|
|
|
|
2024-03-12 16:15:45 +08:00
|
|
|
label: '未上传'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 1,
|
|
|
|
|
|
|
|
|
|
label: '已上传'
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
const dialogVisible = ref(false)
|
|
|
|
|
const TableHeaderRef = ref()
|
|
|
|
|
const title = ref('')
|
2024-03-06 16:14:09 +08:00
|
|
|
|
2024-03-12 16:15:45 +08:00
|
|
|
const ruleFormRef = ref()
|
|
|
|
|
const tableStore = new TableStore({
|
|
|
|
|
url: '/system-boot/area/areaSelect',
|
|
|
|
|
publicHeight: 65,
|
|
|
|
|
method: 'POST',
|
|
|
|
|
column: [
|
|
|
|
|
{ width: '60', type: 'checkbox' },
|
|
|
|
|
{ field: 'orgName', title: '责任单位' },
|
|
|
|
|
{
|
|
|
|
|
field: 'planNo',
|
|
|
|
|
title: '普测计划编号'
|
|
|
|
|
},
|
|
|
|
|
{ field: 'planName', title: '普测计划名称' },
|
|
|
|
|
{ field: 'planStartTime', title: '开始时间' },
|
|
|
|
|
{ field: 'planEndTime', title: '结束时间' },
|
|
|
|
|
{ field: 'subCount', title: '普测变电站数量' },
|
|
|
|
|
{ field: 'isFileUpload', title: '是否上传' },
|
|
|
|
|
{ field: 'fileCount', title: '上传文件数量' },
|
|
|
|
|
{ field: 'uploadTime', title: '上传时间' }
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
loadCallback: () => {
|
|
|
|
|
tableStore.table.data = [
|
|
|
|
|
{
|
|
|
|
|
status: 2
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
tableStore.table.params.searchState = ''
|
|
|
|
|
tableStore.table.params.searchValue = ''
|
|
|
|
|
tableStore.table.params.type = ''
|
|
|
|
|
|
|
|
|
|
provide('tableStore', tableStore)
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
tableStore.index()
|
|
|
|
|
})
|
|
|
|
|
</script>
|