添加填报人

This commit is contained in:
zhujiyan
2024-06-05 15:08:24 +08:00
parent fa4ce4693e
commit a66734a9f9
26 changed files with 235 additions and 44 deletions

View File

@@ -1,19 +1,16 @@
<template>
<!-- <div> 普测结果 发起预告警单</div> -->
<TableHeader datePicker ref='TableHeaderRef'>
<template v-slot:select>
<el-form-item label='计划名称'>
<el-input
v-model='tableStore.table.params.searchValue'
placeholder='请输入计划名称'
></el-input>
</el-form-item>
</template>
<TableHeader datePicker ref="TableHeaderRef">
<template v-slot:select>
<el-form-item label="计划名称">
<el-input v-model="tableStore.table.params.searchValue" placeholder="请输入计划名称"></el-input>
</el-form-item>
</template>
</TableHeader>
<Table ref='tableRef' />
<testQuestionsForm ref='testQuestionsFormRef' />
<Table ref="tableRef" />
<testQuestionsForm ref="testQuestionsFormRef" />
</template>
<script setup lang='ts'>
<script setup lang="ts">
import { ref, onMounted, provide, nextTick } from 'vue'
import TableStore from '@/utils/tableStore'
import Table from '@/components/table/index.vue'
@@ -22,12 +19,13 @@ import testQuestionsForm from './form/testQuestionsForm.vue'
import { initiateWarningLeaflet } from '@/api/supervision-boot/survey/test'
import { ElMessage } from 'element-plus'
import { useRouter } from 'vue-router'
import { useDictData } from '@/stores/dictData'
const dictData = useDictData()
const { push } = useRouter()
const router = useRouter() // 路由对象
const tableRef = ref()
const TableHeaderRef = ref()
const testQuestionsFormRef = ref()
const tableStore = new TableStore({
url: '/supervision-boot/surveyTest/pageProblemSurvey',
publicHeight: 65,
@@ -49,6 +47,14 @@ const tableStore = new TableStore({
{ field: 'planEndTime', title: '计划结束时间', minWidth: 100 },
{ field: 'completeTime', title: '实际完成时间', minWidth: 100 },
{ field: 'completeBy', title: '测试负责人', minWidth: 120 },
{
field: 'createBy',
title: '填报人',
minWidth: 80,
formatter: (row: any) => {
return dictData.state.userList.filter(item => item.id == row.cellValue)[0]?.name
}
},
{
title: '操作',
minWidth: '180',
@@ -86,8 +92,8 @@ const tableStore = new TableStore({
},
click: row => {
router.push({
name:'supervision/supervision/manage'
})
name: 'supervision/supervision/manage'
})
}
}
]
@@ -116,4 +122,4 @@ const initiateAlarm = async (id: string) => {
}
</script>
<style scoped lang='scss'></style>
<style scoped lang="scss"></style>