提交 dfc4921f 编写于 作者: ibizdev's avatar ibizdev

laizhilong 发布系统代码

上级 85da4a98
...@@ -44,6 +44,7 @@ export default { ...@@ -44,6 +44,7 @@ export default {
tabpage1: "权限", tabpage1: "权限",
druipart2: "用户", druipart2: "用户",
tabpage2: "用户", tabpage2: "用户",
tabpage3: "分页面板",
tabpanel1: "", tabpanel1: "",
formpage1: "基本信息", formpage1: "基本信息",
srfupdatedate: "更新时间", srfupdatedate: "更新时间",
......
...@@ -43,6 +43,7 @@ export default { ...@@ -43,6 +43,7 @@ export default {
tabpage1: '权限', tabpage1: '权限',
druipart2: '用户', druipart2: '用户',
tabpage2: '用户', tabpage2: '用户',
tabpage3: '分页面板',
tabpanel1: '', tabpanel1: '',
formpage1: '基本信息', formpage1: '基本信息',
srfupdatedate: '更新时间', srfupdatedate: '更新时间',
......
...@@ -103,7 +103,7 @@ export const viewstate: any = { ...@@ -103,7 +103,7 @@ export const viewstate: any = {
viewaction: '', viewaction: '',
viewdatachange: false, viewdatachange: false,
refviews: [ refviews: [
'b8a97c1797a1b91fbb37f8c2d14b1fb6', '61a949e3c23ebdda724888662ded1478',
'fb89f9af95f2caf92ccc1249025c9a1b', 'fb89f9af95f2caf92ccc1249025c9a1b',
], ],
}, },
...@@ -155,7 +155,7 @@ export const viewstate: any = { ...@@ -155,7 +155,7 @@ export const viewstate: any = {
viewaction: '', viewaction: '',
viewdatachange: false, viewdatachange: false,
refviews: [ refviews: [
'b8a97c1797a1b91fbb37f8c2d14b1fb6', '61a949e3c23ebdda724888662ded1478',
'fb89f9af95f2caf92ccc1249025c9a1b', 'fb89f9af95f2caf92ccc1249025c9a1b',
], ],
}, },
......
...@@ -48,17 +48,18 @@ ...@@ -48,17 +48,18 @@
:formState="formState" :formState="formState"
:isForbidLoad="this.data.srfuf === '0'" :isForbidLoad="this.data.srfuf === '0'"
paramItem='sys_role' paramItem='sys_role'
:parentdata='{"srfparentdename":"SYS_ROLE","SRFPARENTTYPE":"CUSTOM"}' :parentdata='{"srfparentdefname":"SYS_ROLEID","srfparentdename":"SYS_ROLE","SRFPARENTTYPE":"DER1N","srfparentmode":"DER1N_SYS_ROLE_PERMISSION_SYS_ROLE_SYS_ROLEID","SRFDER1NID":"DER1N_SYS_ROLE_PERMISSION_SYS_ROLE_SYS_ROLEID"}'
:parameters="[ :parameters="[
{ pathName: 'sys_permissions', parameterName: 'sys_permission' },
]" ]"
:context="context" :context="context"
:viewparams="viewparams" :viewparams="viewparams"
parameterName='sys_role' parameterName='sys_role'
parentName="SYS_ROLE" parentName="SYS_ROLE"
refviewtype='DEMPICKUPVIEW' refviewtype='DEGRIDVIEW'
refreshitems='' refreshitems=''
:ignorefieldvaluechange="ignorefieldvaluechange" :ignorefieldvaluechange="ignorefieldvaluechange"
viewname='sys-permissionmpickup-view' viewname='sys-role-permissiongrid-view'
:data="JSON.stringify(this.data)" :data="JSON.stringify(this.data)"
@drdatasaved="drdatasaved($event)" @drdatasaved="drdatasaved($event)"
style=";overflow: auto;"> style=";overflow: auto;">
...@@ -103,6 +104,18 @@ ...@@ -103,6 +104,18 @@
</i-col> </i-col>
</tab-pane>
<tab-pane v-show="detailsModel.tabpage3.visible" name='tabpage3' :index="2" tab='tabpanel1' class=''
:label="(h) =>{
return h('span',{
class:'caption'
},[
$t('entities.sys_role.main_form.details.tabpage3')
])
}">
</tab-pane> </tab-pane>
</tabs> </tabs>
</i-col> </i-col>
...@@ -536,7 +549,9 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -536,7 +549,9 @@ export default class MainBase extends Vue implements ControlInterface {
, ,
tabpage2: new FormTabPageModel({ caption: '用户', detailType: 'TABPAGE', name: 'tabpage2', visible: true, isShowCaption: true, form: this }) tabpage2: new FormTabPageModel({ caption: '用户', detailType: 'TABPAGE', name: 'tabpage2', visible: true, isShowCaption: true, form: this })
, ,
tabpanel1: new FormTabPanelModel({ caption: '', detailType: 'TABPANEL', name: 'tabpanel1', visible: true, isShowCaption: false, form: this, tabPages: [{ name: 'tabpage1', index: 0, visible: true }, { name: 'tabpage2', index: 1, visible: true }] }) tabpage3: new FormTabPageModel({ caption: '分页面板', detailType: 'TABPAGE', name: 'tabpage3', visible: true, isShowCaption: true, form: this })
,
tabpanel1: new FormTabPanelModel({ caption: '', detailType: 'TABPANEL', name: 'tabpanel1', visible: true, isShowCaption: false, form: this, tabPages: [{ name: 'tabpage1', index: 0, visible: true }, { name: 'tabpage2', index: 1, visible: true }, { name: 'tabpage3', index: 2, visible: true }] })
, ,
formpage1: new FormPageModel({ caption: '基本信息', detailType: 'FORMPAGE', name: 'formpage1', visible: true, isShowCaption: true, form: this }) formpage1: new FormPageModel({ caption: '基本信息', detailType: 'FORMPAGE', name: 'formpage1', visible: true, isShowCaption: true, form: this })
, ,
...@@ -750,6 +765,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -750,6 +765,7 @@ export default class MainBase extends Vue implements ControlInterface {
} }
/** /**
......
...@@ -136,7 +136,7 @@ ...@@ -136,7 +136,7 @@
</createTable> </createTable>
</changeSet> </changeSet>
<!--输出实体[SYS_ROLE]数据结构 --> <!--输出实体[SYS_ROLE]数据结构 -->
<changeSet author="a_A_5d9d78509" id="tab-sys_role-62-7"> <changeSet author="a_A_5d9d78509" id="tab-sys_role-63-7">
<createTable tableName="IBZROLE"> <createTable tableName="IBZROLE">
<column name="SYS_ROLEID" remarks="" type="VARCHAR(100)"> <column name="SYS_ROLEID" remarks="" type="VARCHAR(100)">
<constraints primaryKey="true" primaryKeyName="PK_SYS_ROLE_SYS_ROLEID"/> <constraints primaryKey="true" primaryKeyName="PK_SYS_ROLE_SYS_ROLEID"/>
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册