From 1304458b59f0935712df4abd190034e23b29ed7b Mon Sep 17 00:00:00 2001 From: hyt <958868763@qq.com> Date: Fri, 12 Apr 2024 13:46:10 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E6=8E=A5=E5=8F=A3curd?= =?UTF-8?q?=E3=80=81=E6=95=B0=E6=8D=AE=E6=9D=83=E9=99=90=E3=80=81=E5=AF=BC?= =?UTF-8?q?=E8=88=AA=E6=A0=8F=E6=A0=B7=E5=BC=8F=E5=8F=98=E6=9B=B4=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/apiAdmin/configData.js | 43 ++++++++++++++++++++++++-------- 1 file changed, 33 insertions(+), 10 deletions(-) diff --git a/src/views/apiAdmin/configData.js b/src/views/apiAdmin/configData.js index 7ec053b..88fab2e 100644 --- a/src/views/apiAdmin/configData.js +++ b/src/views/apiAdmin/configData.js @@ -117,21 +117,45 @@ const basicsRules = { const formRowShow = [ { elCol: [{ - label: '工坊名称', - prop: 'workshopName', + label: '接口名称', + prop: 'name', tag: 'elLook', - span: 24, - disabled: true + span: 24 }] }, { elCol: [{ - label: '插件', - prop: 'plugName', - slotName: 'plugName', + label: '服务名', + prop: 'beanName', tag: 'elLook', + span: 24 + }] + }, + { + elCol: [{ + label: '方法名', + prop: 'interfaceName', + tag: 'elLook', + span: 24 + }] + }, + { + elCol: [{ + label: '状态', + prop: 'state', + tag: 'elRadio', + disabled:true, span: 24, - disabled: true + options: [ + { + label: '启用', + value: '0' + }, + { + label: '停用', + value: '1' + } + ] }] }, { @@ -140,8 +164,7 @@ const formRowShow = [ prop: 'remark', tag: 'elLook', type: 'textarea', - span: 24, - disabled: true + span: 24 }] } ]