Merge branch 'master' of http://192.168.1.22:3000/frontend/admin-sjzx
This commit is contained in:
@@ -1,36 +1,36 @@
|
|||||||
<template>
|
<template>
|
||||||
<TableHeader area datePicker nextFlag theCurrentTime ref="TableHeaderRef">
|
<TableHeader area datePicker nextFlag theCurrentTime ref='TableHeaderRef'>
|
||||||
<template v-slot:select>
|
<template v-slot:select>
|
||||||
<el-form-item label="监督类型">
|
<el-form-item label='监督类型'>
|
||||||
<el-select v-model="tableStore.table.params.supvType" clearable placeholder="请选择流程状态">
|
<el-select v-model='tableStore.table.params.supvType' clearable placeholder='请选择流程状态'>
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item in supvTypeOptionList"
|
v-for='item in supvTypeOptionList'
|
||||||
: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>
|
||||||
<el-form-item label="流程状态">
|
<el-form-item label='流程状态'>
|
||||||
<el-select v-model="tableStore.table.params.status" clearable placeholder="请选择流程状态">
|
<el-select v-model='tableStore.table.params.status' clearable placeholder='请选择流程状态'>
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item in statusSelect"
|
v-for='item in statusSelect'
|
||||||
: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-Delete" type="primary" @click="deleteEven">删除</el-button>
|
<el-button icon='el-icon-Delete' type='primary' @click='deleteEven'>删除</el-button>
|
||||||
</template>
|
</template>
|
||||||
</TableHeader>
|
</TableHeader>
|
||||||
<Table ref="tableRef" :checkbox-config="checkboxConfig"/>
|
<Table ref='tableRef' :checkbox-config='checkboxConfig' />
|
||||||
<!-- 新增 -->
|
<!-- 新增 -->
|
||||||
<planTest ref="planTestRef" @onsubmit="tableStore.index()"/>
|
<planTest ref='planTestRef' @onsubmit='tableStore.index()' />
|
||||||
</template>
|
</template>
|
||||||
<script setup lang="ts">
|
<script setup lang='ts'>
|
||||||
import { ref, onMounted, provide, watch, nextTick } from 'vue'
|
import { ref, onMounted, provide, watch, nextTick } from 'vue'
|
||||||
import { useAdminInfo } from '@/stores/adminInfo'
|
import { useAdminInfo } from '@/stores/adminInfo'
|
||||||
//获取登陆用户姓名和部门
|
//获取登陆用户姓名和部门
|
||||||
@@ -315,7 +315,7 @@ onMounted(() => {
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
const props = defineProps({id: {type: String, default: 'null'}})
|
const props = defineProps(['id', 'businessKey'])
|
||||||
watch(() => props.id, async (newValue, oldValue) => {
|
watch(() => props.id, async (newValue, oldValue) => {
|
||||||
if (newValue === 'null') return // 直接返回,避免后续逻辑执行
|
if (newValue === 'null') return // 直接返回,避免后续逻辑执行
|
||||||
const fullId = newValue.split('@')[0]
|
const fullId = newValue.split('@')[0]
|
||||||
@@ -323,9 +323,13 @@ watch(() => props.id, async (newValue, oldValue) => {
|
|||||||
const routeTime = Number(newValue.split('@')[1])
|
const routeTime = Number(newValue.split('@')[1])
|
||||||
if (isNaN(routeTime) || nowTime - routeTime > import.meta.env.VITE_ROUTE_TIME_OUT) return // 路由时间超过500ms,则不执行
|
if (isNaN(routeTime) || nowTime - routeTime > import.meta.env.VITE_ROUTE_TIME_OUT) return // 路由时间超过500ms,则不执行
|
||||||
nextTick(() => {
|
nextTick(() => {
|
||||||
|
if (props.businessKey == '3') {
|
||||||
|
planTestRef.value.open('编辑', fullId, false)
|
||||||
|
} else {
|
||||||
planTestRef.value.open('重新发起计划测试', fullId, false)
|
planTestRef.value.open('重新发起计划测试', fullId, false)
|
||||||
|
}
|
||||||
})
|
})
|
||||||
}, { immediate: true })
|
}, { immediate: true })
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped lang="scss"></style>
|
<style scoped lang='scss'></style>
|
||||||
|
|||||||
@@ -2,10 +2,10 @@
|
|||||||
<div class='default-main'>
|
<div class='default-main'>
|
||||||
<el-tabs v-model='activeName' type='border-card'>
|
<el-tabs v-model='activeName' type='border-card'>
|
||||||
<el-tab-pane label='技术监督计划管理' name='1'>
|
<el-tab-pane label='技术监督计划管理' name='1'>
|
||||||
<plan-manage :id="id" v-if="activeName == '1'"/>
|
<plan-manage :id='id' v-if="activeName == '1'" />
|
||||||
</el-tab-pane>
|
</el-tab-pane>
|
||||||
<el-tab-pane label='技术监督测试管理' name='2'>
|
<el-tab-pane label='技术监督测试管理' name='2'>
|
||||||
<test-manage :id="id" v-if="activeName == '2'"/>
|
<test-manage :id='id' :businessKey='key' v-if="activeName == '2'" />
|
||||||
</el-tab-pane>
|
</el-tab-pane>
|
||||||
</el-tabs>
|
</el-tabs>
|
||||||
</div>
|
</div>
|
||||||
@@ -17,12 +17,13 @@ import planManage from './components/planManage.vue'
|
|||||||
import testManage from './components/testManage.vue'
|
import testManage from './components/testManage.vue'
|
||||||
import { mainHeight } from '@/utils/layout'
|
import { mainHeight } from '@/utils/layout'
|
||||||
import { useDictData } from '@/stores/dictData'
|
import { useDictData } from '@/stores/dictData'
|
||||||
import {useRoute} from "vue-router";
|
import { useRoute } from 'vue-router'
|
||||||
|
|
||||||
const route = useRoute()
|
const route = useRoute()
|
||||||
const dictData = useDictData()
|
const dictData = useDictData()
|
||||||
const statusSelect = dictData.statusSelect()
|
const statusSelect = dictData.statusSelect()
|
||||||
const id = ref('')
|
const id = ref('')
|
||||||
|
const key = ref('')
|
||||||
defineOptions({
|
defineOptions({
|
||||||
name: 'supervision/harmonicmanagement'
|
name: 'supervision/harmonicmanagement'
|
||||||
})
|
})
|
||||||
@@ -40,6 +41,7 @@ watch(() => route.query.t, async (newValue, oldValue) => {
|
|||||||
}
|
}
|
||||||
id.value = (route.query.id as string) || 'null'
|
id.value = (route.query.id as string) || 'null'
|
||||||
id.value = id.value + '@' + route.query.t
|
id.value = id.value + '@' + route.query.t
|
||||||
|
key.value = (route.query.key as string) || 'null'
|
||||||
}
|
}
|
||||||
}, { deep: true, immediate: true })
|
}, { deep: true, immediate: true })
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
Reference in New Issue
Block a user