Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
功
功能演示系统
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
示例
功能演示系统
提交
e360ffba
提交
e360ffba
编写于
11月 10, 2022
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
tony001 发布系统代码 [后台服务,演示应用]
上级
65cc6471
变更
21
隐藏空白字符变更
内嵌
并排
正在显示
21 个修改的文件
包含
329 行增加
和
329 行删除
+329
-329
app-login-captcha.vue
...out-element/login/app-login-captcha/app-login-captcha.vue
+11
-1
app-login-note-verify.vue
...ent/login/app-login-note-verify/app-login-note-verify.vue
+14
-11
app-login-third.less
...layout-element/login/app-login-third/app-login-third.less
+3
-0
app-login-third.vue
.../layout-element/login/app-login-third/app-login-third.vue
+4
-4
ibizbookusr1110030546-custom-view-base.vue
...46-custom-view/ibizbookusr1110030546-custom-view-base.vue
+12
-5
ibizcustomer-usr3-edit-view-base.vue
...tomer-usr3-edit-view/ibizcustomer-usr3-edit-view-base.vue
+2
-0
app-login-view-base.vue
.../src/pages/ungroup/app-login-view/app-login-view-base.vue
+2
-0
default-searchform-base.vue
...zappeditor/default-searchform/default-searchform-base.vue
+2
-2
listpanel-list-model.ts
...c/widgets/ibizbook/listpanel-list/listpanel-list-model.ts
+23
-18
listpanel-panel-base.vue
...widgets/ibizbook/listpanel-panel/listpanel-panel-base.vue
+9
-22
listpanel-panel-model.ts
...widgets/ibizbook/listpanel-panel/listpanel-panel-model.ts
+4
-0
card-navigation-dataview-base.vue
...ard-navigation-dataview/card-navigation-dataview-base.vue
+4
-4
main-grid-base.vue
app_Web/src/widgets/ibizorder/main-grid/main-grid-base.vue
+7
-21
main-grid-model.ts
app_Web/src/widgets/ibizorder/main-grid/main-grid-model.ts
+0
-15
IBIZBOOK.json
...remotemodel/PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json
+0
-15
Listpanel.json
...PPS/Web/PSAPPDATAENTITIES/IBIZBOOK/PSLISTS/Listpanel.json
+83
-74
Listpanel.json
...PS/Web/PSAPPDATAENTITIES/IBIZBOOK/PSPANELS/Listpanel.json
+48
-46
IBIZBOOKUsr1110030546CustomView.json
...PPS/Web/PSAPPDEVIEWS/IBIZBOOKUsr1110030546CustomView.json
+17
-1
IBIZBOOKUsr5ListView.json
...odel/PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKUsr5ListView.json
+83
-74
PSSYSAPP.json
.../resources/static/remotemodel/PSSYSAPPS/Web/PSSYSAPP.json
+0
-15
h2_table.xml
demo-core/src/main/resources/liquibase/h2_table.xml
+1
-1
未找到文件。
app_Web/src/components/layout-element/login/app-login-captcha/app-login-captcha.vue
浏览文件 @
e360ffba
<
template
>
<
template
>
<div
:class=
"curClassName"
:style=
"curStyle"
>
<div
:class=
"curClassName"
:style=
"curStyle"
>
<auth-puzzle-vcode
:show=
"show"
@
success=
"onSuccess"
@
fail=
"onFail"
/>
<auth-puzzle-vcode
:show=
"show"
@
success=
"onSuccess"
@
fail=
"onFail"
/>
<i-button
:type=
"type"
@
click=
"executeOpen"
>
验证
</i-button>
<i-button
:type=
"type"
@
click=
"executeOpen"
>
验证
<
Icon
v-show=
"showIcon"
type=
"md-checkmark"
/><
/i-button>
</div>
</div>
</
template
>
</
template
>
...
@@ -57,6 +57,11 @@ export default class AppLoginCaptcha extends Vue {
...
@@ -57,6 +57,11 @@ export default class AppLoginCaptcha extends Vue {
*/
*/
public
type
:
string
=
'default'
;
public
type
:
string
=
'default'
;
/**
* 按钮类型
*/
public
showIcon
:
boolean
=
false
;
/**
/**
* 项名称
* 项名称
*
*
...
@@ -113,6 +118,7 @@ export default class AppLoginCaptcha extends Vue {
...
@@ -113,6 +118,7 @@ export default class AppLoginCaptcha extends Vue {
public
onSuccess
()
{
public
onSuccess
()
{
this
.
show
=
false
;
this
.
show
=
false
;
this
.
type
=
'success'
;
this
.
type
=
'success'
;
this
.
showIcon
=
true
;
this
.
$emit
(
"valueChange"
,
{
name
:
this
.
itemName
,
value
:
true
});
this
.
$emit
(
"valueChange"
,
{
name
:
this
.
itemName
,
value
:
true
});
}
}
...
@@ -120,6 +126,7 @@ export default class AppLoginCaptcha extends Vue {
...
@@ -120,6 +126,7 @@ export default class AppLoginCaptcha extends Vue {
* 失败
* 失败
*/
*/
public
onFail
()
{
public
onFail
()
{
this
.
showIcon
=
false
;
this
.
$emit
(
"valueChange"
,
{
name
:
this
.
itemName
,
value
:
false
});
this
.
$emit
(
"valueChange"
,
{
name
:
this
.
itemName
,
value
:
false
});
}
}
}
}
...
@@ -138,6 +145,9 @@ export default class AppLoginCaptcha extends Vue {
...
@@ -138,6 +145,9 @@ export default class AppLoginCaptcha extends Vue {
border: 1px solid #dcdee2;
border: 1px solid #dcdee2;
color: #515a6e;
color: #515a6e;
}
}
.ivu-icon {
margin-left: 8px;
}
}
}
}
}
</
style
>
</
style
>
app_Web/src/components/layout-element/login/app-login-note-verify/app-login-note-verify.vue
浏览文件 @
e360ffba
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
disabled
?
`${delay
}
s ${$t("components.login.getcodeafter")
}
`
:
`${$t("components.login.getcode")
}
`
disabled
?
`${delay
}
s ${$t("components.login.getcodeafter")
}
`
:
`${$t("components.login.getcode")
}
`
}}
<
/el-button
>
}}
<
/el-button
>
<
/div
>
<
/div
>
<
alert
v
-
show
=
"
phone
Error"
type
=
"error"
>
电话号码格式错误
<
/alert
>
<
alert
v
-
show
=
"
verify
Error"
type
=
"error"
>
电话号码格式错误
<
/alert
>
<
div
class
=
"code"
v
-
show
=
"show"
>
<
div
class
=
"code"
v
-
show
=
"show"
>
<
i
-
input
size
=
"default"
type
=
"text"
:
value
=
"currentValue"
@
input
=
"codeChange"
<
i
-
input
size
=
"default"
type
=
"text"
:
value
=
"currentValue"
@
input
=
"codeChange"
:
placeholder
=
"$t('components.login.codeplaceholder')"
><
/i-input
>
:
placeholder
=
"$t('components.login.codeplaceholder')"
><
/i-input
>
...
@@ -81,11 +81,11 @@ export default class AppLoginNoteVerify extends Vue {
...
@@ -81,11 +81,11 @@ export default class AppLoginNoteVerify extends Vue {
public
phoneNumber
:
string
=
""
;
public
phoneNumber
:
string
=
""
;
/**
/**
*
错误提示
*
校验失败
* @type {*
}
* @type {*
}
* @memberof AppLoginNoteVerify
* @memberof AppLoginNoteVerify
*/
*/
public
phone
Error
=
false
;
public
verify
Error
=
false
;
/**
/**
* 是否禁用获取验证码按钮
* 是否禁用获取验证码按钮
...
@@ -155,9 +155,10 @@ export default class AppLoginNoteVerify extends Vue {
...
@@ -155,9 +155,10 @@ export default class AppLoginNoteVerify extends Vue {
* @description 校验手机号
* @description 校验手机号
* @memberof AppLoginNoteVerify
* @memberof AppLoginNoteVerify
*/
*/
public
veriPhoneNumber
():
boolean
{
public
veriPhoneNumber
()
{
this
.
phoneError
=
!
/^1
[
3-9
]\d
{9
}
$/
.
test
(
this
.
phoneNumber
);
if
(
this
.
phoneNumber
)
{
return
this
.
phoneError
;
this
.
verifyError
=
!
/^1
[
3-9
]\d
{9
}
$/
.
test
(
this
.
phoneNumber
);
}
}
}
/**
/**
...
@@ -181,11 +182,13 @@ export default class AppLoginNoteVerify extends Vue {
...
@@ -181,11 +182,13 @@ export default class AppLoginNoteVerify extends Vue {
* @memberof AppLoginNoteVerify
* @memberof AppLoginNoteVerify
*/
*/
public
getVeriCode
()
{
public
getVeriCode
()
{
if
(
this
.
phoneError
)
return
;
this
.
veriPhoneNumber
();
// todo 获取验证码
if
(
this
.
phoneNumber
&&
!
this
.
verifyError
)
{
this
.
show
=
true
;
// todo 获取验证码
this
.
disabled
=
true
;
this
.
show
=
true
;
this
.
setDelay
();
this
.
disabled
=
true
;
this
.
setDelay
();
}
}
}
}
}
<
/script
>
<
/script
>
...
...
app_Web/src/components/layout-element/login/app-login-third/app-login-third.less
浏览文件 @
e360ffba
...
@@ -7,5 +7,8 @@
...
@@ -7,5 +7,8 @@
display: flex;
display: flex;
align-items: center;
align-items: center;
justify-content: center;
justify-content: center;
.app-login-third__btn {
padding: 0 4px;
}
}
}
}
}
\ No newline at end of file
app_Web/src/components/layout-element/login/app-login-third/app-login-third.vue
浏览文件 @
e360ffba
...
@@ -2,10 +2,10 @@
...
@@ -2,10 +2,10 @@
<div
:class=
"curClassName"
:style=
"curStyle"
>
<div
:class=
"curClassName"
:style=
"curStyle"
>
<div
class=
"app-login-third__title"
>
{{
$t
(
"components.login.other"
)
}}
</div>
<div
class=
"app-login-third__title"
>
{{
$t
(
"components.login.other"
)
}}
</div>
<div
class=
"app-login-third__content"
>
<div
class=
"app-login-third__content"
>
<div
class=
"
sign-
btn"
@
click=
"handleThirdLogin('DINGDING')"
>
<div
class=
"
app-login-third__
btn"
@
click=
"handleThirdLogin('DINGDING')"
>
<img
class=
"third-svg-container"
src=
"@/assets/img/dingding.svg"
/>
<img
class=
"third-svg-container"
src=
"@/assets/img/dingding.svg"
/>
</div>
</div>
<div
class=
"
sign-
btn"
@
click=
"handleThirdLogin('WXWORK')"
>
<div
class=
"
app-login-third__
btn"
@
click=
"handleThirdLogin('WXWORK')"
>
<img
class=
"third-svg-container"
src=
"@/assets/img/qiyeweixin.svg"
/>
<img
class=
"third-svg-container"
src=
"@/assets/img/qiyeweixin.svg"
/>
</div>
</div>
</div>
</div>
...
@@ -109,7 +109,7 @@ export default class AppThirdLogin extends Vue {
...
@@ -109,7 +109,7 @@ export default class AppThirdLogin extends Vue {
* @memberof AppThirdLogin
* @memberof AppThirdLogin
*/
*/
async
dingTalkHandleClick
()
{
async
dingTalkHandleClick
()
{
this
.
$message
({
message
:
'暂未支持钉钉登录'
,
type
:
'warning'
});
}
}
/**
/**
...
@@ -118,7 +118,7 @@ export default class AppThirdLogin extends Vue {
...
@@ -118,7 +118,7 @@ export default class AppThirdLogin extends Vue {
* @memberof AppThirdLogin
* @memberof AppThirdLogin
*/
*/
async
wxWorkHandleClick
()
{
async
wxWorkHandleClick
()
{
this
.
$message
({
message
:
'暂未支持微信登录'
,
type
:
'warning'
});
}
}
}
}
</
script
>
</
script
>
...
...
app_Web/src/pages/sample/ibizbookusr1110030546-custom-view/ibizbookusr1110030546-custom-view-base.vue
浏览文件 @
e360ffba
...
@@ -285,7 +285,7 @@ export default class IBIZBOOKUsr1110030546CustomViewBase extends Vue {
...
@@ -285,7 +285,7 @@ export default class IBIZBOOKUsr1110030546CustomViewBase extends Vue {
public
layoutItems
:
any
=
{
public
layoutItems
:
any
=
{
usr1110830020grid
:{
name
:
'usr1110830020grid'
,
type
:
'VIEWLAYOUT'
,
caption
:
'表格'
,
isShowCaption
:
true
,
sysCss
:
''
,
itemType
:
'CTRLPOS'
,
itemStyle
:
'DEFAULT'
,
visible
:
true
,
disabled
:
false
,
layout
:
''
,
layoutPos
:
'CENTER'
,
layoutHeight
:
0
,
heightMode
:
''
,
layoutWidth
:
0
,
widthMode
:
''
,
spacingBottom
:
''
,
spacingLeft
:
''
,
spacingRight
:
''
,
spacingTop
:
''
,
hAlignSelf
:
''
,
vAlignSelf
:
''
,
flexGrow
:
0
,
flexParams
:{
align
:
''
,
dir
:
''
,
vAlign
:
''
},
parentName
:
'container_scroll_main1'
,
panel
:
this
},
usr1110830020grid
:{
name
:
'usr1110830020grid'
,
type
:
'VIEWLAYOUT'
,
caption
:
'表格'
,
isShowCaption
:
true
,
sysCss
:
''
,
itemType
:
'CTRLPOS'
,
itemStyle
:
'DEFAULT'
,
visible
:
true
,
disabled
:
false
,
layout
:
''
,
layoutPos
:
'CENTER'
,
layoutHeight
:
0
,
heightMode
:
''
,
layoutWidth
:
0
,
widthMode
:
''
,
spacingBottom
:
''
,
spacingLeft
:
''
,
spacingRight
:
''
,
spacingTop
:
''
,
hAlignSelf
:
''
,
vAlignSelf
:
''
,
flexGrow
:
0
,
flexParams
:{
align
:
''
,
dir
:
''
,
vAlign
:
''
},
parentName
:
'container_scroll_main1'
,
panel
:
this
},
container_scroll_main1
:{
name
:
'container_scroll_main1'
,
type
:
'VIEWLAYOUT'
,
caption
:
'面板容器'
,
titleBarCloseMode
:
0
,
isShowCaption
:
true
,
sysCss
:
''
,
itemType
:
'CONTAINER'
,
itemStyle
:
'DEFAULT'
,
visible
:
true
,
disabled
:
false
,
layout
:
'BORDER'
,
layoutPos
:
'CENTER'
,
layoutHeight
:
0
,
heightMode
:
''
,
layoutWidth
:
0
,
widthMode
:
''
,
spacingBottom
:
''
,
spacingLeft
:
''
,
spacingRight
:
''
,
spacingTop
:
''
,
hAlignSelf
:
''
,
vAlignSelf
:
''
,
flexGrow
:
0
,
flexParams
:{
align
:
''
,
dir
:
''
,
vAlign
:
''
},
parentName
:
'container_scroll1'
,
panel
:
this
,
details
:[
'usr1110830020grid'
]
,
dataRegionType
:
'INHERIT'
},
container_scroll_main1
:{
name
:
'container_scroll_main1'
,
type
:
'VIEWLAYOUT'
,
caption
:
'面板容器'
,
titleBarCloseMode
:
0
,
isShowCaption
:
true
,
sysCss
:
''
,
itemType
:
'CONTAINER'
,
itemStyle
:
'DEFAULT'
,
visible
:
true
,
disabled
:
false
,
layout
:
'BORDER'
,
layoutPos
:
'CENTER'
,
layoutHeight
:
0
,
heightMode
:
''
,
layoutWidth
:
0
,
widthMode
:
''
,
spacingBottom
:
''
,
spacingLeft
:
''
,
spacingRight
:
''
,
spacingTop
:
''
,
hAlignSelf
:
''
,
vAlignSelf
:
''
,
flexGrow
:
0
,
flexParams
:{
align
:
''
,
dir
:
''
,
vAlign
:
''
},
parentName
:
'container_scroll1'
,
panel
:
this
,
details
:[
'usr1110830020grid'
]
,
dataRegionType
:
'INHERIT'
},
view_pagecaption
:{
name
:
'view_pagecaption'
,
type
:
'VIEWLAYOUT'
,
caption
:
'页面标题'
,
isShowCaption
:
false
,
sysCss
:
''
,
itemType
:
'FIELD'
,
itemStyle
:
'DEFAULT'
,
visible
:
true
,
disabled
:
false
,
layout
:
''
,
layoutPos
:
''
,
layoutHeight
:
0
,
heightMode
:
''
,
layoutWidth
:
0
,
widthMode
:
''
,
spacingBottom
:
''
,
spacingLeft
:
''
,
spacingRight
:
''
,
spacingTop
:
''
,
hAlignSelf
:
'
'
,
vAlignSelf
:
'
'
,
flexGrow
:
-
1
,
flexParams
:{
align
:
''
,
dir
:
''
,
vAlign
:
''
},
parentName
:
'container1'
,
panel
:
this
,
required
:
false
,
fieldState
:
'0'
,
predefinedType
:
'VIEW_PAGECAPTION'
,
renderMode
:
'HEADING1'
,
dataItemName
:
''
,
wrapMode
:
''
,
vAlign
:
''
,
hAlign
:
''
,
},
view_pagecaption
:{
name
:
'view_pagecaption'
,
type
:
'VIEWLAYOUT'
,
caption
:
'页面标题'
,
isShowCaption
:
false
,
sysCss
:
''
,
itemType
:
'FIELD'
,
itemStyle
:
'DEFAULT'
,
visible
:
true
,
disabled
:
false
,
layout
:
''
,
layoutPos
:
''
,
layoutHeight
:
0
,
heightMode
:
''
,
layoutWidth
:
0
,
widthMode
:
''
,
spacingBottom
:
''
,
spacingLeft
:
''
,
spacingRight
:
''
,
spacingTop
:
''
,
hAlignSelf
:
'
LEFT'
,
vAlignSelf
:
'MIDDLE
'
,
flexGrow
:
-
1
,
flexParams
:{
align
:
''
,
dir
:
''
,
vAlign
:
''
},
parentName
:
'container1'
,
panel
:
this
,
required
:
false
,
fieldState
:
'0'
,
predefinedType
:
'VIEW_PAGECAPTION'
,
renderMode
:
'HEADING1'
,
dataItemName
:
''
,
wrapMode
:
''
,
vAlign
:
''
,
hAlign
:
''
,
},
container1
:{
name
:
'container1'
,
type
:
'VIEWLAYOUT'
,
caption
:
'面板容器'
,
titleBarCloseMode
:
0
,
isShowCaption
:
false
,
sysCss
:
''
,
itemType
:
'CONTAINER'
,
itemStyle
:
'DEFAULT'
,
visible
:
true
,
disabled
:
false
,
layout
:
'SIMPLEFLEX'
,
layoutPos
:
''
,
layoutHeight
:
0
,
heightMode
:
''
,
layoutWidth
:
0
,
widthMode
:
''
,
spacingBottom
:
''
,
spacingLeft
:
''
,
spacingRight
:
''
,
spacingTop
:
''
,
hAlignSelf
:
''
,
vAlignSelf
:
''
,
flexGrow
:
6
,
flexParams
:{
align
:
''
,
dir
:
''
,
vAlign
:
''
},
parentName
:
'container_grid1'
,
panel
:
this
,
details
:[
'view_pagecaption'
]
,
dataRegionType
:
'INHERIT'
},
container1
:{
name
:
'container1'
,
type
:
'VIEWLAYOUT'
,
caption
:
'面板容器'
,
titleBarCloseMode
:
0
,
isShowCaption
:
false
,
sysCss
:
''
,
itemType
:
'CONTAINER'
,
itemStyle
:
'DEFAULT'
,
visible
:
true
,
disabled
:
false
,
layout
:
'SIMPLEFLEX'
,
layoutPos
:
''
,
layoutHeight
:
0
,
heightMode
:
''
,
layoutWidth
:
0
,
widthMode
:
''
,
spacingBottom
:
''
,
spacingLeft
:
''
,
spacingRight
:
''
,
spacingTop
:
''
,
hAlignSelf
:
''
,
vAlignSelf
:
''
,
flexGrow
:
6
,
flexParams
:{
align
:
''
,
dir
:
''
,
vAlign
:
''
},
parentName
:
'container_grid1'
,
panel
:
this
,
details
:[
'view_pagecaption'
]
,
dataRegionType
:
'INHERIT'
},
container2
:{
name
:
'container2'
,
type
:
'VIEWLAYOUT'
,
caption
:
'面板容器'
,
titleBarCloseMode
:
0
,
isShowCaption
:
false
,
sysCss
:
''
,
itemType
:
'CONTAINER'
,
itemStyle
:
'DEFAULT'
,
visible
:
true
,
disabled
:
false
,
layout
:
'SIMPLEFLEX'
,
layoutPos
:
''
,
layoutHeight
:
0
,
heightMode
:
''
,
layoutWidth
:
0
,
widthMode
:
''
,
spacingBottom
:
''
,
spacingLeft
:
''
,
spacingRight
:
''
,
spacingTop
:
''
,
hAlignSelf
:
''
,
vAlignSelf
:
''
,
flexGrow
:
6
,
flexParams
:{
align
:
''
,
dir
:
''
,
vAlign
:
''
},
parentName
:
'container_grid1'
,
panel
:
this
,
details
:[]
,
dataRegionType
:
'INHERIT'
},
container2
:{
name
:
'container2'
,
type
:
'VIEWLAYOUT'
,
caption
:
'面板容器'
,
titleBarCloseMode
:
0
,
isShowCaption
:
false
,
sysCss
:
''
,
itemType
:
'CONTAINER'
,
itemStyle
:
'DEFAULT'
,
visible
:
true
,
disabled
:
false
,
layout
:
'SIMPLEFLEX'
,
layoutPos
:
''
,
layoutHeight
:
0
,
heightMode
:
''
,
layoutWidth
:
0
,
widthMode
:
''
,
spacingBottom
:
''
,
spacingLeft
:
''
,
spacingRight
:
''
,
spacingTop
:
''
,
hAlignSelf
:
''
,
vAlignSelf
:
''
,
flexGrow
:
6
,
flexParams
:{
align
:
''
,
dir
:
''
,
vAlign
:
''
},
parentName
:
'container_grid1'
,
panel
:
this
,
details
:[]
,
dataRegionType
:
'INHERIT'
},
container_grid1
:{
name
:
'container_grid1'
,
type
:
'VIEWLAYOUT'
,
caption
:
'栅格容器'
,
titleBarCloseMode
:
0
,
isShowCaption
:
false
,
sysCss
:
''
,
itemType
:
'CONTAINER'
,
itemStyle
:
'DEFAULT'
,
visible
:
true
,
disabled
:
false
,
layout
:
'SIMPLEFLEX'
,
layoutPos
:
'CENTER'
,
layoutHeight
:
0
,
heightMode
:
''
,
layoutWidth
:
0
,
widthMode
:
''
,
spacingBottom
:
''
,
spacingLeft
:
''
,
spacingRight
:
''
,
spacingTop
:
''
,
hAlignSelf
:
''
,
vAlignSelf
:
''
,
flexGrow
:
0
,
flexParams
:{
align
:
''
,
dir
:
''
,
vAlign
:
''
},
parentName
:
'container_scroll_header1'
,
panel
:
this
,
details
:[
'container1'
,
'container2'
]
,
dataRegionType
:
'INHERIT'
},
container_grid1
:{
name
:
'container_grid1'
,
type
:
'VIEWLAYOUT'
,
caption
:
'栅格容器'
,
titleBarCloseMode
:
0
,
isShowCaption
:
false
,
sysCss
:
''
,
itemType
:
'CONTAINER'
,
itemStyle
:
'DEFAULT'
,
visible
:
true
,
disabled
:
false
,
layout
:
'SIMPLEFLEX'
,
layoutPos
:
'CENTER'
,
layoutHeight
:
0
,
heightMode
:
''
,
layoutWidth
:
0
,
widthMode
:
''
,
spacingBottom
:
''
,
spacingLeft
:
''
,
spacingRight
:
''
,
spacingTop
:
''
,
hAlignSelf
:
''
,
vAlignSelf
:
''
,
flexGrow
:
0
,
flexParams
:{
align
:
''
,
dir
:
''
,
vAlign
:
''
},
parentName
:
'container_scroll_header1'
,
panel
:
this
,
details
:[
'container1'
,
'container2'
]
,
dataRegionType
:
'INHERIT'
},
...
@@ -806,10 +806,17 @@ export default class IBIZBOOKUsr1110030546CustomViewBase extends Vue {
...
@@ -806,10 +806,17 @@ export default class IBIZBOOKUsr1110030546CustomViewBase extends Vue {
const
_this
:
any
=
this
;
const
_this
:
any
=
this
;
_this
.
initLayout
().
then
((
result
:
any
)
=>
{
_this
.
initLayout
().
then
((
result
:
any
)
=>
{
_this
.
isLayoutLoadding
=
false
;
_this
.
isLayoutLoadding
=
false
;
_this
.
engineInit
();
window
.
uiServiceRegister
.
getService
(
'ibizbook'
).
then
((
service
:
any
)
=>
{
if
(
_this
.
loadModel
&&
_this
.
loadModel
instanceof
Function
)
{
service
.
executeUILogic
(
'CustomViewGridLoad'
,
[],
this
.
context
,
this
.
viewparams
,
{},
{},
this
,
'IBIZBOOK'
).
then
((
result
:
any
)
=>
{
_this
.
loadModel
();
if
(
result
&&
result
.
hasOwnProperty
(
'srfret'
)
&&
!
result
.
srfret
)
{
}
return
;
}
_this
.
engineInit
();
if
(
_this
.
loadModel
&&
_this
.
loadModel
instanceof
Function
)
{
_this
.
loadModel
();
}
});
})
})
})
}
}
...
...
app_Web/src/pages/sample/ibizcustomer-usr3-edit-view/ibizcustomer-usr3-edit-view-base.vue
浏览文件 @
e360ffba
...
@@ -1088,6 +1088,7 @@ export default class IBIZCustomerUsr3EditViewBase extends Vue {
...
@@ -1088,6 +1088,7 @@ export default class IBIZCustomerUsr3EditViewBase extends Vue {
}
else
{
}
else
{
this
.
$message
({
message
:
'用户名或密码未配置!'
,
type
:
'warning'
});
this
.
$message
({
message
:
'用户名或密码未配置!'
,
type
:
'warning'
});
}
}
return
;
}
}
const
loginname
:
any
=
layoutData
[
userNameKey
];
const
loginname
:
any
=
layoutData
[
userNameKey
];
const
password
:
any
=
layoutData
[
passwordKey
];
const
password
:
any
=
layoutData
[
passwordKey
];
...
@@ -1097,6 +1098,7 @@ export default class IBIZCustomerUsr3EditViewBase extends Vue {
...
@@ -1097,6 +1098,7 @@ export default class IBIZCustomerUsr3EditViewBase extends Vue {
}
else
{
}
else
{
this
.
$message
({
message
:
'请输入用户名与密码'
,
type
:
'warning'
});
this
.
$message
({
message
:
'请输入用户名与密码'
,
type
:
'warning'
});
}
}
return
;
}
}
// 清除cookie
// 清除cookie
let
leftTime
=
new
Date
();
let
leftTime
=
new
Date
();
...
...
app_Web/src/pages/ungroup/app-login-view/app-login-view-base.vue
浏览文件 @
e360ffba
...
@@ -461,6 +461,7 @@ export default class AppLoginViewBase extends Vue {
...
@@ -461,6 +461,7 @@ export default class AppLoginViewBase extends Vue {
}
else
{
}
else
{
this
.
$message
({
message
:
'用户名或密码未配置!'
,
type
:
'warning'
});
this
.
$message
({
message
:
'用户名或密码未配置!'
,
type
:
'warning'
});
}
}
return
;
}
}
const
loginname
:
any
=
layoutData
[
userNameKey
];
const
loginname
:
any
=
layoutData
[
userNameKey
];
const
password
:
any
=
layoutData
[
passwordKey
];
const
password
:
any
=
layoutData
[
passwordKey
];
...
@@ -470,6 +471,7 @@ export default class AppLoginViewBase extends Vue {
...
@@ -470,6 +471,7 @@ export default class AppLoginViewBase extends Vue {
}
else
{
}
else
{
this
.
$message
({
message
:
'请输入用户名与密码'
,
type
:
'warning'
});
this
.
$message
({
message
:
'请输入用户名与密码'
,
type
:
'warning'
});
}
}
return
;
}
}
// 清除cookie
// 清除cookie
let
leftTime
=
new
Date
();
let
leftTime
=
new
Date
();
...
...
app_Web/src/widgets/ibizappeditor/default-searchform/default-searchform-base.vue
浏览文件 @
e360ffba
...
@@ -618,7 +618,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
...
@@ -618,7 +618,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/
*/
public
load
(
opt
:
any
=
{}):
void
{
public
load
(
opt
:
any
=
{}):
void
{
if
(
!
this
.
loadAction
){
if
(
!
this
.
loadAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZAPPEDITOR
List
View'
+
(
this
.
$t
(
'app.searchForm.notConfig.loadAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZAPPEDITOR
Grid
View'
+
(
this
.
$t
(
'app.searchForm.notConfig.loadAction'
)
as
string
)
});
return
;
return
;
}
}
const
arg
:
any
=
{
...
opt
};
const
arg
:
any
=
{
...
opt
};
...
@@ -654,7 +654,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
...
@@ -654,7 +654,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/
*/
public
async
loadDraft
(
opt
:
any
=
{},
mode
?:
string
):
Promise
<
any
>
{
public
async
loadDraft
(
opt
:
any
=
{},
mode
?:
string
):
Promise
<
any
>
{
if
(
!
this
.
loaddraftAction
){
if
(
!
this
.
loaddraftAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZAPPEDITOR
List
View'
+
(
this
.
$t
(
'app.searchForm.notConfig.loaddraftAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZAPPEDITOR
Grid
View'
+
(
this
.
$t
(
'app.searchForm.notConfig.loaddraftAction'
)
as
string
)
});
return
;
return
;
}
}
const
arg
:
any
=
{
...
opt
}
;
const
arg
:
any
=
{
...
opt
}
;
...
...
app_Web/src/widgets/ibizbook/listpanel-list/listpanel-list-model.ts
浏览文件 @
e360ffba
...
@@ -15,24 +15,15 @@ export default class ListpanelModel {
...
@@ -15,24 +15,15 @@ export default class ListpanelModel {
public
getDataItems
():
any
[]
{
public
getDataItems
():
any
[]
{
return
[
return
[
{
{
name
:
'
press
'
,
name
:
'
type
'
,
prop
:
'
press
'
,
prop
:
'
type
'
,
dataType
:
'TEXT'
,
dataType
:
'TEXT'
,
codelist
:{
tag
:
'BookType'
,
codelistType
:
'STATIC'
},
},
},
{
{
name
:
'booknumber'
,
name
:
'icon'
,
prop
:
'booknumber'
,
prop
:
'icon'
,
dataType
:
'INT'
,
dataType
:
'LONGTEXT'
,
},
{
name
:
'price'
,
prop
:
'price'
,
dataType
:
'FLOAT'
,
},
{
name
:
'author'
,
prop
:
'author'
,
dataType
:
'TEXT'
,
},
},
{
{
name
:
'ibizbookid'
,
name
:
'ibizbookid'
,
...
@@ -45,16 +36,30 @@ export default class ListpanelModel {
...
@@ -45,16 +36,30 @@ export default class ListpanelModel {
dataType
:
'TEXT'
,
dataType
:
'TEXT'
,
},
},
{
{
name
:
'type'
,
name
:
'author'
,
prop
:
'type'
,
prop
:
'author'
,
dataType
:
'TEXT'
,
},
{
name
:
'press'
,
prop
:
'press'
,
dataType
:
'TEXT'
,
dataType
:
'TEXT'
,
codelist
:{
tag
:
'BookType'
,
codelistType
:
'STATIC'
},
},
},
{
{
name
:
'subtext'
,
name
:
'subtext'
,
prop
:
'subtext'
,
prop
:
'subtext'
,
dataType
:
'TEXT'
,
dataType
:
'TEXT'
,
},
},
{
name
:
'price'
,
prop
:
'price'
,
dataType
:
'FLOAT'
,
},
{
name
:
'booknumber'
,
prop
:
'booknumber'
,
dataType
:
'INT'
,
},
{
{
name
:
'srfkey'
,
name
:
'srfkey'
,
prop
:
'ibizbookid'
,
prop
:
'ibizbookid'
,
...
...
app_Web/src/widgets/ibizbook/listpanel-panel/listpanel-panel-base.vue
浏览文件 @
e360ffba
...
@@ -56,8 +56,11 @@
...
@@ -56,8 +56,11 @@
<
template
#
field_text_dynamic3
>
<
template
#
field_text_dynamic3
>
<app-preset-text
name=
"field_text_dynamic3"
:value=
"layoutData.field_text_dynamic3"
:layoutModelDetails=
"layoutModelDetails"
/>
<app-preset-text
name=
"field_text_dynamic3"
:value=
"layoutData.field_text_dynamic3"
:layoutModelDetails=
"layoutModelDetails"
/>
</
template
>
</
template
>
<
template
#
field_text_dynamic6
>
<app-preset-text
name=
"field_text_dynamic6"
:value=
"layoutData.field_text_dynamic6"
:layoutModelDetails=
"layoutModelDetails"
/>
</
template
>
<
template
#
button_calluilogic1
>
<
template
#
button_calluilogic1
>
<app-preset-button
name=
"button_calluilogic1"
:layoutModelDetails=
"layoutModelDetails"
@
itemClick=
"handleButtonClick"
/>
<app-preset-button
name=
"button_calluilogic1"
:layoutModelDetails=
"layoutModelDetails"
@
itemClick=
"handleButtonClick"
/>
</
template
>
</
template
>
</app-standard-container>
</app-standard-container>
</template>
</template>
...
@@ -345,10 +348,11 @@ export default class ListpanelBase extends Vue implements ControlInterface {
...
@@ -345,10 +348,11 @@ export default class ListpanelBase extends Vue implements ControlInterface {
field_text_dynamic4
:{
name
:
'field_text_dynamic4'
,
type
:
'ITEMLAYOUT'
,
caption
:
'文本(动态)'
,
isShowCaption
:
false
,
sysCss
:
''
,
itemType
:
'FIELD'
,
itemStyle
:
'DEFAULT'
,
visible
:
true
,
disabled
:
false
,
layout
:
''
,
layoutPos
:
''
,
layoutHeight
:
0
,
heightMode
:
''
,
layoutWidth
:
0
,
widthMode
:
''
,
spacingBottom
:
''
,
spacingLeft
:
''
,
spacingRight
:
''
,
spacingTop
:
''
,
hAlignSelf
:
''
,
vAlignSelf
:
''
,
flexGrow
:
-
1
,
flexParams
:{
align
:
''
,
dir
:
''
,
vAlign
:
''
},
parentName
:
'container5'
,
panel
:
this
,
required
:
false
,
fieldState
:
'0'
,
predefinedType
:
'FIELD_TEXT_DYNAMIC'
,
renderMode
:
'TEXT_DYNAMIC'
,
dataItemName
:
'subtext'
,
wrapMode
:
''
,
vAlign
:
''
,
hAlign
:
''
,
},
field_text_dynamic4
:{
name
:
'field_text_dynamic4'
,
type
:
'ITEMLAYOUT'
,
caption
:
'文本(动态)'
,
isShowCaption
:
false
,
sysCss
:
''
,
itemType
:
'FIELD'
,
itemStyle
:
'DEFAULT'
,
visible
:
true
,
disabled
:
false
,
layout
:
''
,
layoutPos
:
''
,
layoutHeight
:
0
,
heightMode
:
''
,
layoutWidth
:
0
,
widthMode
:
''
,
spacingBottom
:
''
,
spacingLeft
:
''
,
spacingRight
:
''
,
spacingTop
:
''
,
hAlignSelf
:
''
,
vAlignSelf
:
''
,
flexGrow
:
-
1
,
flexParams
:{
align
:
''
,
dir
:
''
,
vAlign
:
''
},
parentName
:
'container5'
,
panel
:
this
,
required
:
false
,
fieldState
:
'0'
,
predefinedType
:
'FIELD_TEXT_DYNAMIC'
,
renderMode
:
'TEXT_DYNAMIC'
,
dataItemName
:
'subtext'
,
wrapMode
:
''
,
vAlign
:
''
,
hAlign
:
''
,
},
container5
:{
name
:
'container5'
,
type
:
'ITEMLAYOUT'
,
caption
:
'面板容器'
,
titleBarCloseMode
:
0
,
isShowCaption
:
false
,
sysCss
:
''
,
itemType
:
'CONTAINER'
,
itemStyle
:
'DEFAULT'
,
visible
:
true
,
disabled
:
false
,
layout
:
'SIMPLEFLEX'
,
layoutPos
:
''
,
layoutHeight
:
0
,
heightMode
:
''
,
layoutWidth
:
0
,
widthMode
:
''
,
spacingBottom
:
''
,
spacingLeft
:
''
,
spacingRight
:
''
,
spacingTop
:
''
,
hAlignSelf
:
''
,
vAlignSelf
:
''
,
flexGrow
:
9
,
flexParams
:{
align
:
''
,
dir
:
''
,
vAlign
:
''
},
parentName
:
'container_grid2'
,
panel
:
this
,
details
:[
'field_text_dynamic1'
,
'field_text_dynamic2'
,
'field_text_dynamic4'
]
,
dataRegionType
:
'INHERIT'
},
container5
:{
name
:
'container5'
,
type
:
'ITEMLAYOUT'
,
caption
:
'面板容器'
,
titleBarCloseMode
:
0
,
isShowCaption
:
false
,
sysCss
:
''
,
itemType
:
'CONTAINER'
,
itemStyle
:
'DEFAULT'
,
visible
:
true
,
disabled
:
false
,
layout
:
'SIMPLEFLEX'
,
layoutPos
:
''
,
layoutHeight
:
0
,
heightMode
:
''
,
layoutWidth
:
0
,
widthMode
:
''
,
spacingBottom
:
''
,
spacingLeft
:
''
,
spacingRight
:
''
,
spacingTop
:
''
,
hAlignSelf
:
''
,
vAlignSelf
:
''
,
flexGrow
:
9
,
flexParams
:{
align
:
''
,
dir
:
''
,
vAlign
:
''
},
parentName
:
'container_grid2'
,
panel
:
this
,
details
:[
'field_text_dynamic1'
,
'field_text_dynamic2'
,
'field_text_dynamic4'
]
,
dataRegionType
:
'INHERIT'
},
container_grid2
:{
name
:
'container_grid2'
,
type
:
'ITEMLAYOUT'
,
caption
:
'栅格容器'
,
titleBarCloseMode
:
0
,
isShowCaption
:
false
,
sysCss
:
''
,
itemType
:
'CONTAINER'
,
itemStyle
:
'DEFAULT'
,
visible
:
true
,
disabled
:
false
,
layout
:
'SIMPLEFLEX'
,
layoutPos
:
''
,
layoutHeight
:
0
,
heightMode
:
''
,
layoutWidth
:
0
,
widthMode
:
''
,
spacingBottom
:
''
,
spacingLeft
:
''
,
spacingRight
:
''
,
spacingTop
:
''
,
hAlignSelf
:
''
,
vAlignSelf
:
''
,
flexGrow
:
0
,
flexParams
:{
align
:
''
,
dir
:
''
,
vAlign
:
''
},
panel
:
this
,
details
:[
'container4'
,
'container5'
]
,
dataRegionType
:
'INHERIT'
},
container_grid2
:{
name
:
'container_grid2'
,
type
:
'ITEMLAYOUT'
,
caption
:
'栅格容器'
,
titleBarCloseMode
:
0
,
isShowCaption
:
false
,
sysCss
:
''
,
itemType
:
'CONTAINER'
,
itemStyle
:
'DEFAULT'
,
visible
:
true
,
disabled
:
false
,
layout
:
'SIMPLEFLEX'
,
layoutPos
:
''
,
layoutHeight
:
0
,
heightMode
:
''
,
layoutWidth
:
0
,
widthMode
:
''
,
spacingBottom
:
''
,
spacingLeft
:
''
,
spacingRight
:
''
,
spacingTop
:
''
,
hAlignSelf
:
''
,
vAlignSelf
:
''
,
flexGrow
:
0
,
flexParams
:{
align
:
''
,
dir
:
''
,
vAlign
:
''
},
panel
:
this
,
details
:[
'container4'
,
'container5'
]
,
dataRegionType
:
'INHERIT'
},
field_text_dynamic5
:{
name
:
'field_text_dynamic5'
,
type
:
'ITEMLAYOUT'
,
caption
:
'文本(动态)'
,
isShowCaption
:
false
,
sysCss
:
''
,
itemType
:
'FIELD'
,
itemStyle
:
'DEFAULT'
,
visible
:
true
,
disabled
:
false
,
layout
:
''
,
layoutPos
:
''
,
layoutHeight
:
0
,
heightMode
:
''
,
layoutWidth
:
0
,
widthMode
:
''
,
spacingBottom
:
''
,
spacingLeft
:
''
,
spacingRight
:
''
,
spacingTop
:
''
,
hAlignSelf
:
''
,
vAlignSelf
:
''
,
flexGrow
:
-
1
,
flexParams
:{
align
:
''
,
dir
:
''
,
vAlign
:
''
},
parentName
:
'container6'
,
panel
:
this
,
required
:
false
,
fieldState
:
'0'
,
predefinedType
:
'FIELD_TEXT_DYNAMIC'
,
renderMode
:
'TEXT_DYNAMIC'
,
dataItemName
:
'type'
,
wrapMode
:
''
,
vAlign
:
''
,
hAlign
:
''
,
},
field_text_dynamic5
:{
name
:
'field_text_dynamic5'
,
type
:
'ITEMLAYOUT'
,
caption
:
'文本(动态)'
,
isShowCaption
:
false
,
sysCss
:
''
,
itemType
:
'FIELD'
,
itemStyle
:
'DEFAULT'
,
visible
:
true
,
disabled
:
false
,
layout
:
''
,
layoutPos
:
''
,
layoutHeight
:
0
,
heightMode
:
''
,
layoutWidth
:
100
,
widthMode
:
'PX'
,
spacingBottom
:
''
,
spacingLeft
:
''
,
spacingRight
:
''
,
spacingTop
:
''
,
hAlignSelf
:
''
,
vAlignSelf
:
''
,
flexGrow
:
-
1
,
flexParams
:{
align
:
''
,
dir
:
''
,
vAlign
:
''
},
parentName
:
'container6'
,
panel
:
this
,
required
:
false
,
fieldState
:
'0'
,
predefinedType
:
'FIELD_TEXT_DYNAMIC'
,
renderMode
:
'TEXT_DYNAMIC'
,
dataItemName
:
'type'
,
wrapMode
:
''
,
vAlign
:
''
,
hAlign
:
''
,
},
field_text_dynamic3
:{
name
:
'field_text_dynamic3'
,
type
:
'ITEMLAYOUT'
,
caption
:
'文本(动态)'
,
isShowCaption
:
false
,
sysCss
:
''
,
itemType
:
'FIELD'
,
itemStyle
:
'DEFAULT'
,
visible
:
true
,
disabled
:
false
,
layout
:
''
,
layoutPos
:
''
,
layoutHeight
:
0
,
heightMode
:
''
,
layoutWidth
:
0
,
widthMode
:
''
,
spacingBottom
:
''
,
spacingLeft
:
''
,
spacingRight
:
''
,
spacingTop
:
''
,
hAlignSelf
:
''
,
vAlignSelf
:
''
,
flexGrow
:
-
1
,
flexParams
:{
align
:
''
,
dir
:
''
,
vAlign
:
''
},
parentName
:
'container6'
,
panel
:
this
,
required
:
false
,
fieldState
:
'0'
,
predefinedType
:
'FIELD_TEXT_DYNAMIC'
,
renderMode
:
'TEXT_DYNAMIC'
,
dataItemName
:
'press'
,
wrapMode
:
''
,
vAlign
:
''
,
hAlign
:
''
,
},
field_text_dynamic3
:{
name
:
'field_text_dynamic3'
,
type
:
'ITEMLAYOUT'
,
caption
:
'文本(动态)'
,
isShowCaption
:
false
,
sysCss
:
''
,
itemType
:
'FIELD'
,
itemStyle
:
'DEFAULT'
,
visible
:
true
,
disabled
:
false
,
layout
:
''
,
layoutPos
:
''
,
layoutHeight
:
0
,
heightMode
:
''
,
layoutWidth
:
100
,
widthMode
:
'PX'
,
spacingBottom
:
''
,
spacingLeft
:
''
,
spacingRight
:
''
,
spacingTop
:
''
,
hAlignSelf
:
''
,
vAlignSelf
:
''
,
flexGrow
:
-
1
,
flexParams
:{
align
:
''
,
dir
:
''
,
vAlign
:
''
},
parentName
:
'container6'
,
panel
:
this
,
required
:
false
,
fieldState
:
'0'
,
predefinedType
:
'FIELD_TEXT_DYNAMIC'
,
renderMode
:
'TEXT_DYNAMIC'
,
dataItemName
:
'press'
,
wrapMode
:
''
,
vAlign
:
''
,
hAlign
:
''
,
},
button_calluilogic1
:{
name
:
'button_calluilogic1'
,
type
:
'ITEMLAYOUT'
,
caption
:
'按钮'
,
isShowCaption
:
true
,
sysCss
:
''
,
itemType
:
'BUTTON'
,
itemStyle
:
'DEFAULT'
,
visible
:
true
,
disabled
:
false
,
layout
:
''
,
layoutPos
:
''
,
layoutHeight
:
0
,
heightMode
:
''
,
layoutWidth
:
0
,
widthMode
:
''
,
spacingBottom
:
''
,
spacingLeft
:
''
,
spacingRight
:
''
,
spacingTop
:
''
,
hAlignSelf
:
''
,
vAlignSelf
:
''
,
flexGrow
:
-
1
,
flexParams
:{
align
:
''
,
dir
:
''
,
vAlign
:
''
},
parentName
:
'container6'
,
panel
:
this
,
xDataControlName
:
'list'
,
buttonStyle
:
'DEFAULT'
,
borderStyle
:
''
,
iconAlign
:
''
,
uiAction
:
{
actiontarget
:
'NONE'
,
noprivdisplaymode
:
'2'
,
dataaccaction
:
''
,
visabled
:
true
,
disabled
:
false
},
renderMode
:
''
,
},
field_text_dynamic6
:{
name
:
'field_text_dynamic6'
,
type
:
'ITEMLAYOUT'
,
caption
:
'文本(动态)'
,
isShowCaption
:
false
,
sysCss
:
''
,
itemType
:
'FIELD'
,
itemStyle
:
'DEFAULT'
,
visible
:
true
,
disabled
:
false
,
layout
:
''
,
layoutPos
:
''
,
layoutHeight
:
0
,
heightMode
:
''
,
layoutWidth
:
100
,
widthMode
:
'PX'
,
spacingBottom
:
''
,
spacingLeft
:
''
,
spacingRight
:
''
,
spacingTop
:
''
,
hAlignSelf
:
''
,
vAlignSelf
:
''
,
flexGrow
:
-
1
,
flexParams
:{
align
:
''
,
dir
:
''
,
vAlign
:
''
},
parentName
:
'container6'
,
panel
:
this
,
required
:
false
,
fieldState
:
'0'
,
predefinedType
:
'FIELD_TEXT_DYNAMIC'
,
renderMode
:
'TEXT_DYNAMIC'
,
dataItemName
:
'price'
,
wrapMode
:
''
,
vAlign
:
''
,
hAlign
:
''
,
},
container6
:{
name
:
'container6'
,
type
:
'ITEMLAYOUT'
,
caption
:
'容器'
,
titleBarCloseMode
:
0
,
isShowCaption
:
false
,
sysCss
:
''
,
itemType
:
'CONTAINER'
,
itemStyle
:
'DEFAULT'
,
visible
:
true
,
disabled
:
false
,
layout
:
'FLEX'
,
layoutPos
:
''
,
layoutHeight
:
0
,
heightMode
:
''
,
layoutWidth
:
0
,
widthMode
:
''
,
spacingBottom
:
''
,
spacingLeft
:
''
,
spacingRight
:
''
,
spacingTop
:
''
,
hAlignSelf
:
''
,
vAlignSelf
:
''
,
flexGrow
:
0
,
flexParams
:{
align
:
''
,
dir
:
''
,
vAlign
:
''
},
panel
:
this
,
details
:[
'field_text_dynamic5'
,
'field_text_dynamic3'
,
'button_calluilogic1'
]
,
dataRegionType
:
'INHERIT'
}
button_calluilogic1
:{
name
:
'button_calluilogic1'
,
type
:
'ITEMLAYOUT'
,
caption
:
'按钮'
,
isShowCaption
:
true
,
sysCss
:
''
,
itemType
:
'BUTTON'
,
itemStyle
:
'DEFAULT'
,
visible
:
true
,
disabled
:
false
,
layout
:
''
,
layoutPos
:
''
,
layoutHeight
:
0
,
heightMode
:
''
,
layoutWidth
:
100
,
widthMode
:
'PX'
,
spacingBottom
:
''
,
spacingLeft
:
''
,
spacingRight
:
''
,
spacingTop
:
''
,
hAlignSelf
:
''
,
vAlignSelf
:
''
,
flexGrow
:
-
1
,
flexParams
:{
align
:
''
,
dir
:
''
,
vAlign
:
''
},
parentName
:
'container6'
,
panel
:
this
,
xDataControlName
:
'list'
,
buttonStyle
:
'DEFAULT'
,
borderStyle
:
''
,
iconAlign
:
''
,
renderMode
:
''
,
},
container6
:{
name
:
'container6'
,
type
:
'ITEMLAYOUT'
,
caption
:
'容器'
,
titleBarCloseMode
:
0
,
isShowCaption
:
false
,
sysCss
:
''
,
itemType
:
'CONTAINER'
,
itemStyle
:
'DEFAULT'
,
visible
:
true
,
disabled
:
false
,
layout
:
'FLEX'
,
layoutPos
:
''
,
layoutHeight
:
0
,
heightMode
:
''
,
layoutWidth
:
0
,
widthMode
:
''
,
spacingBottom
:
''
,
spacingLeft
:
''
,
spacingRight
:
''
,
spacingTop
:
''
,
hAlignSelf
:
''
,
vAlignSelf
:
''
,
flexGrow
:
0
,
flexParams
:{
align
:
'space-between'
,
dir
:
'row'
,
vAlign
:
''
},
panel
:
this
,
details
:[
'field_text_dynamic5'
,
'field_text_dynamic3'
,
'field_text_dynamic6'
,
'button_calluilogic1'
]
,
dataRegionType
:
'INHERIT'
}
}
}
/**
/**
...
@@ -625,25 +629,8 @@ export default class ListpanelBase extends Vue implements ControlInterface {
...
@@ -625,25 +629,8 @@ export default class ListpanelBase extends Vue implements ControlInterface {
const
paramJO
:
any
=
{};
const
paramJO
:
any
=
{};
const
contextJO
:
any
=
{};
const
contextJO
:
any
=
{};
const
_this
:
any
=
this
;
const
_this
:
any
=
this
;
if
(
Object
.
is
(
name
,
'button_calluilogic1'
))
{
_this
.
IBIZBOOK_panel_Listpanel_button_calluilogic1_click
(
datas
,
contextJO
,
paramJO
,
$event
,
xData
,
this
,
undefined
);
}
}
}
/**
* 按钮
*
* @param {any[]} args 当前数据
* @param {any} context 行为附加上下文
* @param {*} [params] 附加参数
* @param {*} [$event] 事件源
* @param {*} [xData] 执行行为所需当前部件
* @param {*} [actionContext] 执行行为上下文
* @param {*} [srfParentDeName] 父实体名称
*/
public
IBIZBOOK_panel_Listpanel_button_calluilogic1_click
(
args
:
any
[],
context
:
any
=
{},
params
:
any
=
{},
$event
?:
any
,
xData
?:
any
,
actionContext
?:
any
,
srfParentDeName
?:
string
)
{
this
.
$Notice
.
error
({
title
:
'错误'
,
desc
:
'自定义行为未实现'
});
}
}
}
</
script
>
</
script
>
...
...
app_Web/src/widgets/ibizbook/listpanel-panel/listpanel-panel-model.ts
浏览文件 @
e360ffba
...
@@ -41,6 +41,10 @@ export default class ListpanelModel {
...
@@ -41,6 +41,10 @@ export default class ListpanelModel {
{
{
name
:
'field_text_dynamic3'
,
name
:
'field_text_dynamic3'
,
prop
:
'press'
prop
:
'press'
},
{
name
:
'field_text_dynamic6'
,
prop
:
'price'
}
}
]
]
}
}
...
...
app_Web/src/widgets/ibizorder/card-navigation-dataview/card-navigation-dataview-base.vue
浏览文件 @
e360ffba
...
@@ -715,7 +715,7 @@ export default class CardNavigationBase extends Vue implements ControlInterface
...
@@ -715,7 +715,7 @@ export default class CardNavigationBase extends Vue implements ControlInterface
*/
*/
public
load
(
opt
:
any
=
{},
isReset
:
boolean
=
false
):
void
{
public
load
(
opt
:
any
=
{},
isReset
:
boolean
=
false
):
void
{
if
(
!
this
.
fetchAction
){
if
(
!
this
.
fetchAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDataViewExpView'
+
(
this
.
$t
(
'app.list.notConfig.fetchAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDataViewExpView
_layout
'
+
(
this
.
$t
(
'app.list.notConfig.fetchAction'
)
as
string
)
});
return
;
return
;
}
}
const
arg
:
any
=
{...
opt
};
const
arg
:
any
=
{...
opt
};
...
@@ -794,7 +794,7 @@ export default class CardNavigationBase extends Vue implements ControlInterface
...
@@ -794,7 +794,7 @@ export default class CardNavigationBase extends Vue implements ControlInterface
*/
*/
public
async
remove
(
datas
:
any
[]):
Promise
<
any
>
{
public
async
remove
(
datas
:
any
[]):
Promise
<
any
>
{
if
(
!
this
.
removeAction
){
if
(
!
this
.
removeAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDataViewExpView'
+
(
this
.
$t
(
'app.gridpage.notConfig.removeAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDataViewExpView
_layout
'
+
(
this
.
$t
(
'app.gridpage.notConfig.removeAction'
)
as
string
)
});
return
;
return
;
}
}
let
_datas
:
any
[]
=
[];
let
_datas
:
any
[]
=
[];
...
@@ -903,7 +903,7 @@ export default class CardNavigationBase extends Vue implements ControlInterface
...
@@ -903,7 +903,7 @@ export default class CardNavigationBase extends Vue implements ControlInterface
try
{
try
{
if
(
Object
.
is
(
item
.
rowDataState
,
'create'
)){
if
(
Object
.
is
(
item
.
rowDataState
,
'create'
)){
if
(
!
this
.
createAction
){
if
(
!
this
.
createAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDataViewExpView'
+
(
this
.
$t
(
'app.list.notConfig.createAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDataViewExpView
_layout
'
+
(
this
.
$t
(
'app.list.notConfig.createAction'
)
as
string
)
});
}
else
{
}
else
{
Object
.
assign
(
item
,{
viewparams
:
this
.
viewparams
});
Object
.
assign
(
item
,{
viewparams
:
this
.
viewparams
});
let
response
=
await
this
.
service
.
add
(
this
.
createAction
,
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
)),
item
,
this
.
showBusyIndicator
);
let
response
=
await
this
.
service
.
add
(
this
.
createAction
,
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
)),
item
,
this
.
showBusyIndicator
);
...
@@ -911,7 +911,7 @@ export default class CardNavigationBase extends Vue implements ControlInterface
...
@@ -911,7 +911,7 @@ export default class CardNavigationBase extends Vue implements ControlInterface
}
}
}
else
if
(
Object
.
is
(
item
.
rowDataState
,
'update'
)){
}
else
if
(
Object
.
is
(
item
.
rowDataState
,
'update'
)){
if
(
!
this
.
updateAction
){
if
(
!
this
.
updateAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDataViewExpView'
+
(
this
.
$t
(
'app.list.notConfig.updateAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDataViewExpView
_layout
'
+
(
this
.
$t
(
'app.list.notConfig.updateAction'
)
as
string
)
});
}
else
{
}
else
{
Object
.
assign
(
item
,{
viewparams
:
this
.
viewparams
});
Object
.
assign
(
item
,{
viewparams
:
this
.
viewparams
});
if
(
item
.
ibizorder
){
if
(
item
.
ibizorder
){
...
...
app_Web/src/widgets/ibizorder/main-grid/main-grid-base.vue
浏览文件 @
e360ffba
...
@@ -299,7 +299,7 @@ export default class MainBase extends Vue implements ControlInterface {
...
@@ -299,7 +299,7 @@ export default class MainBase extends Vue implements ControlInterface {
* @param {*} [$event] 事件源
* @param {*} [$event] 事件源
* @param {*} [xData] 执行行为所需当前部件
* @param {*} [xData] 执行行为所需当前部件
* @param {*} [actionContext] 执行行为上下文
* @param {*} [actionContext] 执行行为上下文
* @memberof IBIZOrder
SF1
GridViewBase
* @memberof IBIZOrder
Pickup
GridViewBase
*/
*/
public
Edit
(
args
:
any
[],
contextJO
?:
any
,
params
?:
any
,
$event
?:
any
,
xData
?:
any
,
actionContext
?:
any
,
srfParentDeName
?:
string
)
{
public
Edit
(
args
:
any
[],
contextJO
?:
any
,
params
?:
any
,
$event
?:
any
,
xData
?:
any
,
actionContext
?:
any
,
srfParentDeName
?:
string
)
{
if
(
args
.
length
===
0
)
{
if
(
args
.
length
===
0
)
{
...
@@ -441,20 +441,6 @@ export default class MainBase extends Vue implements ControlInterface {
...
@@ -441,20 +441,6 @@ export default class MainBase extends Vue implements ControlInterface {
return
this
.
selections
[
0
];
return
this
.
selections
[
0
];
}
}
/**
* 打开新建数据视图
*
* @type {any}
* @memberof MainBase
*/
@
Prop
()
public
newdata
:
any
;
/**
* 打开编辑数据视图
*
* @type {any}
* @memberof MainBase
*/
@
Prop
()
public
opendata
:
any
;
/**
/**
* 是否嵌入关系界面
* 是否嵌入关系界面
...
@@ -989,7 +975,7 @@ export default class MainBase extends Vue implements ControlInterface {
...
@@ -989,7 +975,7 @@ export default class MainBase extends Vue implements ControlInterface {
if
(
!
this
.
fetchAction
)
{
if
(
!
this
.
fetchAction
)
{
this
.
$Notice
.
error
({
this
.
$Notice
.
error
({
title
:
this
.
$t
(
"app.commonWords.wrong"
)
as
string
,
title
:
this
.
$t
(
"app.commonWords.wrong"
)
as
string
,
desc
:
"IBIZOrder
SF1
GridView"
+
(
this
.
$t
(
"app.gridpage.notConfig.fetchAction"
)
as
string
),
desc
:
"IBIZOrder
Pickup
GridView"
+
(
this
.
$t
(
"app.gridpage.notConfig.fetchAction"
)
as
string
),
});
});
return
;
return
;
}
}
...
@@ -1118,7 +1104,7 @@ export default class MainBase extends Vue implements ControlInterface {
...
@@ -1118,7 +1104,7 @@ export default class MainBase extends Vue implements ControlInterface {
if
(
!
this
.
removeAction
)
{
if
(
!
this
.
removeAction
)
{
this
.
$Notice
.
error
({
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrder
SF1
GridView'
+
(
this
.
$t
(
'app.gridpage.notConfig.removeAction'
)
as
string
)
desc
:
'IBIZOrder
Pickup
GridView'
+
(
this
.
$t
(
'app.gridpage.notConfig.removeAction'
)
as
string
)
});
});
return
;
return
;
}
}
...
@@ -1232,7 +1218,7 @@ export default class MainBase extends Vue implements ControlInterface {
...
@@ -1232,7 +1218,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/
*/
public
addBatch
(
arg
:
any
=
{}):
void
{
public
addBatch
(
arg
:
any
=
{}):
void
{
if
(
!
this
.
fetchAction
){
if
(
!
this
.
fetchAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrder
SF1
GridView'
+
(
this
.
$t
(
'app.gridpage.notConfig.fetchAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrder
Pickup
GridView'
+
(
this
.
$t
(
'app.gridpage.notConfig.fetchAction'
)
as
string
)
});
return
;
return
;
}
}
if
(
!
arg
){
if
(
!
arg
){
...
@@ -2163,7 +2149,7 @@ export default class MainBase extends Vue implements ControlInterface {
...
@@ -2163,7 +2149,7 @@ export default class MainBase extends Vue implements ControlInterface {
try
{
try
{
if
(
Object
.
is
(
item
.
rowDataState
,
'create'
))
{
if
(
Object
.
is
(
item
.
rowDataState
,
'create'
))
{
if
(
!
this
.
createAction
)
{
if
(
!
this
.
createAction
)
{
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrder
SF1
GridView'
+
(
this
.
$t
(
'app.gridpage.notConfig.createAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrder
Pickup
GridView'
+
(
this
.
$t
(
'app.gridpage.notConfig.createAction'
)
as
string
)
});
}
else
{
}
else
{
Object
.
assign
(
item
,
{
viewparams
:
this
.
viewparams
});
Object
.
assign
(
item
,
{
viewparams
:
this
.
viewparams
});
const
tempContext
=
Util
.
deepCopy
(
this
.
context
);
const
tempContext
=
Util
.
deepCopy
(
this
.
context
);
...
@@ -2172,7 +2158,7 @@ export default class MainBase extends Vue implements ControlInterface {
...
@@ -2172,7 +2158,7 @@ export default class MainBase extends Vue implements ControlInterface {
}
}
}
else
if
(
Object
.
is
(
item
.
rowDataState
,
'update'
)){
}
else
if
(
Object
.
is
(
item
.
rowDataState
,
'update'
)){
if
(
!
this
.
updateAction
)
{
if
(
!
this
.
updateAction
)
{
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrder
SF1
GridView'
+
(
this
.
$t
(
'app.gridpage.notConfig.updateAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrder
Pickup
GridView'
+
(
this
.
$t
(
'app.gridpage.notConfig.updateAction'
)
as
string
)
});
}
else
{
}
else
{
Object
.
assign
(
item
,
{
viewparams
:
this
.
viewparams
});
Object
.
assign
(
item
,
{
viewparams
:
this
.
viewparams
});
const
tempContext
=
Util
.
deepCopy
(
this
.
context
);
const
tempContext
=
Util
.
deepCopy
(
this
.
context
);
...
@@ -2248,7 +2234,7 @@ export default class MainBase extends Vue implements ControlInterface {
...
@@ -2248,7 +2234,7 @@ export default class MainBase extends Vue implements ControlInterface {
if
(
!
this
.
loaddraftAction
){
if
(
!
this
.
loaddraftAction
){
this
.
$Notice
.
error
({
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrder
SF1
GridView'
+
(
this
.
$t
(
'app.gridpage.notConfig.loaddraftAction'
)
as
string
)
desc
:
'IBIZOrder
Pickup
GridView'
+
(
this
.
$t
(
'app.gridpage.notConfig.loaddraftAction'
)
as
string
)
});
});
return
;
return
;
}
}
...
...
app_Web/src/widgets/ibizorder/main-grid/main-grid-model.ts
浏览文件 @
e360ffba
...
@@ -104,21 +104,6 @@ export default class MainModel {
...
@@ -104,21 +104,6 @@ export default class MainModel {
prop
:
'n_ibizordername_like'
,
prop
:
'n_ibizordername_like'
,
dataType
:
'QUERYPARAM'
dataType
:
'QUERYPARAM'
},
},
{
name
:
'n_orderstate_eq'
,
prop
:
'n_orderstate_eq'
,
dataType
:
'QUERYPARAM'
},
{
name
:
'n_ordertime_gt'
,
prop
:
'n_ordertime_gt'
,
dataType
:
'QUERYPARAM'
},
{
name
:
'n_ordertime_lt'
,
prop
:
'n_ordertime_lt'
,
dataType
:
'QUERYPARAM'
},
{
{
name
:
'size'
,
name
:
'size'
,
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json
浏览文件 @
e360ffba
...
@@ -2051,21 +2051,6 @@
...
@@ -2051,21 +2051,6 @@
"uIActionMode"
:
"SYS"
,
"uIActionMode"
:
"SYS"
,
"uIActionTag"
:
"panel_Layoutpanel_button_calluilogic2_click"
,
"uIActionTag"
:
"panel_Layoutpanel_button_calluilogic2_click"
,
"uIActionType"
:
"DEUIACTION"
"uIActionType"
:
"DEUIACTION"
},
{
"actionTarget"
:
"NONE"
,
"caption"
:
"按钮"
,
"codeName"
:
"panel_Listpanel_button_calluilogic1_click"
,
"fullCodeName"
:
"IBIZBOOK_panel_Listpanel_button_calluilogic1_click"
,
"name"
:
"按钮"
,
"getPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json"
},
"timeout"
:
60000
,
"uIActionMode"
:
"CUSTOM"
,
"uIActionTag"
:
"panel_Listpanel_button_calluilogic1_click"
,
"uIActionType"
:
"DEUIACTION"
,
"id"
:
"panel_Listpanel_button_calluilogic1_click@IBIZBOOK"
},
{
},
{
"actionTarget"
:
"SINGLEDATA"
,
"actionTarget"
:
"SINGLEDATA"
,
"caption"
:
"编辑"
,
"caption"
:
"编辑"
,
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK/PSLISTS/Listpanel.json
浏览文件 @
e360ffba
...
@@ -38,6 +38,9 @@
...
@@ -38,6 +38,9 @@
},
{
},
{
"id"
:
"field_text_dynamic3"
,
"id"
:
"field_text_dynamic3"
,
"viewFieldName"
:
"press"
"viewFieldName"
:
"press"
},
{
"id"
:
"field_text_dynamic6"
,
"viewFieldName"
:
"price"
}
],
}
],
"codeName"
:
"Listpanel"
,
"codeName"
:
"Listpanel"
,
"controlType"
:
"PANEL"
,
"controlType"
:
"PANEL"
,
...
@@ -48,28 +51,6 @@
...
@@ -48,28 +51,6 @@
"modelref"
:
true
,
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json"
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json"
},
},
"getPSAppViewLogics"
:
[
{
"logicTrigger"
:
"CUSTOM"
,
"logicType"
:
"APPVIEWUIACTION"
,
"name"
:
"list_itempanel_button_calluilogic1_click"
,
"getPSAppViewUIAction"
:
{
"modelref"
:
true
,
"id"
:
"list_itempanel_button_calluilogic1"
}
}
],
"getPSAppViewUIActions"
:
[
{
"name"
:
"list_itempanel_button_calluilogic1"
,
"getPSUIAction"
:
{
"getPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json"
},
"modelref"
:
true
,
"id"
:
"panel_Listpanel_button_calluilogic1_click@IBIZBOOK"
},
"uIActionTarget"
:
"NONE"
,
"xDataControlName"
:
"list_itempanel"
}
],
"getPSControlParam"
:
{
},
"getPSControlParam"
:
{
},
"getPSLayout"
:
{
"getPSLayout"
:
{
"columnCount"
:
24
,
"columnCount"
:
24
,
...
@@ -329,6 +310,8 @@
...
@@ -329,6 +310,8 @@
"itemType"
:
"CONTAINER"
,
"itemType"
:
"CONTAINER"
,
"name"
:
"container6"
,
"name"
:
"container6"
,
"getPSLayout"
:
{
"getPSLayout"
:
{
"align"
:
"space-between"
,
"dir"
:
"row"
,
"layout"
:
"FLEX"
"layout"
:
"FLEX"
},
},
"getPSLayoutPos"
:
{
"getPSLayoutPos"
:
{
...
@@ -337,11 +320,13 @@
...
@@ -337,11 +320,13 @@
},
},
"getPSPanelItems"
:
[
{
"getPSPanelItems"
:
[
{
"caption"
:
"文本(动态)"
,
"caption"
:
"文本(动态)"
,
"contentWidth"
:
100.0
,
"itemStyle"
:
"DEFAULT"
,
"itemStyle"
:
"DEFAULT"
,
"itemType"
:
"FIELD"
,
"itemType"
:
"FIELD"
,
"name"
:
"field_text_dynamic5"
,
"name"
:
"field_text_dynamic5"
,
"getPSEditor"
:
{
"getPSEditor"
:
{
"editorType"
:
"SPAN"
,
"editorType"
:
"SPAN"
,
"editorWidth"
:
100.0
,
"name"
:
"field_text_dynamic5"
,
"name"
:
"field_text_dynamic5"
,
"predefinedType"
:
"FIELD_TEXT_DYNAMIC"
,
"predefinedType"
:
"FIELD_TEXT_DYNAMIC"
,
"renderMode"
:
"TEXT_DYNAMIC"
,
"renderMode"
:
"TEXT_DYNAMIC"
,
...
@@ -349,18 +334,23 @@
...
@@ -349,18 +334,23 @@
},
},
"getPSLayoutPos"
:
{
"getPSLayoutPos"
:
{
"grow"
:
-1
,
"grow"
:
-1
,
"layout"
:
"FLEX"
"layout"
:
"FLEX"
,
"width"
:
100
,
"widthMode"
:
"PX"
},
},
"viewFieldName"
:
"type"
,
"viewFieldName"
:
"type"
,
"width"
:
100.0
,
"hidden"
:
false
,
"hidden"
:
false
,
"showCaption"
:
false
"showCaption"
:
false
},
{
},
{
"caption"
:
"文本(动态)"
,
"caption"
:
"文本(动态)"
,
"contentWidth"
:
100.0
,
"itemStyle"
:
"DEFAULT"
,
"itemStyle"
:
"DEFAULT"
,
"itemType"
:
"FIELD"
,
"itemType"
:
"FIELD"
,
"name"
:
"field_text_dynamic3"
,
"name"
:
"field_text_dynamic3"
,
"getPSEditor"
:
{
"getPSEditor"
:
{
"editorType"
:
"SPAN"
,
"editorType"
:
"SPAN"
,
"editorWidth"
:
100.0
,
"name"
:
"field_text_dynamic3"
,
"name"
:
"field_text_dynamic3"
,
"predefinedType"
:
"FIELD_TEXT_DYNAMIC"
,
"predefinedType"
:
"FIELD_TEXT_DYNAMIC"
,
"renderMode"
:
"TEXT_DYNAMIC"
,
"renderMode"
:
"TEXT_DYNAMIC"
,
...
@@ -368,43 +358,55 @@
...
@@ -368,43 +358,55 @@
},
},
"getPSLayoutPos"
:
{
"getPSLayoutPos"
:
{
"grow"
:
-1
,
"grow"
:
-1
,
"layout"
:
"FLEX"
"layout"
:
"FLEX"
,
"width"
:
100
,
"widthMode"
:
"PX"
},
},
"viewFieldName"
:
"press"
,
"viewFieldName"
:
"press"
,
"width"
:
100.0
,
"hidden"
:
false
,
"showCaption"
:
false
},
{
"caption"
:
"文本(动态)"
,
"contentWidth"
:
100.0
,
"itemStyle"
:
"DEFAULT"
,
"itemType"
:
"FIELD"
,
"name"
:
"field_text_dynamic6"
,
"getPSEditor"
:
{
"editorType"
:
"SPAN"
,
"editorWidth"
:
100.0
,
"name"
:
"field_text_dynamic6"
,
"predefinedType"
:
"FIELD_TEXT_DYNAMIC"
,
"renderMode"
:
"TEXT_DYNAMIC"
,
"enableLinkView"
:
false
},
"getPSLayoutPos"
:
{
"grow"
:
-1
,
"layout"
:
"FLEX"
,
"width"
:
100
,
"widthMode"
:
"PX"
},
"viewFieldName"
:
"price"
,
"width"
:
100.0
,
"hidden"
:
false
,
"hidden"
:
false
,
"showCaption"
:
false
"showCaption"
:
false
},
{
},
{
"actionType"
:
"
UIACTION
"
,
"actionType"
:
"
NONE
"
,
"buttonStyle"
:
"DEFAULT"
,
"buttonStyle"
:
"DEFAULT"
,
"buttonWidth"
:
100.0
,
"caption"
:
"按钮"
,
"caption"
:
"按钮"
,
"contentWidth"
:
100.0
,
"itemStyle"
:
"DEFAULT"
,
"itemStyle"
:
"DEFAULT"
,
"itemType"
:
"BUTTON"
,
"itemType"
:
"BUTTON"
,
"name"
:
"button_calluilogic1"
,
"name"
:
"button_calluilogic1"
,
"getPSAppViewUIAction"
:
{
"modelref"
:
true
,
"id"
:
"list_itempanel_button_calluilogic1"
},
"getPSLayoutPos"
:
{
"getPSLayoutPos"
:
{
"grow"
:
-1
,
"grow"
:
-1
,
"layout"
:
"FLEX"
"layout"
:
"FLEX"
,
},
"width"
:
100
,
"getPSUIAction"
:
{
"widthMode"
:
"PX"
"actionTarget"
:
"NONE"
,
"caption"
:
"按钮"
,
"codeName"
:
"panel_Listpanel_button_calluilogic1_click"
,
"fullCodeName"
:
"IBIZBOOK_panel_Listpanel_button_calluilogic1_click"
,
"name"
:
"按钮"
,
"getPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json"
},
"timeout"
:
60000
,
"uIActionMode"
:
"CUSTOM"
,
"uIActionTag"
:
"panel_Listpanel_button_calluilogic1_click"
,
"uIActionType"
:
"DEUIACTION"
,
"id"
:
"panel_Listpanel_button_calluilogic1_click@IBIZBOOK"
},
},
"tooltip"
:
"按钮"
,
"tooltip"
:
"按钮"
,
"width"
:
100.0
,
"showCaption"
:
true
"showCaption"
:
true
}
]
}
]
}
],
}
],
...
@@ -433,31 +435,21 @@
...
@@ -433,31 +435,21 @@
},
},
"getPSDEListDataItems"
:
[
{
"getPSDEListDataItems"
:
[
{
"dataType"
:
25
,
"dataType"
:
25
,
"name"
:
"press"
,
"getFrontPSCodeList"
:
{
"getPSAppDEField"
:
{
"modelref"
:
true
,
"name"
:
"PRESS"
,
"path"
:
"PSSYSAPPS/Web/PSAPPCODELISTS/BookType.json"
"codeName"
:
"Press"
},
}
"name"
:
"type"
,
},
{
"dataType"
:
9
,
"name"
:
"booknumber"
,
"getPSAppDEField"
:
{
"name"
:
"BOOKNUMBER"
,
"codeName"
:
"Booknumber"
}
},
{
"dataType"
:
7
,
"name"
:
"price"
,
"getPSAppDEField"
:
{
"getPSAppDEField"
:
{
"name"
:
"
PRIC
E"
,
"name"
:
"
TYP
E"
,
"codeName"
:
"
Pric
e"
"codeName"
:
"
Typ
e"
}
}
},
{
},
{
"dataType"
:
2
5
,
"dataType"
:
2
1
,
"name"
:
"
author
"
,
"name"
:
"
icon
"
,
"getPSAppDEField"
:
{
"getPSAppDEField"
:
{
"name"
:
"
AUTHOR
"
,
"name"
:
"
ICON
"
,
"codeName"
:
"
Author
"
"codeName"
:
"
Icon
"
}
}
},
{
},
{
"dataType"
:
25
,
"dataType"
:
25
,
...
@@ -475,14 +467,17 @@
...
@@ -475,14 +467,17 @@
}
}
},
{
},
{
"dataType"
:
25
,
"dataType"
:
25
,
"getFrontPSCodeList"
:
{
"name"
:
"author"
,
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPCODELISTS/BookType.json"
},
"name"
:
"type"
,
"getPSAppDEField"
:
{
"getPSAppDEField"
:
{
"name"
:
"TYPE"
,
"name"
:
"AUTHOR"
,
"codeName"
:
"Type"
"codeName"
:
"Author"
}
},
{
"dataType"
:
25
,
"name"
:
"press"
,
"getPSAppDEField"
:
{
"name"
:
"PRESS"
,
"codeName"
:
"Press"
}
}
},
{
},
{
"dataType"
:
25
,
"dataType"
:
25
,
...
@@ -491,6 +486,20 @@
...
@@ -491,6 +486,20 @@
"name"
:
"SUBTEXT"
,
"name"
:
"SUBTEXT"
,
"codeName"
:
"Subtext"
"codeName"
:
"Subtext"
}
}
},
{
"dataType"
:
7
,
"name"
:
"price"
,
"getPSAppDEField"
:
{
"name"
:
"PRICE"
,
"codeName"
:
"Price"
}
},
{
"dataType"
:
9
,
"name"
:
"booknumber"
,
"getPSAppDEField"
:
{
"name"
:
"BOOKNUMBER"
,
"codeName"
:
"Booknumber"
}
},
{
},
{
"dataType"
:
25
,
"dataType"
:
25
,
"name"
:
"srfkey"
,
"name"
:
"srfkey"
,
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK/PSPANELS/Listpanel.json
浏览文件 @
e360ffba
...
@@ -20,6 +20,9 @@
...
@@ -20,6 +20,9 @@
},
{
},
{
"id"
:
"field_text_dynamic3"
,
"id"
:
"field_text_dynamic3"
,
"viewFieldName"
:
"press"
"viewFieldName"
:
"press"
},
{
"id"
:
"field_text_dynamic6"
,
"viewFieldName"
:
"price"
}
],
}
],
"codeName"
:
"Listpanel"
,
"codeName"
:
"Listpanel"
,
"controlType"
:
"PANEL"
,
"controlType"
:
"PANEL"
,
...
@@ -30,28 +33,6 @@
...
@@ -30,28 +33,6 @@
"modelref"
:
true
,
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json"
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json"
},
},
"getPSAppViewLogics"
:
[
{
"logicTrigger"
:
"CUSTOM"
,
"logicType"
:
"APPVIEWUIACTION"
,
"name"
:
"list_itempanel_button_calluilogic1_click"
,
"getPSAppViewUIAction"
:
{
"modelref"
:
true
,
"id"
:
"list_itempanel_button_calluilogic1"
}
}
],
"getPSAppViewUIActions"
:
[
{
"name"
:
"list_itempanel_button_calluilogic1"
,
"getPSUIAction"
:
{
"getPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json"
},
"modelref"
:
true
,
"id"
:
"panel_Listpanel_button_calluilogic1_click@IBIZBOOK"
},
"uIActionTarget"
:
"NONE"
,
"xDataControlName"
:
"list_itempanel"
}
],
"getPSLayout"
:
{
"getPSLayout"
:
{
"columnCount"
:
24
,
"columnCount"
:
24
,
"layout"
:
"TABLE_24COL"
"layout"
:
"TABLE_24COL"
...
@@ -310,6 +291,8 @@
...
@@ -310,6 +291,8 @@
"itemType"
:
"CONTAINER"
,
"itemType"
:
"CONTAINER"
,
"name"
:
"container6"
,
"name"
:
"container6"
,
"getPSLayout"
:
{
"getPSLayout"
:
{
"align"
:
"space-between"
,
"dir"
:
"row"
,
"layout"
:
"FLEX"
"layout"
:
"FLEX"
},
},
"getPSLayoutPos"
:
{
"getPSLayoutPos"
:
{
...
@@ -318,11 +301,13 @@
...
@@ -318,11 +301,13 @@
},
},
"getPSPanelItems"
:
[
{
"getPSPanelItems"
:
[
{
"caption"
:
"文本(动态)"
,
"caption"
:
"文本(动态)"
,
"contentWidth"
:
100.0
,
"itemStyle"
:
"DEFAULT"
,
"itemStyle"
:
"DEFAULT"
,
"itemType"
:
"FIELD"
,
"itemType"
:
"FIELD"
,
"name"
:
"field_text_dynamic5"
,
"name"
:
"field_text_dynamic5"
,
"getPSEditor"
:
{
"getPSEditor"
:
{
"editorType"
:
"SPAN"
,
"editorType"
:
"SPAN"
,
"editorWidth"
:
100.0
,
"name"
:
"field_text_dynamic5"
,
"name"
:
"field_text_dynamic5"
,
"predefinedType"
:
"FIELD_TEXT_DYNAMIC"
,
"predefinedType"
:
"FIELD_TEXT_DYNAMIC"
,
"renderMode"
:
"TEXT_DYNAMIC"
,
"renderMode"
:
"TEXT_DYNAMIC"
,
...
@@ -330,18 +315,23 @@
...
@@ -330,18 +315,23 @@
},
},
"getPSLayoutPos"
:
{
"getPSLayoutPos"
:
{
"grow"
:
-1
,
"grow"
:
-1
,
"layout"
:
"FLEX"
"layout"
:
"FLEX"
,
"width"
:
100
,
"widthMode"
:
"PX"
},
},
"viewFieldName"
:
"type"
,
"viewFieldName"
:
"type"
,
"width"
:
100.0
,
"hidden"
:
false
,
"hidden"
:
false
,
"showCaption"
:
false
"showCaption"
:
false
},
{
},
{
"caption"
:
"文本(动态)"
,
"caption"
:
"文本(动态)"
,
"contentWidth"
:
100.0
,
"itemStyle"
:
"DEFAULT"
,
"itemStyle"
:
"DEFAULT"
,
"itemType"
:
"FIELD"
,
"itemType"
:
"FIELD"
,
"name"
:
"field_text_dynamic3"
,
"name"
:
"field_text_dynamic3"
,
"getPSEditor"
:
{
"getPSEditor"
:
{
"editorType"
:
"SPAN"
,
"editorType"
:
"SPAN"
,
"editorWidth"
:
100.0
,
"name"
:
"field_text_dynamic3"
,
"name"
:
"field_text_dynamic3"
,
"predefinedType"
:
"FIELD_TEXT_DYNAMIC"
,
"predefinedType"
:
"FIELD_TEXT_DYNAMIC"
,
"renderMode"
:
"TEXT_DYNAMIC"
,
"renderMode"
:
"TEXT_DYNAMIC"
,
...
@@ -349,43 +339,55 @@
...
@@ -349,43 +339,55 @@
},
},
"getPSLayoutPos"
:
{
"getPSLayoutPos"
:
{
"grow"
:
-1
,
"grow"
:
-1
,
"layout"
:
"FLEX"
"layout"
:
"FLEX"
,
"width"
:
100
,
"widthMode"
:
"PX"
},
},
"viewFieldName"
:
"press"
,
"viewFieldName"
:
"press"
,
"width"
:
100.0
,
"hidden"
:
false
,
"showCaption"
:
false
},
{
"caption"
:
"文本(动态)"
,
"contentWidth"
:
100.0
,
"itemStyle"
:
"DEFAULT"
,
"itemType"
:
"FIELD"
,
"name"
:
"field_text_dynamic6"
,
"getPSEditor"
:
{
"editorType"
:
"SPAN"
,
"editorWidth"
:
100.0
,
"name"
:
"field_text_dynamic6"
,
"predefinedType"
:
"FIELD_TEXT_DYNAMIC"
,
"renderMode"
:
"TEXT_DYNAMIC"
,
"enableLinkView"
:
false
},
"getPSLayoutPos"
:
{
"grow"
:
-1
,
"layout"
:
"FLEX"
,
"width"
:
100
,
"widthMode"
:
"PX"
},
"viewFieldName"
:
"price"
,
"width"
:
100.0
,
"hidden"
:
false
,
"hidden"
:
false
,
"showCaption"
:
false
"showCaption"
:
false
},
{
},
{
"actionType"
:
"
UIACTION
"
,
"actionType"
:
"
NONE
"
,
"buttonStyle"
:
"DEFAULT"
,
"buttonStyle"
:
"DEFAULT"
,
"buttonWidth"
:
100.0
,
"caption"
:
"按钮"
,
"caption"
:
"按钮"
,
"contentWidth"
:
100.0
,
"itemStyle"
:
"DEFAULT"
,
"itemStyle"
:
"DEFAULT"
,
"itemType"
:
"BUTTON"
,
"itemType"
:
"BUTTON"
,
"name"
:
"button_calluilogic1"
,
"name"
:
"button_calluilogic1"
,
"getPSAppViewUIAction"
:
{
"modelref"
:
true
,
"id"
:
"list_itempanel_button_calluilogic1"
},
"getPSLayoutPos"
:
{
"getPSLayoutPos"
:
{
"grow"
:
-1
,
"grow"
:
-1
,
"layout"
:
"FLEX"
"layout"
:
"FLEX"
,
},
"width"
:
100
,
"getPSUIAction"
:
{
"widthMode"
:
"PX"
"actionTarget"
:
"NONE"
,
"caption"
:
"按钮"
,
"codeName"
:
"panel_Listpanel_button_calluilogic1_click"
,
"fullCodeName"
:
"IBIZBOOK_panel_Listpanel_button_calluilogic1_click"
,
"name"
:
"按钮"
,
"getPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json"
},
"timeout"
:
60000
,
"uIActionMode"
:
"CUSTOM"
,
"uIActionTag"
:
"panel_Listpanel_button_calluilogic1_click"
,
"uIActionType"
:
"DEUIACTION"
,
"id"
:
"panel_Listpanel_button_calluilogic1_click@IBIZBOOK"
},
},
"tooltip"
:
"按钮"
,
"tooltip"
:
"按钮"
,
"width"
:
100.0
,
"showCaption"
:
true
"showCaption"
:
true
}
]
}
]
}
],
}
],
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKUsr1110030546CustomView.json
浏览文件 @
e360ffba
...
@@ -11,6 +11,20 @@
...
@@ -11,6 +11,20 @@
"modelref"
:
true
,
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json"
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json"
},
},
"getPSAppViewLogics"
:
[
{
"eventNames"
:
"onViewMounted"
,
"logicTrigger"
:
"VIEWEVENT"
,
"logicType"
:
"DEUILOGIC"
,
"name"
:
"VIEWLOAD"
,
"getPSAppDEUILogic"
:
{
"modelref"
:
true
,
"id"
:
"CustomViewGridLoad"
},
"getPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json"
}
}
],
"getPSControls"
:
[
{
"getPSControls"
:
[
{
"aggMode"
:
"NONE"
,
"aggMode"
:
"NONE"
,
"codeName"
:
"Main"
,
"codeName"
:
"Main"
,
...
@@ -436,7 +450,9 @@
...
@@ -436,7 +450,9 @@
},
},
"getPSLayoutPos"
:
{
"getPSLayoutPos"
:
{
"grow"
:
-1
,
"grow"
:
-1
,
"layout"
:
"SIMPLEFLEX"
"hAlignSelf"
:
"LEFT"
,
"layout"
:
"SIMPLEFLEX"
,
"vAlignSelf"
:
"MIDDLE"
},
},
"hidden"
:
false
,
"hidden"
:
false
,
"showCaption"
:
false
"showCaption"
:
false
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKUsr5ListView.json
浏览文件 @
e360ffba
...
@@ -158,6 +158,9 @@
...
@@ -158,6 +158,9 @@
},
{
},
{
"id"
:
"field_text_dynamic3"
,
"id"
:
"field_text_dynamic3"
,
"viewFieldName"
:
"press"
"viewFieldName"
:
"press"
},
{
"id"
:
"field_text_dynamic6"
,
"viewFieldName"
:
"price"
}
],
}
],
"codeName"
:
"Listpanel"
,
"codeName"
:
"Listpanel"
,
"controlType"
:
"PANEL"
,
"controlType"
:
"PANEL"
,
...
@@ -168,28 +171,6 @@
...
@@ -168,28 +171,6 @@
"modelref"
:
true
,
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json"
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json"
},
},
"getPSAppViewLogics"
:
[
{
"logicTrigger"
:
"CUSTOM"
,
"logicType"
:
"APPVIEWUIACTION"
,
"name"
:
"list_itempanel_button_calluilogic1_click"
,
"getPSAppViewUIAction"
:
{
"modelref"
:
true
,
"id"
:
"list_itempanel_button_calluilogic1"
}
}
],
"getPSAppViewUIActions"
:
[
{
"name"
:
"list_itempanel_button_calluilogic1"
,
"getPSUIAction"
:
{
"getPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json"
},
"modelref"
:
true
,
"id"
:
"panel_Listpanel_button_calluilogic1_click@IBIZBOOK"
},
"uIActionTarget"
:
"NONE"
,
"xDataControlName"
:
"list_itempanel"
}
],
"getPSControlParam"
:
{
},
"getPSControlParam"
:
{
},
"getPSLayout"
:
{
"getPSLayout"
:
{
"columnCount"
:
24
,
"columnCount"
:
24
,
...
@@ -449,6 +430,8 @@
...
@@ -449,6 +430,8 @@
"itemType"
:
"CONTAINER"
,
"itemType"
:
"CONTAINER"
,
"name"
:
"container6"
,
"name"
:
"container6"
,
"getPSLayout"
:
{
"getPSLayout"
:
{
"align"
:
"space-between"
,
"dir"
:
"row"
,
"layout"
:
"FLEX"
"layout"
:
"FLEX"
},
},
"getPSLayoutPos"
:
{
"getPSLayoutPos"
:
{
...
@@ -457,11 +440,13 @@
...
@@ -457,11 +440,13 @@
},
},
"getPSPanelItems"
:
[
{
"getPSPanelItems"
:
[
{
"caption"
:
"文本(动态)"
,
"caption"
:
"文本(动态)"
,
"contentWidth"
:
100.0
,
"itemStyle"
:
"DEFAULT"
,
"itemStyle"
:
"DEFAULT"
,
"itemType"
:
"FIELD"
,
"itemType"
:
"FIELD"
,
"name"
:
"field_text_dynamic5"
,
"name"
:
"field_text_dynamic5"
,
"getPSEditor"
:
{
"getPSEditor"
:
{
"editorType"
:
"SPAN"
,
"editorType"
:
"SPAN"
,
"editorWidth"
:
100.0
,
"name"
:
"field_text_dynamic5"
,
"name"
:
"field_text_dynamic5"
,
"predefinedType"
:
"FIELD_TEXT_DYNAMIC"
,
"predefinedType"
:
"FIELD_TEXT_DYNAMIC"
,
"renderMode"
:
"TEXT_DYNAMIC"
,
"renderMode"
:
"TEXT_DYNAMIC"
,
...
@@ -469,18 +454,23 @@
...
@@ -469,18 +454,23 @@
},
},
"getPSLayoutPos"
:
{
"getPSLayoutPos"
:
{
"grow"
:
-1
,
"grow"
:
-1
,
"layout"
:
"FLEX"
"layout"
:
"FLEX"
,
"width"
:
100
,
"widthMode"
:
"PX"
},
},
"viewFieldName"
:
"type"
,
"viewFieldName"
:
"type"
,
"width"
:
100.0
,
"hidden"
:
false
,
"hidden"
:
false
,
"showCaption"
:
false
"showCaption"
:
false
},
{
},
{
"caption"
:
"文本(动态)"
,
"caption"
:
"文本(动态)"
,
"contentWidth"
:
100.0
,
"itemStyle"
:
"DEFAULT"
,
"itemStyle"
:
"DEFAULT"
,
"itemType"
:
"FIELD"
,
"itemType"
:
"FIELD"
,
"name"
:
"field_text_dynamic3"
,
"name"
:
"field_text_dynamic3"
,
"getPSEditor"
:
{
"getPSEditor"
:
{
"editorType"
:
"SPAN"
,
"editorType"
:
"SPAN"
,
"editorWidth"
:
100.0
,
"name"
:
"field_text_dynamic3"
,
"name"
:
"field_text_dynamic3"
,
"predefinedType"
:
"FIELD_TEXT_DYNAMIC"
,
"predefinedType"
:
"FIELD_TEXT_DYNAMIC"
,
"renderMode"
:
"TEXT_DYNAMIC"
,
"renderMode"
:
"TEXT_DYNAMIC"
,
...
@@ -488,43 +478,55 @@
...
@@ -488,43 +478,55 @@
},
},
"getPSLayoutPos"
:
{
"getPSLayoutPos"
:
{
"grow"
:
-1
,
"grow"
:
-1
,
"layout"
:
"FLEX"
"layout"
:
"FLEX"
,
"width"
:
100
,
"widthMode"
:
"PX"
},
},
"viewFieldName"
:
"press"
,
"viewFieldName"
:
"press"
,
"width"
:
100.0
,
"hidden"
:
false
,
"showCaption"
:
false
},
{
"caption"
:
"文本(动态)"
,
"contentWidth"
:
100.0
,
"itemStyle"
:
"DEFAULT"
,
"itemType"
:
"FIELD"
,
"name"
:
"field_text_dynamic6"
,
"getPSEditor"
:
{
"editorType"
:
"SPAN"
,
"editorWidth"
:
100.0
,
"name"
:
"field_text_dynamic6"
,
"predefinedType"
:
"FIELD_TEXT_DYNAMIC"
,
"renderMode"
:
"TEXT_DYNAMIC"
,
"enableLinkView"
:
false
},
"getPSLayoutPos"
:
{
"grow"
:
-1
,
"layout"
:
"FLEX"
,
"width"
:
100
,
"widthMode"
:
"PX"
},
"viewFieldName"
:
"price"
,
"width"
:
100.0
,
"hidden"
:
false
,
"hidden"
:
false
,
"showCaption"
:
false
"showCaption"
:
false
},
{
},
{
"actionType"
:
"
UIACTION
"
,
"actionType"
:
"
NONE
"
,
"buttonStyle"
:
"DEFAULT"
,
"buttonStyle"
:
"DEFAULT"
,
"buttonWidth"
:
100.0
,
"caption"
:
"按钮"
,
"caption"
:
"按钮"
,
"contentWidth"
:
100.0
,
"itemStyle"
:
"DEFAULT"
,
"itemStyle"
:
"DEFAULT"
,
"itemType"
:
"BUTTON"
,
"itemType"
:
"BUTTON"
,
"name"
:
"button_calluilogic1"
,
"name"
:
"button_calluilogic1"
,
"getPSAppViewUIAction"
:
{
"modelref"
:
true
,
"id"
:
"list_itempanel_button_calluilogic1"
},
"getPSLayoutPos"
:
{
"getPSLayoutPos"
:
{
"grow"
:
-1
,
"grow"
:
-1
,
"layout"
:
"FLEX"
"layout"
:
"FLEX"
,
},
"width"
:
100
,
"getPSUIAction"
:
{
"widthMode"
:
"PX"
"actionTarget"
:
"NONE"
,
"caption"
:
"按钮"
,
"codeName"
:
"panel_Listpanel_button_calluilogic1_click"
,
"fullCodeName"
:
"IBIZBOOK_panel_Listpanel_button_calluilogic1_click"
,
"name"
:
"按钮"
,
"getPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json"
},
"timeout"
:
60000
,
"uIActionMode"
:
"CUSTOM"
,
"uIActionTag"
:
"panel_Listpanel_button_calluilogic1_click"
,
"uIActionType"
:
"DEUIACTION"
,
"id"
:
"panel_Listpanel_button_calluilogic1_click@IBIZBOOK"
},
},
"tooltip"
:
"按钮"
,
"tooltip"
:
"按钮"
,
"width"
:
100.0
,
"showCaption"
:
true
"showCaption"
:
true
}
]
}
]
}
],
}
],
...
@@ -627,31 +629,21 @@
...
@@ -627,31 +629,21 @@
},
},
"getPSDEListDataItems"
:
[
{
"getPSDEListDataItems"
:
[
{
"dataType"
:
25
,
"dataType"
:
25
,
"name"
:
"press"
,
"getFrontPSCodeList"
:
{
"getPSAppDEField"
:
{
"modelref"
:
true
,
"name"
:
"PRESS"
,
"path"
:
"PSSYSAPPS/Web/PSAPPCODELISTS/BookType.json"
"codeName"
:
"Press"
},
}
"name"
:
"type"
,
},
{
"dataType"
:
9
,
"name"
:
"booknumber"
,
"getPSAppDEField"
:
{
"name"
:
"BOOKNUMBER"
,
"codeName"
:
"Booknumber"
}
},
{
"dataType"
:
7
,
"name"
:
"price"
,
"getPSAppDEField"
:
{
"getPSAppDEField"
:
{
"name"
:
"
PRIC
E"
,
"name"
:
"
TYP
E"
,
"codeName"
:
"
Pric
e"
"codeName"
:
"
Typ
e"
}
}
},
{
},
{
"dataType"
:
2
5
,
"dataType"
:
2
1
,
"name"
:
"
author
"
,
"name"
:
"
icon
"
,
"getPSAppDEField"
:
{
"getPSAppDEField"
:
{
"name"
:
"
AUTHOR
"
,
"name"
:
"
ICON
"
,
"codeName"
:
"
Author
"
"codeName"
:
"
Icon
"
}
}
},
{
},
{
"dataType"
:
25
,
"dataType"
:
25
,
...
@@ -669,14 +661,17 @@
...
@@ -669,14 +661,17 @@
}
}
},
{
},
{
"dataType"
:
25
,
"dataType"
:
25
,
"getFrontPSCodeList"
:
{
"name"
:
"author"
,
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPCODELISTS/BookType.json"
},
"name"
:
"type"
,
"getPSAppDEField"
:
{
"getPSAppDEField"
:
{
"name"
:
"TYPE"
,
"name"
:
"AUTHOR"
,
"codeName"
:
"Type"
"codeName"
:
"Author"
}
},
{
"dataType"
:
25
,
"name"
:
"press"
,
"getPSAppDEField"
:
{
"name"
:
"PRESS"
,
"codeName"
:
"Press"
}
}
},
{
},
{
"dataType"
:
25
,
"dataType"
:
25
,
...
@@ -685,6 +680,20 @@
...
@@ -685,6 +680,20 @@
"name"
:
"SUBTEXT"
,
"name"
:
"SUBTEXT"
,
"codeName"
:
"Subtext"
"codeName"
:
"Subtext"
}
}
},
{
"dataType"
:
7
,
"name"
:
"price"
,
"getPSAppDEField"
:
{
"name"
:
"PRICE"
,
"codeName"
:
"Price"
}
},
{
"dataType"
:
9
,
"name"
:
"booknumber"
,
"getPSAppDEField"
:
{
"name"
:
"BOOKNUMBER"
,
"codeName"
:
"Booknumber"
}
},
{
},
{
"dataType"
:
25
,
"dataType"
:
25
,
"name"
:
"srfkey"
,
"name"
:
"srfkey"
,
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSSYSAPP.json
浏览文件 @
e360ffba
...
@@ -26804,21 +26804,6 @@
...
@@ -26804,21 +26804,6 @@
"uIActionMode"
:
"SYS"
,
"uIActionMode"
:
"SYS"
,
"uIActionTag"
:
"panel_Layoutpanel_button_calluilogic2_click"
,
"uIActionTag"
:
"panel_Layoutpanel_button_calluilogic2_click"
,
"uIActionType"
:
"DEUIACTION"
"uIActionType"
:
"DEUIACTION"
},
{
"actionTarget"
:
"NONE"
,
"caption"
:
"按钮"
,
"codeName"
:
"panel_Listpanel_button_calluilogic1_click"
,
"fullCodeName"
:
"IBIZBOOK_panel_Listpanel_button_calluilogic1_click"
,
"name"
:
"按钮"
,
"getPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json"
},
"timeout"
:
60000
,
"uIActionMode"
:
"CUSTOM"
,
"uIActionTag"
:
"panel_Listpanel_button_calluilogic1_click"
,
"uIActionType"
:
"DEUIACTION"
,
"id"
:
"panel_Listpanel_button_calluilogic1_click@IBIZBOOK"
},
{
},
{
"actionTarget"
:
"SINGLEDATA"
,
"actionTarget"
:
"SINGLEDATA"
,
"caption"
:
"编辑"
,
"caption"
:
"编辑"
,
...
...
demo-core/src/main/resources/liquibase/h2_table.xml
浏览文件 @
e360ffba
...
@@ -172,7 +172,7 @@
...
@@ -172,7 +172,7 @@
<!--输出实体[IBIZBOOK]数据结构 -->
<!--输出实体[IBIZBOOK]数据结构 -->
<changeSet
author=
"a_LAB01_df847bdfd"
id=
"tab-ibizbook-7
07
-7"
>
<changeSet
author=
"a_LAB01_df847bdfd"
id=
"tab-ibizbook-7
18
-7"
>
<createTable
tableName=
"T_IBIZBOOK"
>
<createTable
tableName=
"T_IBIZBOOK"
>
<column
name=
"CREATEMAN"
remarks=
""
type=
"VARCHAR(60)"
>
<column
name=
"CREATEMAN"
remarks=
""
type=
"VARCHAR(60)"
>
</column>
</column>
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录