Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
T
TrainSys
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
苏州培训方案
TrainSys
提交
814d3e66
提交
814d3e66
编写于
9月 21, 2023
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
lxm1993 发布系统代码 [TrainSys,网页端]
上级
5f23e537
变更
12
展开全部
显示空白字符变更
内嵌
并排
正在显示
12 个修改的文件
包含
228 行增加
和
110 行删除
+228
-110
package.json
app_Web/package.json
+7
-7
pnpm-lock.yaml
app_Web/pnpm-lock.yaml
+42
-42
app-register.ts
app_Web/src/app-register.ts
+2
-0
index.ts
app_Web/src/components/common/index.ts
+2
-0
view-message.tsx
app_Web/src/components/common/view-message/view-message.tsx
+51
-0
view-base.tsx
app_Web/src/components/layout/view-base/view-base.tsx
+18
-2
view-layout.tsx
app_Web/src/components/layout/view-layout/view-layout.tsx
+13
-3
i-view-register.ts
app_Web/src/i-view-register.ts
+2
-0
model-util.ts
app_Web/src/util/model-util/model-util.ts
+32
-3
Main.json
...s/PSSYSAPPS/Web/PSAPPDATAENTITIES/BXDMX/PSFORMS/Main.json
+8
-5
BXDMXEditView.json
...ab/trainsys/PSSYSAPPS/Web/PSAPPDEVIEWS/BXDMXEditView.json
+8
-5
PSSYSAPP.json
...ces/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSSYSAPP.json
+43
-43
未找到文件。
app_Web/package.json
浏览文件 @
814d3e66
...
@@ -13,13 +13,13 @@
...
@@ -13,13 +13,13 @@
"dependencies"
:
{
"dependencies"
:
{
"@floating-ui/dom"
:
"^1.0.11"
,
"@floating-ui/dom"
:
"^1.0.11"
,
"@ibiz-template/command"
:
"^0.0.1-beta.50"
,
"@ibiz-template/command"
:
"^0.0.1-beta.50"
,
"@ibiz-template/controller"
:
"^0.0.1-beta.1
09
"
,
"@ibiz-template/controller"
:
"^0.0.1-beta.1
10
"
,
"@ibiz-template/core"
:
"^0.0.1-beta.1
09
"
,
"@ibiz-template/core"
:
"^0.0.1-beta.1
10
"
,
"@ibiz-template/model"
:
"^0.0.1-beta.1
09
"
,
"@ibiz-template/model"
:
"^0.0.1-beta.1
10
"
,
"@ibiz-template/runtime"
:
"^0.0.1-beta.1
09
"
,
"@ibiz-template/runtime"
:
"^0.0.1-beta.1
10
"
,
"@ibiz-template/service"
:
"^0.0.1-beta.1
09
"
,
"@ibiz-template/service"
:
"^0.0.1-beta.1
10
"
,
"@ibiz-template/theme"
:
"^0.0.1-beta.1
09
"
,
"@ibiz-template/theme"
:
"^0.0.1-beta.1
10
"
,
"@ibiz-template/vue-util"
:
"^0.0.1-beta.1
09
"
,
"@ibiz-template/vue-util"
:
"^0.0.1-beta.1
10
"
,
"@ibiz/dynamic-model-api"
:
"^2.1.28"
,
"@ibiz/dynamic-model-api"
:
"^2.1.28"
,
"@riophae/vue-treeselect"
:
"^0.4.0"
,
"@riophae/vue-treeselect"
:
"^0.4.0"
,
"dayjs"
:
"^1.11.7"
,
"dayjs"
:
"^1.11.7"
,
...
...
app_Web/pnpm-lock.yaml
浏览文件 @
814d3e66
此差异已折叠。
点击以展开。
app_Web/src/app-register.ts
浏览文件 @
814d3e66
...
@@ -87,6 +87,7 @@ import {
...
@@ -87,6 +87,7 @@ import {
ImagePreview
,
ImagePreview
,
CodeList
,
CodeList
,
TabPageExp
,
TabPageExp
,
ViewMessage
,
}
from
'./components/common'
;
}
from
'./components/common'
;
// 编辑器组件
// 编辑器组件
import
{
import
{
...
@@ -202,6 +203,7 @@ export const AppRegister = {
...
@@ -202,6 +203,7 @@ export const AppRegister = {
v
.
component
(
'CodeList'
,
CodeList
);
v
.
component
(
'CodeList'
,
CodeList
);
v
.
component
(
'PortletLayout'
,
PortletLayout
);
v
.
component
(
'PortletLayout'
,
PortletLayout
);
v
.
component
(
'TabPageExp'
,
TabPageExp
);
v
.
component
(
'TabPageExp'
,
TabPageExp
);
v
.
component
(
'ViewMessage'
,
ViewMessage
);
// 注册编辑器组件
// 注册编辑器组件
v
.
component
(
'GridEditor'
,
GridEditor
);
v
.
component
(
'GridEditor'
,
GridEditor
);
v
.
component
(
'IBizSpan'
,
IBizSpan
);
v
.
component
(
'IBizSpan'
,
IBizSpan
);
...
...
app_Web/src/components/common/index.ts
浏览文件 @
814d3e66
...
@@ -13,6 +13,7 @@ import { WfVersionSelect } from './wf-version-select/wf-version-select';
...
@@ -13,6 +13,7 @@ import { WfVersionSelect } from './wf-version-select/wf-version-select';
import
{
ExtendActionTimeLine
}
from
'./extend-action-timeline/extend-action-timeline'
;
import
{
ExtendActionTimeLine
}
from
'./extend-action-timeline/extend-action-timeline'
;
import
{
ExtendActionGrid
}
from
'./extend-action-grid/extend-action-grid'
;
import
{
ExtendActionGrid
}
from
'./extend-action-grid/extend-action-grid'
;
import
{
TabPageExp
}
from
'./tab-page-exp/tab-page-exp'
;
import
{
TabPageExp
}
from
'./tab-page-exp/tab-page-exp'
;
import
{
ViewMessage
}
from
'./view-message/view-message'
;
export
{
ImagePreview
}
from
'./image-preview/image-preview'
;
export
{
ImagePreview
}
from
'./image-preview/image-preview'
;
export
{
DataImport
}
from
'./data-import/data-import'
;
export
{
DataImport
}
from
'./data-import/data-import'
;
...
@@ -36,4 +37,5 @@ export {
...
@@ -36,4 +37,5 @@ export {
ExtendActionTimeLine
,
ExtendActionTimeLine
,
ExtendActionGrid
,
ExtendActionGrid
,
TabPageExp
,
TabPageExp
,
ViewMessage
,
};
};
app_Web/src/components/common/view-message/view-message.tsx
0 → 100644
浏览文件 @
814d3e66
import
{
useNamespace
}
from
'@ibiz-template/vue-util'
;
import
{
defineComponent
}
from
'vue'
;
import
'@ibiz-template/theme/style/components/common/app-icon/app-icon.scss'
;
import
{
IViewMessage
}
from
'@ibiz-template/controller'
;
export
const
ViewMessage
=
defineComponent
({
name
:
'ViewMessage'
,
props
:
{
messages
:
{
type
:
Array
<
IViewMessage
>
,
},
},
setup
()
{
const
ns
=
useNamespace
(
'view-message'
);
const
getType
=
(
messageType
?:
string
):
string
=>
{
switch
(
messageType
)
{
case
'WARN'
:
return
'warning'
;
case
'ERROR'
:
return
'error'
;
default
:
return
'info'
;
}
};
return
{
ns
,
getType
};
},
render
()
{
if
(
!
this
.
messages
?.
length
)
{
return
null
;
}
return
(
<
div
class=
{
[
this
.
ns
.
b
()]
}
>
{
this
.
messages
?.
map
(
message
=>
{
return
(
<
i
-
alert
type=
{
this
.
getType
(
message
.
messageType
)
}
closable=
{
message
.
removeMode
!==
0
}
>
{
message
.
title
}
{
message
.
message
&&
(
<
template
slot=
'desc'
>
{
message
.
message
}
</
template
>
)
}
</
i
-
alert
>
);
})
}
</
div
>
);
},
});
app_Web/src/components/layout/view-base/view-base.tsx
浏览文件 @
814d3e66
...
@@ -10,10 +10,25 @@ export const ViewBase = defineComponent({
...
@@ -10,10 +10,25 @@ export const ViewBase = defineComponent({
required
:
true
,
required
:
true
,
},
},
},
},
setup
()
{
setup
(
props
)
{
const
ns
=
useNamespace
(
'view'
);
const
ns
=
useNamespace
(
'view'
);
return
{
ns
};
const
renderViewMessage
=
()
=>
{
const
messageSlots
:
IData
=
{};
if
(
props
.
controller
.
complete
)
{
[
'TOP'
,
'BOTTOM'
,
'BODY'
].
forEach
(
position
=>
{
const
viewMessages
=
props
.
controller
.
viewMessages
[
position
];
if
(
viewMessages
?.
length
)
{
messageSlots
[
`
${
position
.
toLowerCase
()}
Message`
]
=
()
=>
{
return
<
view
-
message
messages=
{
viewMessages
}
></
view
-
message
>;
};
}
});
}
return
messageSlots
;
};
return
{
ns
,
renderViewMessage
};
},
},
render
()
{
render
()
{
const
c
=
this
.
controller
;
const
c
=
this
.
controller
;
...
@@ -76,6 +91,7 @@ export const ViewBase = defineComponent({
...
@@ -76,6 +91,7 @@ export const ViewBase = defineComponent({
}
}
return
null
;
return
null
;
},
},
...
this
.
renderViewMessage
(),
...
inheritSlots
,
...
inheritSlots
,
}
}
}
}
/>
/>
...
...
app_Web/src/components/layout/view-layout/view-layout.tsx
浏览文件 @
814d3e66
...
@@ -49,6 +49,9 @@ export const ViewLayout = defineComponent({
...
@@ -49,6 +49,9 @@ export const ViewLayout = defineComponent({
]
}
]
}
>
>
{
this
.
isLoading
?
<
i
-
spin
size=
'large'
fix
></
i
-
spin
>
:
null
}
{
this
.
isLoading
?
<
i
-
spin
size=
'large'
fix
></
i
-
spin
>
:
null
}
<
div
class=
{
this
.
ns
.
be
(
'top'
,
'message'
)
}
>
{
this
.
$scopedSlots
.
topMessage
&&
this
.
$scopedSlots
.
topMessage
({})
}
</
div
>
{
this
.
isShowHeader
?
(
{
this
.
isShowHeader
?
(
<
div
key=
'header'
class=
{
this
.
ns
.
b
(
'header'
)
}
>
<
div
key=
'header'
class=
{
this
.
ns
.
b
(
'header'
)
}
>
<
div
class=
{
this
.
ns
.
b
(
'header-content'
)
}
>
<
div
class=
{
this
.
ns
.
b
(
'header-content'
)
}
>
...
@@ -74,7 +77,6 @@ export const ViewLayout = defineComponent({
...
@@ -74,7 +77,6 @@ export const ViewLayout = defineComponent({
)
:
null
}
)
:
null
}
{
this
.
$scopedSlots
.
searchForm
&&
this
.
$scopedSlots
.
searchForm
({})
&&
(
{
this
.
$scopedSlots
.
searchForm
&&
this
.
$scopedSlots
.
searchForm
({})
&&
(
<
div
key=
'top'
class=
{
this
.
ns
.
b
(
'top'
)
}
>
<
div
key=
'top'
class=
{
this
.
ns
.
b
(
'top'
)
}
>
<
div
class=
{
this
.
ns
.
be
(
'top'
,
'message'
)
}
></
div
>
<
div
class=
{
this
.
ns
.
be
(
'top'
,
'search-form'
)
}
>
<
div
class=
{
this
.
ns
.
be
(
'top'
,
'search-form'
)
}
>
{
this
.
$scopedSlots
.
searchForm
&&
this
.
$scopedSlots
.
searchForm
({})
}
{
this
.
$scopedSlots
.
searchForm
&&
this
.
$scopedSlots
.
searchForm
({})
}
</
div
>
</
div
>
...
@@ -83,15 +85,23 @@ export const ViewLayout = defineComponent({
...
@@ -83,15 +85,23 @@ export const ViewLayout = defineComponent({
<
div
key=
'content'
class=
{
this
.
ns
.
b
(
'content'
)
}
>
<
div
key=
'content'
class=
{
this
.
ns
.
b
(
'content'
)
}
>
<
div
class=
{
this
.
ns
.
be
(
'content'
,
'left'
)
}
></
div
>
<
div
class=
{
this
.
ns
.
be
(
'content'
,
'left'
)
}
></
div
>
<
div
class=
{
this
.
ns
.
be
(
'content'
,
'body'
)
}
>
<
div
class=
{
this
.
ns
.
be
(
'content'
,
'body'
)
}
>
<
div
class=
{
this
.
ns
.
be
(
'body'
,
'message'
)
}
>
{
this
.
$scopedSlots
.
bodyMessage
&&
this
.
$scopedSlots
.
bodyMessage
({})
}
</
div
>
{
this
.
$scopedSlots
.
default
&&
this
.
$scopedSlots
.
default
({})
}
{
this
.
$scopedSlots
.
default
&&
this
.
$scopedSlots
.
default
({})
}
</
div
>
</
div
>
<
div
class=
{
this
.
ns
.
be
(
'content'
,
'right'
)
}
></
div
>
<
div
class=
{
this
.
ns
.
be
(
'content'
,
'right'
)
}
></
div
>
</
div
>
</
div
>
{
this
.
$scopedSlots
.
footer
&&
(
{
this
.
$scopedSlots
.
footer
||
this
.
$scopedSlots
.
bottomMessage
?
(
<
div
key=
'footer'
class=
{
this
.
ns
.
b
(
'footer'
)
}
>
<
div
key=
'footer'
class=
{
this
.
ns
.
b
(
'footer'
)
}
>
<
div
class=
{
this
.
ns
.
be
(
'bottom'
,
'message'
)
}
>
{
this
.
$scopedSlots
.
bottomMessage
&&
this
.
$scopedSlots
.
bottomMessage
({})
}
</
div
>
{
this
.
$scopedSlots
.
footer
&&
this
.
$scopedSlots
.
footer
({})
}
{
this
.
$scopedSlots
.
footer
&&
this
.
$scopedSlots
.
footer
({})
}
</
div
>
</
div
>
)
}
)
:
null
}
</
div
>
</
div
>
);
);
},
},
...
...
app_Web/src/i-view-register.ts
浏览文件 @
814d3e66
...
@@ -46,6 +46,7 @@ import {
...
@@ -46,6 +46,7 @@ import {
Badge
,
Badge
,
Progress
,
Progress
,
Poptip
,
Poptip
,
Alert
,
}
from
'view-design'
;
}
from
'view-design'
;
const
components
=
[
const
components
=
[
...
@@ -66,6 +67,7 @@ const components = [
...
@@ -66,6 +67,7 @@ const components = [
Content
,
Content
,
Submenu
,
Submenu
,
Avatar
,
Avatar
,
Alert
,
DropdownMenu
,
DropdownMenu
,
Page
,
Page
,
Spin
,
Spin
,
...
...
app_Web/src/util/model-util/model-util.ts
浏览文件 @
814d3e66
...
@@ -24,19 +24,48 @@ export class ModalUtil implements IModalUtil {
...
@@ -24,19 +24,48 @@ export class ModalUtil implements IModalUtil {
protected
modal
:
ModalInstance
=
Vue
.
prototype
.
$Modal
;
protected
modal
:
ModalInstance
=
Vue
.
prototype
.
$Modal
;
async
info
(
params
:
ModalParams
):
Promise
<
void
>
{
async
info
(
params
:
ModalParams
):
Promise
<
void
>
{
this
.
modal
.
info
(
convertParams
(
params
));
return
new
Promise
(
resolve
=>
{
this
.
modal
.
info
({
...
convertParams
(
params
),
onOk
:
()
=>
{
resolve
();
},
});
});
}
}
async
success
(
params
:
ModalParams
):
Promise
<
void
>
{
async
success
(
params
:
ModalParams
):
Promise
<
void
>
{
this
.
modal
.
success
(
convertParams
(
params
));
return
new
Promise
(
resolve
=>
{
this
.
modal
.
success
({
...
convertParams
(
params
),
onOk
:
()
=>
{
resolve
();
},
});
});
}
}
async
warning
(
params
:
ModalParams
):
Promise
<
void
>
{
async
warning
(
params
:
ModalParams
):
Promise
<
void
>
{
this
.
modal
.
warning
(
convertParams
(
params
));
this
.
modal
.
warning
(
convertParams
(
params
));
return
new
Promise
(
resolve
=>
{
this
.
modal
.
success
({
...
convertParams
(
params
),
onOk
:
()
=>
{
resolve
();
},
});
});
}
}
async
error
(
params
:
ModalParams
):
Promise
<
void
>
{
async
error
(
params
:
ModalParams
):
Promise
<
void
>
{
this
.
modal
.
error
(
convertParams
(
params
));
return
new
Promise
(
resolve
=>
{
this
.
modal
.
error
({
...
convertParams
(
params
),
onOk
:
()
=>
{
resolve
();
},
});
});
}
}
async
confirm
(
params
:
ModalParams
):
Promise
<
boolean
>
{
async
confirm
(
params
:
ModalParams
):
Promise
<
boolean
>
{
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSAPPDATAENTITIES/BXDMX/PSFORMS/Main.json
浏览文件 @
814d3e66
...
@@ -353,11 +353,14 @@
...
@@ -353,11 +353,14 @@
"name"
:
"formitem2"
,
"name"
:
"formitem2"
,
"noPrivDisplayMode"
:
1
,
"noPrivDisplayMode"
:
1
,
"getPSEditor"
:
{
"getPSEditor"
:
{
"editorType"
:
"PICTURE"
,
"editorParams"
:
{
"maxFileCount"
:
-1
,
"PICKUPVIEW"
:
"TRUE"
"maxFileSize"
:
-1
,
},
"minFileCount"
:
0
,
"editorType"
:
"LISTBOXPICKUP"
,
"name"
:
"formitem2"
"name"
:
"formitem2"
,
"enableAC"
:
false
,
"forceSelection"
:
true
,
"showTrigger"
:
true
},
},
"getPSLayoutPos"
:
{
"getPSLayoutPos"
:
{
"colMD"
:
24
,
"colMD"
:
24
,
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSAPPDEVIEWS/BXDMXEditView.json
浏览文件 @
814d3e66
...
@@ -631,11 +631,14 @@
...
@@ -631,11 +631,14 @@
"name"
:
"formitem2"
,
"name"
:
"formitem2"
,
"noPrivDisplayMode"
:
1
,
"noPrivDisplayMode"
:
1
,
"getPSEditor"
:
{
"getPSEditor"
:
{
"editorType"
:
"PICTURE"
,
"editorParams"
:
{
"maxFileCount"
:
-1
,
"PICKUPVIEW"
:
"TRUE"
"maxFileSize"
:
-1
,
},
"minFileCount"
:
0
,
"editorType"
:
"LISTBOXPICKUP"
,
"name"
:
"formitem2"
"name"
:
"formitem2"
,
"enableAC"
:
false
,
"forceSelection"
:
true
,
"showTrigger"
:
true
},
},
"getPSLayoutPos"
:
{
"getPSLayoutPos"
:
{
"colMD"
:
24
,
"colMD"
:
24
,
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSSYSAPP.json
浏览文件 @
814d3e66
...
@@ -9366,10 +9366,10 @@
...
@@ -9366,10 +9366,10 @@
"codeName" : "VMGroup3",
"codeName" : "VMGroup3",
"name" : "视图消息类型测试",
"name" : "视图消息类型测试",
"getPSAppViewMsgGroupDetails" : [ {
"getPSAppViewMsgGroupDetails" : [ {
"name" : "消息类型-
常规
信息",
"name" : "消息类型-
警告
信息",
"getPSAppViewMsg" : {
"getPSAppViewMsg" : {
"modelref" : true,
"modelref" : true,
"id" : "ViewMsg
4
"
"id" : "ViewMsg
5
"
}
}
}, {
}, {
"name" : "消息类型-错误信息",
"name" : "消息类型-错误信息",
...
@@ -9378,10 +9378,10 @@
...
@@ -9378,10 +9378,10 @@
"id" : "ViewMsg6"
"id" : "ViewMsg6"
}
}
}, {
}, {
"name" : "消息类型-
警告
信息",
"name" : "消息类型-
常规
信息",
"getPSAppViewMsg" : {
"getPSAppViewMsg" : {
"modelref" : true,
"modelref" : true,
"id" : "ViewMsg
5
"
"id" : "ViewMsg
4
"
}
}
} ]
} ]
}, {
}, {
...
@@ -9398,40 +9398,45 @@
...
@@ -9398,40 +9398,45 @@
"codeName" : "VMGroup4",
"codeName" : "VMGroup4",
"name" : "视图消息位置测试",
"name" : "视图消息位置测试",
"getPSAppViewMsgGroupDetails" : [ {
"getPSAppViewMsgGroupDetails" : [ {
"name" : "消息位置-
弹出
",
"name" : "消息位置-
视图上方
",
"getPSAppViewMsg" : {
"getPSAppViewMsg" : {
"modelref" : true,
"modelref" : true,
"id" : "ViewMsg
10
"
"id" : "ViewMsg
7
"
}
}
}, {
}, {
"name" : "消息位置-视图
上
方",
"name" : "消息位置-视图
下
方",
"getPSAppViewMsg" : {
"getPSAppViewMsg" : {
"modelref" : true,
"modelref" : true,
"id" : "ViewMsg
7
"
"id" : "ViewMsg
8
"
}
}
}, {
}, {
"name" : "消息位置-
视图内容区
",
"name" : "消息位置-
弹出
",
"getPSAppViewMsg" : {
"getPSAppViewMsg" : {
"modelref" : true,
"modelref" : true,
"id" : "ViewMsg
9
"
"id" : "ViewMsg
10
"
}
}
}, {
}, {
"name" : "消息位置-视图
下方
",
"name" : "消息位置-视图
内容区
",
"getPSAppViewMsg" : {
"getPSAppViewMsg" : {
"modelref" : true,
"modelref" : true,
"id" : "ViewMsg
8
"
"id" : "ViewMsg
9
"
}
}
} ]
} ]
}, {
}, {
"codeName" : "VMGroup8",
"codeName" : "VMGroup8",
"name" : "【静态测试】",
"name" : "【静态测试】",
"getPSAppViewMsgGroupDetails" : [ {
"getPSAppViewMsgGroupDetails" : [ {
"name" : "消息
类型-错误信息
",
"name" : "消息
位置-视图内容区
",
"getPSAppViewMsg" : {
"getPSAppViewMsg" : {
"modelref" : true,
"modelref" : true,
"id" : "ViewMsg6"
"id" : "ViewMsg9"
},
}
"position" : "POPUP"
}, {
"name" : "关闭模式-默认删除-上方-错误",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg12"
}
}, {
}, {
"name" : "消息类型-警告信息",
"name" : "消息类型-警告信息",
"getPSAppViewMsg" : {
"getPSAppViewMsg" : {
...
@@ -9440,53 +9445,42 @@
...
@@ -9440,53 +9445,42 @@
},
},
"position" : "POPUP"
"position" : "POPUP"
}, {
}, {
"name" : "关闭模式-
无删除-上方-常规
",
"name" : "关闭模式-
本次删除-上方-警告
",
"getPSAppViewMsg" : {
"getPSAppViewMsg" : {
"modelref" : true,
"modelref" : true,
"id" : "ViewMsg1
1
"
"id" : "ViewMsg1
3
"
}
}
}, {
}, {
"name" : "消息类型-
常规
信息",
"name" : "消息类型-
错误
信息",
"getPSAppViewMsg" : {
"getPSAppViewMsg" : {
"modelref" : true,
"modelref" : true,
"id" : "ViewMsg
4
"
"id" : "ViewMsg
6
"
},
},
"position" : "POPUP"
"position" : "POPUP"
}, {
}, {
"name" : "关闭模式-默认删除-上方-错误",
"name" : "消息位置-视图下方",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg12"
}
}, {
"name" : "消息位置-视图内容区",
"getPSAppViewMsg" : {
"getPSAppViewMsg" : {
"modelref" : true,
"modelref" : true,
"id" : "ViewMsg
9
"
"id" : "ViewMsg
8
"
}
}
}, {
}, {
"name" : "
关闭模式-本次删除-上方-警告
",
"name" : "
消息类型-常规信息
",
"getPSAppViewMsg" : {
"getPSAppViewMsg" : {
"modelref" : true,
"modelref" : true,
"id" : "ViewMsg13"
"id" : "ViewMsg4"
}
},
"position" : "POPUP"
}, {
}, {
"name" : "
消息位置-视图下方
",
"name" : "
关闭模式-无删除-上方-常规
",
"getPSAppViewMsg" : {
"getPSAppViewMsg" : {
"modelref" : true,
"modelref" : true,
"id" : "ViewMsg
8
"
"id" : "ViewMsg
11
"
}
}
} ]
} ]
}, {
}, {
"codeName" : "VMGroup5",
"codeName" : "VMGroup5",
"name" : "视图消息关闭模式",
"name" : "视图消息关闭模式",
"getPSAppViewMsgGroupDetails" : [ {
"getPSAppViewMsgGroupDetails" : [ {
"name" : "关闭模式-默认删除",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg12"
}
}, {
"name" : "关闭模式-本次删除",
"name" : "关闭模式-本次删除",
"getPSAppViewMsg" : {
"getPSAppViewMsg" : {
"modelref" : true,
"modelref" : true,
...
@@ -9498,21 +9492,27 @@
...
@@ -9498,21 +9492,27 @@
"modelref" : true,
"modelref" : true,
"id" : "ViewMsg11"
"id" : "ViewMsg11"
}
}
}, {
"name" : "关闭模式-默认删除",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg12"
}
} ]
} ]
}, {
}, {
"codeName" : "VMGroup6",
"codeName" : "VMGroup6",
"name" : "视图消息动态模式测试",
"name" : "视图消息动态模式测试",
"getPSAppViewMsgGroupDetails" : [ {
"getPSAppViewMsgGroupDetails" : [ {
"name" : "动态模式-
实体数据集
",
"name" : "动态模式-
静态内容
",
"getPSAppViewMsg" : {
"getPSAppViewMsg" : {
"modelref" : true,
"modelref" : true,
"id" : "ViewMsg1
4
"
"id" : "ViewMsg1
5
"
}
}
}, {
}, {
"name" : "动态模式-
静态内容
",
"name" : "动态模式-
实体数据集
",
"getPSAppViewMsg" : {
"getPSAppViewMsg" : {
"modelref" : true,
"modelref" : true,
"id" : "ViewMsg1
5
"
"id" : "ViewMsg1
4
"
}
}
} ]
} ]
} ],
} ],
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录