Commit 50c04d58 authored by XieZhiXiong's avatar XieZhiXiong

添加判断条件

parent e3e55891
......@@ -188,7 +188,10 @@ const QuotaMenage: React.FC = () => {
render: (text, record) => (
<>
{/* 授信状态为 正常 时可申请调额 */}
{record.status === CREDIT_STATUS_NORMAL && (
{(
record.status === CREDIT_STATUS_NORMAL &&
record.isCanApply
) && (
<Button
type="link"
onClick={() => handleAdjustment(record)}
......
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