技术监督台账管理功能
This commit is contained in:
@@ -17,7 +17,7 @@
|
||||
</el-form-item>
|
||||
</template>
|
||||
<template #operation>
|
||||
<el-button icon='' type='primary'>新增入网设计方案审查</el-button>
|
||||
<el-button icon='' type='primary' @click='goNet()'>新增入网设计方案审查</el-button>
|
||||
|
||||
<el-button style='margin-left: 50px' :icon='Back' @click='go(-1)'>返回</el-button>
|
||||
</template>
|
||||
@@ -25,12 +25,17 @@
|
||||
<Table ref='tableRef' />
|
||||
</div>
|
||||
|
||||
<!-- <el-dialog title='干扰源用户入网方案审查' v-model='dialogVisible' width='70%'>
|
||||
<BpmUserReportDetail :id='interId' style='max-height: 600px'></BpmUserReportDetail>
|
||||
</el-dialog>-->
|
||||
</template>
|
||||
<script setup lang='ts'>
|
||||
|
||||
|
||||
defineOptions({
|
||||
name: 'ProgramReview'
|
||||
})
|
||||
import BackComponent from '@/components/icon/back/index.vue'
|
||||
|
||||
|
||||
import { ref, onMounted, provide, nextTick } from 'vue'
|
||||
import TableStore from '@/utils/tableStore'
|
||||
@@ -40,12 +45,15 @@ import { useDictData } from '@/stores/dictData'
|
||||
|
||||
import { useRouter } from 'vue-router'
|
||||
import { Back } from '@element-plus/icons-vue'
|
||||
const { go } = useRouter()
|
||||
import BpmUserReportDetail from '@/views/pqs/supervise/interfere/components/normalizationManager/detail.vue'
|
||||
const {go} = useRouter()
|
||||
|
||||
|
||||
|
||||
const dictData = useDictData()
|
||||
const areaOptionList = dictData.getBasicData('jibei_area')
|
||||
|
||||
const { push } = useRouter()
|
||||
|
||||
const TableHeaderRef = ref()
|
||||
const tableStore = new TableStore({
|
||||
url: '/supervision-boot/userReport/getInterferenceUserPage',
|
||||
@@ -102,24 +110,18 @@ const tableStore = new TableStore({
|
||||
}
|
||||
})
|
||||
|
||||
tableStore.table.params.loadType = ''
|
||||
tableStore.table.params.userName = ''
|
||||
tableStore.table.params.relationUserName = ''
|
||||
tableStore.table.params.aisFileUpload = ''
|
||||
const dialogVisible = ref(false)
|
||||
|
||||
|
||||
provide('tableStore', tableStore)
|
||||
onMounted(() => {
|
||||
//interId.value = currentRoute.value.query.id
|
||||
tableStore.index()
|
||||
})
|
||||
|
||||
/** 方案审查 */
|
||||
const toFangAn = (id: any) => {
|
||||
push({
|
||||
name: 'ProgramReview',
|
||||
query: {
|
||||
id: id
|
||||
}
|
||||
})
|
||||
const goNet = () => {
|
||||
dialogVisible.value = true
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user