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

账号管理

parent 3345e698
...@@ -105,6 +105,15 @@ ...@@ -105,6 +105,15 @@
{ 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: {
default: ({ row }) => {
return (
<>
{row.over=== 'Y' ? '是':'否'}
</>
);
},
}},
{ {
field: 'code', field: 'code',
title: '操作', title: '操作',
...@@ -113,7 +122,7 @@ ...@@ -113,7 +122,7 @@
default: ({ row, rowIndex }) => { default: ({ row, rowIndex }) => {
return ( return (
<> <>
<ElButton type="primary" onClick={(e) => send(e, row)}> <ElButton type="primary" onClick={(e) => send(e, row)} disabled={row.over=== '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