yxk-20260817

把把脉、所务会、党委会的列表操作栏样式优化
This commit is contained in:
ye1023
2026-08-17 11:13:15 +08:00
parent 1d1e177ce3
commit 981ca8ba5b
3 changed files with 16 additions and 15 deletions
@@ -276,7 +276,7 @@
clickToRowSelect: false, clickToRowSelect: false,
rowSelection: {type: 'checkbox'}, rowSelection: {type: 'checkbox'},
actionColumn: { actionColumn: {
width: 120, width: 150,
fixed:'right' fixed:'right'
}, },
beforeFetch: async (params) => { beforeFetch: async (params) => {
@@ -512,6 +512,10 @@
onClick: handleEdit.bind(null, record), onClick: handleEdit.bind(null, record),
auth: actionAuth.edit auth: actionAuth.edit
}, },
{
label: '详情',
onClick: handleDetail.bind(null, record),
},
]; ];
} }
@@ -521,9 +525,6 @@
function getDropDownAction(record){ function getDropDownAction(record){
let dropDownAction = [ let dropDownAction = [
{ {
label: '详情',
onClick: handleDetail.bind(null, record),
}, {
label: '删除', label: '删除',
popConfirm: { popConfirm: {
title: '是否确认删除', title: '是否确认删除',
+6 -6
View File
@@ -12,6 +12,12 @@ export const columns: BasicColumn[] = [
dataIndex: 'year_dictText', dataIndex: 'year_dictText',
width: '60px', width: '60px',
}, },
{
title: '意见主题',
align:"center",
dataIndex: 'title',
width: '350px',
},
{ {
title: '会议类型', title: '会议类型',
align:"center", align:"center",
@@ -24,12 +30,6 @@ export const columns: BasicColumn[] = [
dataIndex: 'type', dataIndex: 'type',
width: '140px', width: '140px',
}, },
{
title: '意见主题',
align:"center",
dataIndex: 'title',
width: '350px',
},
{ {
title: '具体意见', title: '具体意见',
align:"center", align:"center",
+5 -5
View File
@@ -295,7 +295,7 @@
clickToRowSelect: false, clickToRowSelect: false,
rowSelection: { type: 'checkbox' }, rowSelection: { type: 'checkbox' },
actionColumn: { actionColumn: {
width: 120, width: 150,
fixed: 'right', fixed: 'right',
}, },
beforeFetch: async (params) => { beforeFetch: async (params) => {
@@ -528,6 +528,10 @@
onClick: handleEdit.bind(null, record), onClick: handleEdit.bind(null, record),
auth: 'bqtakepulse:bg_takepulse:edit', auth: 'bqtakepulse:bg_takepulse:edit',
}, },
{
label: '详情',
onClick: handleDetail.bind(null, record),
},
]; ];
} }
/** /**
@@ -535,10 +539,6 @@
*/ */
function getDropDownAction(record) { function getDropDownAction(record) {
let dropDownAction = [ let dropDownAction = [
{
label: '详情',
onClick: handleDetail.bind(null, record),
},
{ {
label: '删除', label: '删除',
popConfirm: { popConfirm: {