Commit fab2fb35 authored by 沈翠玲's avatar 沈翠玲

complete

parent 4cc5240d
...@@ -105,11 +105,11 @@ ...@@ -105,11 +105,11 @@
{ field: 'reserveWorkUnit', title: '预留工作单位', search: { labelWidth: 85, el: 'input' } }, { field: 'reserveWorkUnit', title: '预留工作单位', search: { labelWidth: 85, el: 'input' } },
{ field: 'reserveAddress', title: '预留家庭地址', search: { labelWidth: 85, el: 'input' } }, { field: 'reserveAddress', title: '预留家庭地址', search: { labelWidth: 85, el: 'input' } },
{ field: 'remark', title: '备注', search: { labelWidth: 85, el: 'input' } }, { field: 'remark', title: '备注', search: { labelWidth: 85, el: 'input' } },
{ field: 'over', title: '是否完成',slots: { { field: 'complete', title: '是否完成',slots: {
default: ({ row }) => { default: ({ row }) => {
return ( return (
<> <>
{row.over=== 'Y' ? '是':'否'} {row.complete=== 'Y' ? '是':'否'}
</> </>
); );
}, },
...@@ -122,7 +122,7 @@ ...@@ -122,7 +122,7 @@
default: ({ row, rowIndex }) => { default: ({ row, rowIndex }) => {
return ( return (
<> <>
<ElButton type="primary" onClick={(e) => send(e, row)} disabled={row.over=== 'Y'}> <ElButton type="primary" onClick={(e) => send(e, row)} disabled={row.complete=== 'Y'}>
发起风控审核 发起风控审核
</ElButton> </ElButton>
</> </>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment