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',