From 0a05f367e4accfcd85afd0f8963b37a70b49f2d4 Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期一, 01 八月 2022 10:56:00 +0800 Subject: [PATCH] 2022-08-01 --- src/menu/components/table/normal-table/columns/editColumn/formconfig.jsx | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/menu/components/table/normal-table/columns/editColumn/formconfig.jsx b/src/menu/components/table/normal-table/columns/editColumn/formconfig.jsx index 83d6271..0c76b5f 100644 --- a/src/menu/components/table/normal-table/columns/editColumn/formconfig.jsx +++ b/src/menu/components/table/normal-table/columns/editColumn/formconfig.jsx @@ -152,9 +152,8 @@ type: 'radio', key: 'IsSort', label: Formdict['model.sort'], - initVal: card.IsSort || 'true', + initVal: card.IsSort || (card.isSub ? 'false' : 'true'), required: true, - forbidden: card.isSub, options: [{ value: 'true', text: Formdict['model.true'] @@ -415,7 +414,8 @@ label: Formdict['header.form.blacklist'], initVal: card.blacklist || [], required: false, - options: roleList + options: roleList, + forbidden: appType === 'mob' } ] } -- Gitblit v1.8.0