This commit is contained in:
zhujiyan
2024-05-14 15:45:22 +08:00
parent 174e50d784
commit 9bb3505339
2 changed files with 165 additions and 152 deletions

View File

@@ -1,35 +1,38 @@
<template> <template>
<TableHeader ref='TableHeaderRef'> <TableHeader ref="TableHeaderRef">
<template #select> <template #select>
<el-form-item label='工程名称'> <el-form-item label="工程名称">
<el-input v-model='tableStore.table.params.searchValue' clearable></el-input> <el-input v-model="tableStore.table.params.searchValue" clearable></el-input>
</el-form-item> </el-form-item>
<el-form-item label='所属地市'> <el-form-item label="所属地市">
<el-select v-model='tableStore.table.params.loadType' clearable placeholder='请选择所属地市'> <el-select v-model="tableStore.table.params.loadType" clearable placeholder="请选择所属地市">
<el-option <el-option
v-for='item in areaOptionList' v-for="item in areaOptionList"
:key='item.id' :key="item.id"
:label='item.name' :label="item.name"
:value='item.id' :value="item.id"
></el-option> ></el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
</template> </template>
<template #operation> <template #operation>
<!-- <el-button icon="el-icon-Plus" type="primary" @click="addList">新增</el-button> --> <!-- <el-button icon="el-icon-Plus" type="primary" @click="addList">新增</el-button> -->
<el-button icon='el-icon-Plus' type='primary' @click='addFormModel'>新增</el-button> <el-button icon="el-icon-Plus" type="primary" @click="addFormModel">新增</el-button>
<el-button icon='el-icon-Download' @click='exportEvent' type='primary'>导出</el-button> <el-button icon="el-icon-Download" @click="exportEvent" type="primary">导出</el-button>
<el-button icon="el-icon-Plus" type="primary" @click="buildModel">建设</el-button>
</template> </template>
</TableHeader> </TableHeader>
<Table ref='tableRef' /> <Table ref="tableRef" />
<!-- 新增 --> <!-- 新增 -->
<Add ref='addRef' @onSubmit='tableStore.index()' /> <Add ref="addRef" @onSubmit="tableStore.index()" />
<!-- 上传 --> <!-- 上传 -->
<Audit ref='AuditRef' @onSubmit='tableStore.index()' /> <Audit ref="AuditRef" @onSubmit="tableStore.index()" />
<!-- 查看详情 detail 新增/修改 create--> <!-- 查看详情 detail 新增/修改 create-->
<addForm ref='addForms' v-if="show" @onSubmit='show=false;tableStore.index()' openType='create'></addForm> <addForm ref="addForms" @onSubmit="tableStore.index()" openType="create"></addForm>
<!-- 建设阶段表单 -->
<Build ref="buildForms" @onSubmit="tableStore.index()"></Build>
</template> </template>
<script setup lang='ts'> <script setup lang="ts">
import { ref, onMounted, provide, nextTick } from 'vue' import { ref, onMounted, provide, nextTick } from 'vue'
import TableStore from '@/utils/tableStore' import TableStore from '@/utils/tableStore'
import Table from '@/components/table/index.vue' import Table from '@/components/table/index.vue'
@@ -40,7 +43,7 @@ import Audit from './audit.vue'
import addForm from './addForm.vue' import addForm from './addForm.vue'
import { useDictData } from '@/stores/dictData' import { useDictData } from '@/stores/dictData'
import { getLoadTypeUserList } from '@/api/process-boot/interference' import { getLoadTypeUserList } from '@/api/process-boot/interference'
import Build from './build.vue'
const dictData = useDictData() const dictData = useDictData()
const { push } = useRouter() const { push } = useRouter()
@@ -50,7 +53,7 @@ const areaOptionList = dictData.getBasicData('jibei_area')
const addRef = ref() const addRef = ref()
const AuditRef = ref() const AuditRef = ref()
const ruleFormRef = ref() const ruleFormRef = ref()
const show:any=ref(false) const show: any = ref(false)
const fileList = ref([]) const fileList = ref([])
const tableStore = new TableStore({ const tableStore = new TableStore({
url: '/supervision-boot/userReport/getUserReport', url: '/supervision-boot/userReport/getUserReport',
@@ -60,7 +63,9 @@ const tableStore = new TableStore({
{ title: '序号', type: 'seq', width: 80 }, { title: '序号', type: 'seq', width: 80 },
{ field: 'projectName', title: '工程名称', minWidth: 170 }, { field: 'projectName', title: '工程名称', minWidth: 170 },
{ {
field: 'userType', title: '用户性质', minWidth: 150, field: 'userType',
title: '用户性质',
minWidth: 150,
formatter: (obj: any) => { formatter: (obj: any) => {
const userType = obj.row.userType const userType = obj.row.userType
return getUserTypeName(userType) return getUserTypeName(userType)
@@ -69,7 +74,9 @@ const tableStore = new TableStore({
{ field: 'city', title: '所属地市', minWidth: 80 }, { field: 'city', title: '所属地市', minWidth: 80 },
{ field: 'responsibleDepartment', title: '归口管理部门', minWidth: 130 }, { field: 'responsibleDepartment', title: '归口管理部门', minWidth: 130 },
{ {
field: 'userStatus', title: '用户状态', minWidth: 100, field: 'userStatus',
title: '用户状态',
minWidth: 100,
render: 'tag', render: 'tag',
custom: { custom: {
0: 'primary', 0: 'primary',
@@ -86,7 +93,9 @@ const tableStore = new TableStore({
}, },
{ field: 'substation', title: '变电站', minWidth: 100 }, { field: 'substation', title: '变电站', minWidth: 100 },
{ {
field: 'status', title: '审核状态', minWidth: 100, field: 'status',
title: '审核状态',
minWidth: 100,
render: 'tag', render: 'tag',
custom: { custom: {
1: 'primary', 1: 'primary',
@@ -138,7 +147,6 @@ const addList = () => {
addRef.value.open() addRef.value.open()
} }
//三个表单
const addForms = ref() const addForms = ref()
const addFormModel = () => { const addFormModel = () => {
show.value=true show.value=true
@@ -149,6 +157,10 @@ const addFormModel = () => {
} }
const buildForms = ref()
const buildModel = () => {
buildForms.value.open()
}
// 导出 // 导出
const exportEvent = () => { const exportEvent = () => {
let form = JSON.parse(JSON.stringify(tableStore.table.params)) let form = JSON.parse(JSON.stringify(tableStore.table.params))
@@ -161,7 +173,7 @@ const exportEvent = () => {
type: 'xlsx', //导出文件类型 xlsx 和 csv type: 'xlsx', //导出文件类型 xlsx 和 csv
useStyle: true, useStyle: true,
data: res.data.records, // 数据源 // 过滤那个字段导出 data: res.data.records, // 数据源 // 过滤那个字段导出
columnFilterMethod: function(column: any) { columnFilterMethod: function (column: any) {
return !(column.$columnIndex === 0) return !(column.$columnIndex === 0)
} }
}) })
@@ -182,7 +194,7 @@ const handleAudit = (instanceId: any) => {
} }
/**获取用户性质*/ /**获取用户性质*/
const getUserTypeName = (userType:any) => { const getUserTypeName = (userType: any) => {
if (userType === 0) { if (userType === 0) {
return '新建电网工程' return '新建电网工程'
} }
@@ -208,7 +220,7 @@ const getUserTypeName = (userType:any) => {
} }
</script> </script>
<style scoped lang='scss'> <style scoped lang="scss">
:deep(.el-upload-list__item) { :deep(.el-upload-list__item) {
width: 400px; width: 400px;
} }

View File

@@ -23,6 +23,7 @@ export default defineConfig({
// target: 'http://10.95.53.49:10215', //海南服务器ip // target: 'http://10.95.53.49:10215', //海南服务器ip
target: 'http://192.168.1.125:10215', //hsw target: 'http://192.168.1.125:10215', //hsw
// target: 'http://192.168.1.81:10215', //数据中心 // target: 'http://192.168.1.81:10215', //数据中心
// target: 'http://192.168.1.130:10215',
changeOrigin: true, changeOrigin: true,
rewrite: path => path.replace(/^\/api/, '') //路径重写,把'/api'替换为'' rewrite: path => path.replace(/^\/api/, '') //路径重写,把'/api'替换为''
}, },