diff --git a/src/views/bg/bgpartymatter/BgPartymatterList.vue b/src/views/bg/bgpartymatter/BgPartymatterList.vue index 1499168..97e87ef 100644 --- a/src/views/bg/bgpartymatter/BgPartymatterList.vue +++ b/src/views/bg/bgpartymatter/BgPartymatterList.vue @@ -276,7 +276,7 @@ clickToRowSelect: false, rowSelection: {type: 'checkbox'}, actionColumn: { - width: 120, + width: 150, fixed:'right' }, beforeFetch: async (params) => { @@ -512,6 +512,10 @@ onClick: handleEdit.bind(null, record), auth: actionAuth.edit }, + { + label: '详情', + onClick: handleDetail.bind(null, record), + }, ]; } @@ -521,9 +525,6 @@ function getDropDownAction(record){ let dropDownAction = [ { - label: '详情', - onClick: handleDetail.bind(null, record), - }, { label: '删除', popConfirm: { title: '是否确认删除', diff --git a/src/views/bg/bqtakepulse/BgTakepulse.data.ts b/src/views/bg/bqtakepulse/BgTakepulse.data.ts index f13b6a3..2056399 100644 --- a/src/views/bg/bqtakepulse/BgTakepulse.data.ts +++ b/src/views/bg/bqtakepulse/BgTakepulse.data.ts @@ -12,6 +12,12 @@ export const columns: BasicColumn[] = [ dataIndex: 'year_dictText', width: '60px', }, + { + title: '意见主题', + align:"center", + dataIndex: 'title', + width: '350px', + }, { title: '会议类型', align:"center", @@ -24,12 +30,6 @@ export const columns: BasicColumn[] = [ dataIndex: 'type', width: '140px', }, - { - title: '意见主题', - align:"center", - dataIndex: 'title', - width: '350px', - }, { title: '具体意见', align:"center", diff --git a/src/views/bg/bqtakepulse/BgTakepulseList.vue b/src/views/bg/bqtakepulse/BgTakepulseList.vue index 73c3a57..75e2006 100644 --- a/src/views/bg/bqtakepulse/BgTakepulseList.vue +++ b/src/views/bg/bqtakepulse/BgTakepulseList.vue @@ -295,7 +295,7 @@ clickToRowSelect: false, rowSelection: { type: 'checkbox' }, actionColumn: { - width: 120, + width: 150, fixed: 'right', }, beforeFetch: async (params) => { @@ -528,6 +528,10 @@ onClick: handleEdit.bind(null, record), auth: 'bqtakepulse:bg_takepulse:edit', }, + { + label: '详情', + onClick: handleDetail.bind(null, record), + }, ]; } /** @@ -535,10 +539,6 @@ */ function getDropDownAction(record) { let dropDownAction = [ - { - label: '详情', - onClick: handleDetail.bind(null, record), - }, { label: '删除', popConfirm: {