Commit 861ea352 by 史敦盼

修改

1 parent 37a43cbe
...@@ -29,3 +29,6 @@ export const querySupervisionNotifyManagement = ...@@ -29,3 +29,6 @@ export const querySupervisionNotifyManagement =
// 架构督查- 督查问题整改列表 // 架构督查- 督查问题整改列表
export const querySupervisionProblem = export const querySupervisionProblem =
EADC_ARRCHITECTURE + '/rectifyReform/selectRectifyReform' EADC_ARRCHITECTURE + '/rectifyReform/selectRectifyReform'
// 概设评审基础管理
export const queryConceptualBaseManagement = EADC_ARRCHITECTURE + '/int-info/'
...@@ -290,6 +290,16 @@ const routes = [ ...@@ -290,6 +290,16 @@ const routes = [
name: 'supervisionProblemEdit', name: 'supervisionProblemEdit',
component: () => import('@/views/supervisionProblemEdit/index.vue'), component: () => import('@/views/supervisionProblemEdit/index.vue'),
}, },
{
path: '/main/architectureFollowExamine', // 架构督查架构遵从检查
name: 'architectureFollowExamine',
component: () => import('@/views/architectureFollowExamine/index.vue'),
},
{
path: '/main/artPolicyExamine', // 架构督查-技术政策审查
name: 'artPolicyExamine',
component: () => import('@/views/artPolicyExamine/index.vue'),
},
], ],
}, },
] ]
......
...@@ -214,11 +214,11 @@ export const menuOptions = [ ...@@ -214,11 +214,11 @@ export const menuOptions = [
}, },
{ {
name: '架构遵从检查', name: '架构遵从检查',
path: '', path: '/main/architectureFollowExamine',
}, },
{ {
name: '技术政策审查', name: '技术政策审查',
path: '', path: '/main/artPolicyExamine',
}, },
], ],
}, },
......
<!--
* @Description: 架构督查-架构遵从检查
* @Version: 2.0
* @Autor: pan
* @Date: 2024-03-26 18:27:18
* @LastEditors: pan
* @LastEditTime: 2024-03-26 18:28:54
-->
<template>
<div></div>
</template>
<script>
export default {
data() {
return {}
},
components: {},
mounted() {},
methods: {},
}
</script>
<style scoped lang="scss"></style>
<!--
* @Description: 架构督查-技术政策审查
* @Version: 2.0
* @Autor: pan
* @Date: 2024-03-26 18:27:18
* @LastEditors: pan
* @LastEditTime: 2024-03-26 18:29:56
-->
<template>
<div></div>
</template>
<script>
export default {
name: 'artPolicyExamine',
data() {
return {}
},
components: {},
mounted() {},
methods: {},
}
</script>
<style scoped lang="scss"></style>
<!-- <!--
* @Description: integration-info-controller * @Description: 概设评审基础管理 integration-info-controller
* @Version: 2.0 * @Version: 2.0
* @Autor: pan * @Autor: pan
* @Date: 2024-03-21 20:58:31 * @Date: 2024-03-21 20:58:31
* @LastEditors: pan * @LastEditors: pan
* @LastEditTime: 2024-03-22 16:48:05 * @LastEditTime: 2024-03-26 17:31:29
--> -->
<template> <template>
<div class="searchTable"> <div class="searchTable">
...@@ -68,7 +68,7 @@ import ListPage from '@/components/ListPage.vue' ...@@ -68,7 +68,7 @@ import ListPage from '@/components/ListPage.vue'
import SearchForm from '@/components/SearchForm.vue' import SearchForm from '@/components/SearchForm.vue'
import TableConfig from '@/components/TableConfig.vue' import TableConfig from '@/components/TableConfig.vue'
import { queryDemandManagement } from '@/api/interface' import { queryConceptualBaseManagement } from '@/api/interface'
import { editNeedInfo } from '@/api' import { editNeedInfo } from '@/api'
import { buildType, approvalStatusOptions } from '@/utils/dictionary' import { buildType, approvalStatusOptions } from '@/utils/dictionary'
export default { export default {
...@@ -76,7 +76,7 @@ export default { ...@@ -76,7 +76,7 @@ export default {
data() { data() {
return { return {
query: { query: {
url: queryDemandManagement, url: queryConceptualBaseManagement,
method: 'post', method: 'post',
queryParam: {}, queryParam: {},
}, },
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* @Autor: pan * @Autor: pan
* @Date: 2024-03-26 10:53:48 * @Date: 2024-03-26 10:53:48
* @LastEditors: pan * @LastEditors: pan
* @LastEditTime: 2024-03-26 16:34:20 * @LastEditTime: 2024-03-26 16:56:57
--> -->
<template> <template>
<div class="searchTable"> <div class="searchTable">
...@@ -17,7 +17,6 @@ ...@@ -17,7 +17,6 @@
<template #tableWrap> <template #tableWrap>
<table-config <table-config
ref="searchTable" ref="searchTable"
@selection-change="selectionChange"
:query="query" :query="query"
:columns="columns" :columns="columns"
id-key="elementId" id-key="elementId"
...@@ -152,10 +151,6 @@ export default { ...@@ -152,10 +151,6 @@ export default {
}, },
created() {}, created() {},
methods: { methods: {
// 表格勾选的数据
selectionChange(data) {
this.selectRows = data
},
querySearch(data) { querySearch(data) {
this.query.queryParam = { this.query.queryParam = {
...this.query.queryParam, ...this.query.queryParam,
...@@ -163,11 +158,6 @@ export default { ...@@ -163,11 +158,6 @@ export default {
} }
this.$refs.searchTable.queryData() this.$refs.searchTable.queryData()
}, },
fnAdd() {
this.rowData = {}
this.dialogTitle = '新增批次计划'
this.visible = true
},
/** /**
* @description: 操作按钮 * @description: 操作按钮
* @param {Object} row 当前操作行数据 * @param {Object} row 当前操作行数据
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* @Autor: pan * @Autor: pan
* @Date: 2024-03-26 10:53:48 * @Date: 2024-03-26 10:53:48
* @LastEditors: pan * @LastEditors: pan
* @LastEditTime: 2024-03-26 16:42:10 * @LastEditTime: 2024-03-26 17:27:33
--> -->
<template> <template>
<div class="searchTable"> <div class="searchTable">
...@@ -86,19 +86,27 @@ export default { ...@@ -86,19 +86,27 @@ export default {
columns() { columns() {
return [ return [
{ label: '序号', type: 'index', width: '80px' }, { label: '序号', type: 'index', width: '80px' },
{ label: '项目名称', prop: 'prjName' }, { label: '项目名称', prop: 'prjName', width: '200px' },
{ label: '归属部门', prop: 'buildOrg', width: '300px' },
{ {
label: '承建单位', label: '承建单位',
width: '160px', width: '160px',
prop: 'reportTime', prop: 'buildOrg',
}, },
{ label: '问题类型', width: '100px', prop: 'version' }, { label: '督查名称', width: '200px', prop: 'supervName' },
{ label: '问题描述', prop: 'opinion' }, { label: '项目总评价', prop: 'prjOpinion', width: '200px' },
{ label: '项目总评分', prop: 'prjScore', width: '120px' },
{ label: '指标名称', prop: 'indexName', width: '120px' },
{ label: '指标评价', prop: 'indexOpinion' },
{ label: '指标评分', prop: 'score' },
{ label: '整改日期', prop: 'createTime', width: '120px' },
{ label: '整改情况', prop: 'state' },
{ label: '是否典型问题', prop: 'typical' },
{ label: '问题等级', prop: 'level' },
{ {
label: '操作', label: '操作',
type: 'operation', type: 'operation',
width: '520px', width: '380px',
actionButtons: [ actionButtons: [
{ {
title: '编辑', title: '编辑',
...@@ -115,20 +123,6 @@ export default { ...@@ -115,20 +123,6 @@ export default {
icon: 'el-icon-view', icon: 'el-icon-view',
}, },
{ {
title: '提交',
size: 'mini',
icon: 'el-icon-circle-check',
type: 'primary',
plain: true,
},
{
title: '审批',
size: 'mini',
icon: 'el-icon-s-check',
type: 'primary',
plain: true,
},
{
title: '发布', title: '发布',
size: 'mini', size: 'mini',
icon: 'el-icon-s-check', icon: 'el-icon-s-check',
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!