新增接口curd、数据权限、导航栏样式变更。
This commit is contained in:
parent
2b4fc51ea5
commit
1304458b59
|
@ -117,21 +117,45 @@ const basicsRules = {
|
||||||
const formRowShow = [
|
const formRowShow = [
|
||||||
{
|
{
|
||||||
elCol: [{
|
elCol: [{
|
||||||
label: '工坊名称',
|
label: '接口名称',
|
||||||
prop: 'workshopName',
|
prop: 'name',
|
||||||
tag: 'elLook',
|
tag: 'elLook',
|
||||||
span: 24,
|
span: 24
|
||||||
disabled: true
|
|
||||||
}]
|
}]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
elCol: [{
|
elCol: [{
|
||||||
label: '插件',
|
label: '服务名',
|
||||||
prop: 'plugName',
|
prop: 'beanName',
|
||||||
slotName: 'plugName',
|
|
||||||
tag: 'elLook',
|
tag: 'elLook',
|
||||||
|
span: 24
|
||||||
|
}]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
elCol: [{
|
||||||
|
label: '方法名',
|
||||||
|
prop: 'interfaceName',
|
||||||
|
tag: 'elLook',
|
||||||
|
span: 24
|
||||||
|
}]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
elCol: [{
|
||||||
|
label: '状态',
|
||||||
|
prop: 'state',
|
||||||
|
tag: 'elRadio',
|
||||||
|
disabled:true,
|
||||||
span: 24,
|
span: 24,
|
||||||
disabled: true
|
options: [
|
||||||
|
{
|
||||||
|
label: '启用',
|
||||||
|
value: '0'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '停用',
|
||||||
|
value: '1'
|
||||||
|
}
|
||||||
|
]
|
||||||
}]
|
}]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -140,8 +164,7 @@ const formRowShow = [
|
||||||
prop: 'remark',
|
prop: 'remark',
|
||||||
tag: 'elLook',
|
tag: 'elLook',
|
||||||
type: 'textarea',
|
type: 'textarea',
|
||||||
span: 24,
|
span: 24
|
||||||
disabled: true
|
|
||||||
}]
|
}]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in New Issue