Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
功
功能演示系统
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
示例
功能演示系统
提交
41fc1cbd
提交
41fc1cbd
编写于
12月 23, 2022
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
tony001 发布系统代码 [后台服务,演示应用]
上级
d87a3ee4
变更
7
展开全部
显示空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
87 行增加
和
45 行删除
+87
-45
inter-func-kanban-kanban-base.vue
...nter-func-kanban-kanban/inter-func-kanban-kanban-base.vue
+3
-3
quicksearchform-searchform-base.vue
...searchform-searchform/quicksearchform-searchform-base.vue
+4
-4
usr2-dataview-base.vue
...src/widgets/ibizbook/usr2-dataview/usr2-dataview-base.vue
+52
-22
main-grid-base.vue
...src/widgets/ibizorder-detail/main-grid/main-grid-base.vue
+6
-6
InterFuncKanban.json
...PSAPPDATAENTITIES/IBIZBOOK/PSKANBANS/InterFuncKanban.json
+7
-3
IBIZBOOKInterFuncKanBanView.json
...SYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKInterFuncKanBanView.json
+8
-4
IBIZBOOKInterFuncKanBanView_layout.json
.../Web/PSAPPDEVIEWS/IBIZBOOKInterFuncKanBanView_layout.json
+7
-3
未找到文件。
app_Web/src/widgets/ibizbook/inter-func-kanban-kanban/inter-func-kanban-kanban-base.vue
浏览文件 @
41fc1cbd
...
@@ -469,21 +469,21 @@ export default class InterFuncKanbanBase extends Vue implements ControlInterface
...
@@ -469,21 +469,21 @@ export default class InterFuncKanbanBase extends Vue implements ControlInterface
* @type {string}
* @type {string}
* @memberof InterFuncKanbanBase
* @memberof InterFuncKanbanBase
*/
*/
public
groupField
:
string
=
'
author
'
;
public
groupField
:
string
=
'
sailstate
'
;
/**
/**
* 分组模式
* 分组模式
*
*
* @type {string}
* @type {string}
* @memberof InterFuncKanbanBase
* @memberof InterFuncKanbanBase
*/
*/
public
groupMode
:
string
=
'
AUTO
'
public
groupMode
:
string
=
'
CODELIST
'
/**
/**
* 分组代码表
* 分组代码表
*
*
* @type {string}
* @type {string}
* @memberof InterFuncKanbanBase
* @memberof InterFuncKanbanBase
*/
*/
public
groupCodelist
:
any
=
{};
public
groupCodelist
:
any
=
{
type
:
'STATIC'
,
tag
:
'BookSailState'
};
/**
/**
* Vue声明周期,组件挂载完毕
* Vue声明周期,组件挂载完毕
*
*
...
...
app_Web/src/widgets/ibizbook/quicksearchform-searchform/quicksearchform-searchform-base.vue
浏览文件 @
41fc1cbd
<
template
>
<
template
>
<i-form
:model=
"this.data"
class=
'app-search-form'
ref=
'searchform'
style=
""
>
<i-form
:model=
"this.data"
class=
'app-search-form'
ref=
'
quick
searchform'
style=
""
>
<input
style=
"display:none;"
/>
<input
style=
"display:none;"
/>
<row>
<row>
<i-col
span=
"20"
class=
"form-content"
>
<i-col
span=
"20"
class=
"form-content"
>
...
@@ -516,7 +516,7 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface
...
@@ -516,7 +516,7 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface
* @memberof QUICKSEARCHFORMBase
* @memberof QUICKSEARCHFORMBase
*/
*/
public
formValidateStatus
():
boolean
{
public
formValidateStatus
():
boolean
{
const
form
:
any
=
this
.
$refs
.
searchform
;
const
form
:
any
=
this
.
$refs
.
quick
searchform
;
let
validatestate
:
boolean
=
true
;
let
validatestate
:
boolean
=
true
;
form
.
validate
((
valid
:
boolean
)
=>
{
form
.
validate
((
valid
:
boolean
)
=>
{
validatestate
=
valid
?
true
:
false
;
validatestate
=
valid
?
true
:
false
;
...
@@ -670,7 +670,7 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface
...
@@ -670,7 +670,7 @@ export default class QUICKSEARCHFORMBase 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
:
'IBIZBOOK
UsrListView_plugin
'
+
(
this
.
$t
(
'app.searchForm.notConfig.loadAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
CalendarView
'
+
(
this
.
$t
(
'app.searchForm.notConfig.loadAction'
)
as
string
)
});
return
;
return
;
}
}
const
arg
:
any
=
{
...
opt
};
const
arg
:
any
=
{
...
opt
};
...
@@ -706,7 +706,7 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface
...
@@ -706,7 +706,7 @@ export default class QUICKSEARCHFORMBase 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
:
'IBIZBOOK
UsrListView_plugin
'
+
(
this
.
$t
(
'app.searchForm.notConfig.loaddraftAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
CalendarView
'
+
(
this
.
$t
(
'app.searchForm.notConfig.loaddraftAction'
)
as
string
)
});
return
;
return
;
}
}
const
arg
:
any
=
{
...
opt
}
;
const
arg
:
any
=
{
...
opt
}
;
...
...
app_Web/src/widgets/ibizbook/usr2-dataview/usr2-dataview-base.vue
浏览文件 @
41fc1cbd
此差异已折叠。
点击以展开。
app_Web/src/widgets/ibizorder-detail/main-grid/main-grid-base.vue
浏览文件 @
41fc1cbd
...
@@ -964,7 +964,7 @@ export default class MainBase extends Vue implements ControlInterface {
...
@@ -964,7 +964,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
:
"IBIZOrderDetailSGridView
9
"
+
(
this
.
$t
(
"app.gridpage.notConfig.fetchAction"
)
as
string
),
desc
:
"IBIZOrderDetailSGridView"
+
(
this
.
$t
(
"app.gridpage.notConfig.fetchAction"
)
as
string
),
});
});
return
;
return
;
}
}
...
@@ -1123,7 +1123,7 @@ export default class MainBase extends Vue implements ControlInterface {
...
@@ -1123,7 +1123,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
:
'IBIZOrderDetailSGridView
9
'
+
(
this
.
$t
(
'app.gridpage.notConfig.removeAction'
)
as
string
)
desc
:
'IBIZOrderDetailSGridView'
+
(
this
.
$t
(
'app.gridpage.notConfig.removeAction'
)
as
string
)
});
});
return
;
return
;
}
}
...
@@ -1237,7 +1237,7 @@ export default class MainBase extends Vue implements ControlInterface {
...
@@ -1237,7 +1237,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
:
'IBIZOrderDetailSGridView
9
'
+
(
this
.
$t
(
'app.gridpage.notConfig.fetchAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDetailSGridView'
+
(
this
.
$t
(
'app.gridpage.notConfig.fetchAction'
)
as
string
)
});
return
;
return
;
}
}
if
(
!
arg
){
if
(
!
arg
){
...
@@ -2132,7 +2132,7 @@ export default class MainBase extends Vue implements ControlInterface {
...
@@ -2132,7 +2132,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
:
'IBIZOrderDetailSGridView
9
'
+
(
this
.
$t
(
'app.gridpage.notConfig.createAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDetailSGridView'
+
(
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
);
...
@@ -2141,7 +2141,7 @@ export default class MainBase extends Vue implements ControlInterface {
...
@@ -2141,7 +2141,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
:
'IBIZOrderDetailSGridView
9
'
+
(
this
.
$t
(
'app.gridpage.notConfig.updateAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDetailSGridView'
+
(
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
);
...
@@ -2217,7 +2217,7 @@ export default class MainBase extends Vue implements ControlInterface {
...
@@ -2217,7 +2217,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
:
'IBIZOrderDetailSGridView
9
'
+
(
this
.
$t
(
'app.gridpage.notConfig.loaddraftAction'
)
as
string
)
desc
:
'IBIZOrderDetailSGridView'
+
(
this
.
$t
(
'app.gridpage.notConfig.loaddraftAction'
)
as
string
)
});
});
return
;
return
;
}
}
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK/PSKANBANS/InterFuncKanban.json
浏览文件 @
41fc1cbd
...
@@ -21,10 +21,14 @@
...
@@ -21,10 +21,14 @@
"id"
:
"load"
"id"
:
"load"
},
},
"groupLayout"
:
"ROW"
,
"groupLayout"
:
"ROW"
,
"groupMode"
:
"
AUTO
"
,
"groupMode"
:
"
CODELIST
"
,
"getGroupPSAppDEField"
:
{
"getGroupPSAppDEField"
:
{
"name"
:
"AUTHOR"
,
"name"
:
"SAILSTATE"
,
"codeName"
:
"Author"
"codeName"
:
"Sailstate"
},
"getGroupPSCodeList"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPCODELISTS/BookSailState.json"
},
},
"getGroupPSUIActionGroup"
:
{
"getGroupPSUIActionGroup"
:
{
"codeName"
:
"Auto11"
,
"codeName"
:
"Auto11"
,
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKInterFuncKanBanView.json
浏览文件 @
41fc1cbd
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
"caption"
:
"实体看板视图(内置功能)"
,
"caption"
:
"实体看板视图(内置功能)"
,
"codeName"
:
"IBIZBOOKInterFuncKanBanView"
,
"codeName"
:
"IBIZBOOKInterFuncKanBanView"
,
"dynaModelFilePath"
:
"PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKInterFuncKanBanView.json"
,
"dynaModelFilePath"
:
"PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKInterFuncKanBanView.json"
,
"mDCtrlActiveMode"
:
0
,
"mDCtrlActiveMode"
:
2
,
"mOSFilePath"
:
"pssysapps/Web/psappdeviews/IBIZBOOKInterFuncKanBanView"
,
"mOSFilePath"
:
"pssysapps/Web/psappdeviews/IBIZBOOKInterFuncKanBanView"
,
"name"
:
"IBIZBOOKInterFuncKanBanView"
,
"name"
:
"IBIZBOOKInterFuncKanBanView"
,
"getPSAppDataEntity"
:
{
"getPSAppDataEntity"
:
{
...
@@ -396,10 +396,14 @@
...
@@ -396,10 +396,14 @@
"id"
:
"load"
"id"
:
"load"
},
},
"groupLayout"
:
"ROW"
,
"groupLayout"
:
"ROW"
,
"groupMode"
:
"
AUTO
"
,
"groupMode"
:
"
CODELIST
"
,
"getGroupPSAppDEField"
:
{
"getGroupPSAppDEField"
:
{
"name"
:
"AUTHOR"
,
"name"
:
"SAILSTATE"
,
"codeName"
:
"Author"
"codeName"
:
"Sailstate"
},
"getGroupPSCodeList"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPCODELISTS/BookSailState.json"
},
},
"getGroupPSUIActionGroup"
:
{
"getGroupPSUIActionGroup"
:
{
"codeName"
:
"Auto11"
,
"codeName"
:
"Auto11"
,
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKInterFuncKanBanView_layout.json
浏览文件 @
41fc1cbd
...
@@ -396,10 +396,14 @@
...
@@ -396,10 +396,14 @@
"id"
:
"load"
"id"
:
"load"
},
},
"groupLayout"
:
"ROW"
,
"groupLayout"
:
"ROW"
,
"groupMode"
:
"
AUTO
"
,
"groupMode"
:
"
CODELIST
"
,
"getGroupPSAppDEField"
:
{
"getGroupPSAppDEField"
:
{
"name"
:
"AUTHOR"
,
"name"
:
"SAILSTATE"
,
"codeName"
:
"Author"
"codeName"
:
"Sailstate"
},
"getGroupPSCodeList"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPCODELISTS/BookSailState.json"
},
},
"getGroupPSUIActionGroup"
:
{
"getGroupPSUIActionGroup"
:
{
"codeName"
:
"Auto11"
,
"codeName"
:
"Auto11"
,
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录