联调承载能力评估 绘制 谐波普测管理
This commit is contained in:
@@ -1,26 +1,21 @@
|
||||
<template>
|
||||
<TableHeader area datePicker ref="TableHeaderRef">
|
||||
<template #select>
|
||||
<el-form-item label=" 计划状态">
|
||||
<el-select v-model="tableStore.table.params.status" placeholder="请选择 计划状态">
|
||||
<el-option
|
||||
v-for="item in planstatus"
|
||||
:key="item.id"
|
||||
:label="item.name"
|
||||
:value="item.id"
|
||||
></el-option>
|
||||
<el-form-item label="计划状态">
|
||||
<el-select v-model="tableStore.table.params.status" placeholder="请选择计划状态">
|
||||
<el-option v-for="item in list" :key="item.id" :label="item.name" :value="item.id"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</template>
|
||||
<template #operation>
|
||||
<el-button icon="el-icon-Plus" type="primary" @click="add">新增计划</el-button>
|
||||
<el-button icon="el-icon-Stamp" type="primary">提交审核</el-button>
|
||||
<el-button icon="el-icon-Stamp" type="primary" @click="planReviewFn">提交审核</el-button>
|
||||
<el-button icon="el-icon-Download" type="primary">导出</el-button>
|
||||
</template>
|
||||
</TableHeader>
|
||||
<Table ref="tableRef" />
|
||||
<!-- 新增 -->
|
||||
<planAdd ref="planAddRef"/>
|
||||
<planAdd ref="planAddRef" @onsubmit="tableStore.index()" />
|
||||
</template>
|
||||
<script setup lang="ts">
|
||||
import { ref, onMounted, provide, nextTick } from 'vue'
|
||||
@@ -28,12 +23,13 @@ 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 { planStatus } from '@/api/process-boot/generalTest'
|
||||
import planAdd from './planAdd.vue'
|
||||
import { useDictData } from '@/stores/dictData'
|
||||
|
||||
import { initDetpStataionTree } from '@/api/process-boot/generalTest'
|
||||
const dictData = useDictData()
|
||||
const planstatus = [
|
||||
const list = [
|
||||
{
|
||||
id: 0,
|
||||
name: '新建'
|
||||
@@ -52,7 +48,6 @@ const planstatus = [
|
||||
}
|
||||
]
|
||||
|
||||
const planAddition = ref(false)
|
||||
const planAddRef = ref()
|
||||
const TableHeaderRef = ref()
|
||||
|
||||
@@ -72,10 +67,26 @@ const tableStore = new TableStore({
|
||||
{ field: 'planStartTime', title: '开始时间' },
|
||||
{ field: 'planEndTime', title: '结束时间' },
|
||||
{ field: 'subCount', title: '普测变电站数量' },
|
||||
{ field: 'status', title: '计划状态' },
|
||||
{
|
||||
field: 'status',
|
||||
title: '计划状态',
|
||||
render: 'tag',
|
||||
custom: {
|
||||
0: '',
|
||||
1: '',
|
||||
2: 'warning',
|
||||
3: 'success'
|
||||
},
|
||||
replaceValue: {
|
||||
0: '新建',
|
||||
1: '待审核',
|
||||
2: '未通过',
|
||||
3: '已发布'
|
||||
}
|
||||
},
|
||||
|
||||
{
|
||||
title: '计划详情',
|
||||
title: '操作',
|
||||
width: '180',
|
||||
render: 'buttons',
|
||||
buttons: [
|
||||
@@ -86,7 +97,9 @@ const tableStore = new TableStore({
|
||||
|
||||
icon: 'el-icon-Plus',
|
||||
render: 'basicButton',
|
||||
click: row => {}
|
||||
click: row => {
|
||||
planAddRef.value.open('查看计划', row)
|
||||
}
|
||||
},
|
||||
{
|
||||
name: 'edit',
|
||||
@@ -97,7 +110,9 @@ const tableStore = new TableStore({
|
||||
},
|
||||
icon: 'el-icon-Plus',
|
||||
render: 'basicButton',
|
||||
click: async row => {}
|
||||
click: async row => {
|
||||
planAddRef.value.open('编辑计划', row)
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -105,8 +120,7 @@ const tableStore = new TableStore({
|
||||
beforeSearchFun: () => {
|
||||
tableStore.table.params.orgNo = tableStore.table.params.deptIndex
|
||||
tableStore.table.params.currentPage = tableStore.table.params.pageNum
|
||||
},
|
||||
loadCallback: () => {}
|
||||
}
|
||||
})
|
||||
|
||||
tableStore.table.params.status = ''
|
||||
@@ -116,9 +130,28 @@ provide('tableStore', tableStore)
|
||||
const add = () => {
|
||||
// title.value = '普测计划新增'
|
||||
planAddRef.value.open('普测计划新增')
|
||||
planAddition.value = true
|
||||
}
|
||||
// 提交审核
|
||||
const planReviewFn = () => {
|
||||
let planNo: any = []
|
||||
let flag = true
|
||||
tableStore.table.selection.forEach(item => {
|
||||
if (item.status == 0 || item.status == 2) {
|
||||
planNo.push(item.planNo)
|
||||
} else {
|
||||
flag = false
|
||||
}
|
||||
})
|
||||
if (flag) {
|
||||
planStatus(planNo).then(res => {
|
||||
ElMessage.success('提交成功!')
|
||||
|
||||
tableStore.index()
|
||||
})
|
||||
} else {
|
||||
ElMessage.warning('请选择新建、未通过的计划进行审核!')
|
||||
}
|
||||
}
|
||||
// 取消
|
||||
|
||||
onMounted(() => {
|
||||
@@ -126,6 +159,4 @@ onMounted(() => {
|
||||
})
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
|
||||
</style>
|
||||
<style scoped lang="scss"></style>
|
||||
|
||||
Reference in New Issue
Block a user