From 4a5acba486d1a66086cc5d43cc39c0c2ea904c25 Mon Sep 17 00:00:00 2001 From: zhaoxiao Date: Thu, 6 Jan 2022 16:40:11 +0800 Subject: [PATCH] =?UTF-8?q?bug=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/config/router.config.js | 56 +++++++++++----------- src/views/standardsAssociation/Council.vue | 9 ++++ 2 files changed, 37 insertions(+), 28 deletions(-) diff --git a/src/config/router.config.js b/src/config/router.config.js index 1222c88..eb7dbfd 100644 --- a/src/config/router.config.js +++ b/src/config/router.config.js @@ -102,6 +102,20 @@ export const routerData = [ name: 'sub-bid-committee', id: '3' }, + { + redirect: null, + path: '/dataMember/DataMember', + component: 'dataMember/DataMember', + route: '1', + meta: { + icon: 'cus_pack', // 菜单前图标 + componentName: 'DataMember', + keepAlive: false, + title: '资料网员' // 菜单名称 + }, + name: 'data-member', + id: '6' + }, { redirect: null, path: '/standardsAssociation', @@ -269,34 +283,6 @@ export const routerData = [ } ] }, - { - redirect: null, - path: '/meetingActivity/MeetingActivity', - component: 'meetingActivity/MeetingActivity', - route: '1', - meta: { - icon: 'cus_meeting', // 菜单前图标 - componentName: 'MeetingActivity', - keepAlive: false, - title: '会议' // 菜单名称 - }, - name: 'meeting-activity', - id: '5' - }, - { - redirect: null, - path: '/dataMember/DataMember', - component: 'dataMember/DataMember', - route: '1', - meta: { - icon: 'cus_pack', // 菜单前图标 - componentName: 'DataMember', - keepAlive: false, - title: '资料网员' // 菜单名称 - }, - name: 'data-member', - id: '6' - }, { redirect: null, path: '/mineProject/MineProject', @@ -311,6 +297,20 @@ export const routerData = [ name: 'mine-project', id: '7' }, + { + redirect: null, + path: '/meetingActivity/MeetingActivity', + component: 'meetingActivity/MeetingActivity', + route: '1', + meta: { + icon: 'cus_meeting', // 菜单前图标 + componentName: 'MeetingActivity', + keepAlive: false, + title: '会议' // 菜单名称 + }, + name: 'meeting-activity', + id: '5' + }, { redirect: null, path: '/mineContract/MineContract', diff --git a/src/views/standardsAssociation/Council.vue b/src/views/standardsAssociation/Council.vue index 1ad29c7..2bc8dab 100644 --- a/src/views/standardsAssociation/Council.vue +++ b/src/views/standardsAssociation/Council.vue @@ -66,6 +66,15 @@ export default { return { columns: [ { + title: '序号', + dataIndex: '', + key: 'rowIndex', + width: 60, + align: 'center', + customRender: function (t, r, index) { + return parseInt(index) + 1 + } + }, { title: '理事会名称', align: 'center', dataIndex: 'name',