fix : 修复专项资金权限, 费用台账时间搜索

This commit is contained in:
2024-07-07 23:36:20 +08:00
parent ac409710d8
commit 23975e056a
2 changed files with 4 additions and 5 deletions

View File

@@ -33,7 +33,7 @@ const searchConfig = reactive([
clearable: true,
type:'month',
format: 'YYYY-MM',
valueFormat:'YYYY-MM-DD HH:mm:ss',
valueFormat:'YYYY-MM',
},
colProps: {}
},

View File

@@ -123,10 +123,10 @@ const tableConfig = reactive({
let btn = []
let buttons = new Set(Array.from(row.buttons))
if (buttons.has("details")) {
btn.push({label: '详情', prem: ['mosr:collect:info'], func: () => handleDetail(row), type: 'primary'})
btn.push({label: '详情', prem: ['special:fund:info'], func: () => handleDetail(row), type: 'primary'})
}
if (buttons.has("edit")) {
btn.push({label: '编辑', prem: ['mosr:collect:resubmit'], func: () => handleEdit(row), type: 'primary'})
btn.push({label: '编辑', prem: ['special:fund:edit'], func: () => handleEdit(row), type: 'primary'})
}
return (
<div style={{width: '100%'}}>
@@ -145,7 +145,6 @@ const tableConfig = reactive({
{
buttons.has("delete") ?
<popover-delete name={row.name} type={'专项资金'} btnType={'danger'}
perm={['mosr:requirement:del']}
onDelete={() => handleDelete(row)}/>
: ''
}
@@ -157,7 +156,7 @@ const tableConfig = reactive({
api: '/workflow/mosr/special/fund',
params: {},
btns: [
{name: '新增', key: 'add', color: '#DED0B2', auth: ''},
{name: '新增', key: 'add', color: '#DED0B2', auth: ['special:fund:add']},
// {name: '导出', key: '_export', color: '#DED0B2', auth: ''},
]
})