Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
功
功能演示系统
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
示例
功能演示系统
提交
2f09a902
提交
2f09a902
编写于
12月 14, 2020
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
ShineKOT 发布系统代码 [后台服务,演示应用]
上级
df898403
变更
7
展开全部
显示空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
1043 行增加
和
6 行删除
+1043
-6
ibizorder-detail-f7-edit-view-base.vue
...etail-f7-edit-view/ibizorder-detail-f7-edit-view-base.vue
+950
-0
ibizorder-detail-f7-edit-view.less
...er-detail-f7-edit-view/ibizorder-detail-f7-edit-view.less
+27
-0
ibizorder-detail-f7-edit-view.vue
...der-detail-f7-edit-view/ibizorder-detail-f7-edit-view.vue
+22
-0
router.ts
app_Web/src/pages/sample/index/router.ts
+27
-0
state.ts
app_Web/src/store/modules/view-action/state.ts
+11
-0
main-form-base.vue
...src/widgets/ibizorder-detail/main-form/main-form-base.vue
+5
-5
main-form-service.ts
...c/widgets/ibizorder-detail/main-form/main-form-service.ts
+1
-1
未找到文件。
app_Web/src/pages/sample/ibizorder-detail-f7-edit-view/ibizorder-detail-f7-edit-view-base.vue
0 → 100644
浏览文件 @
2f09a902
此差异已折叠。
点击以展开。
app_Web/src/pages/sample/ibizorder-detail-f7-edit-view/ibizorder-detail-f7-edit-view.less
0 → 100644
浏览文件 @
2f09a902
.view-card {
>.ivu-card-extra {
top: 5px;
right: 0px;
}
}
.ibizorder-detail-f7-edit-view{
position: relative;
}
.toolbar-container {
button {
margin: 6px 0px 4px 4px;
.caption {
margin-left: 4px;
}
}
.seperator {
color: #dcdee2;
margin: 0 0px 0 4px;
}
}
// this is less
.deepskyblueToolBar {color:white !important;background-color:#108cee !important;}
app_Web/src/pages/sample/ibizorder-detail-f7-edit-view/ibizorder-detail-f7-edit-view.vue
0 → 100644
浏览文件 @
2f09a902
<
script
lang=
'tsx'
>
import
{
Component
}
from
'vue-property-decorator'
;
import
IBIZOrderDetailF7EditViewBase
from
'./ibizorder-detail-f7-edit-view-base.vue'
;
import
view_form
from
'@widgets/ibizorder-detail/main-form/main-form.vue'
;
@
Component
({
components
:
{
view_form
,
},
beforeRouteEnter
:
(
to
:
any
,
from
:
any
,
next
:
any
)
=>
{
next
((
vm
:
any
)
=>
{
if
(
!
Object
.
is
(
vm
.
navModel
,
"route"
)){
vm
.
initNavDataWithTab
(
vm
.
viewCacheData
);
}
vm
.
$store
.
commit
(
'addCurPageViewtag'
,
{
fullPath
:
to
.
fullPath
,
viewtag
:
vm
.
viewtag
});
});
},
})
export
default
class
IBIZOrderDetailF7EditView
extends
IBIZOrderDetailF7EditViewBase
{
}
</
script
>
\ No newline at end of file
app_Web/src/pages/sample/index/router.ts
浏览文件 @
2f09a902
...
...
@@ -4899,6 +4899,33 @@ const router = new Router({
},
component
:
()
=>
import
(
'@pages/sample/ibizsoftware-suit-sgrid-view/ibizsoftware-suit-sgrid-view.vue'
),
},
{
path
:
'/ibizorders/:ibizorder?/ibizorderdetails/:ibizorderdetail?/f7editview/:f7editview?'
,
meta
:
{
caption
:
'entities.ibizorderdetail.views.f7editview.caption'
,
info
:
''
,
parameters
:
[
{
pathName
:
'ibizorders'
,
parameterName
:
'ibizorder'
},
{
pathName
:
'ibizorderdetails'
,
parameterName
:
'ibizorderdetail'
},
{
pathName
:
'f7editview'
,
parameterName
:
'f7editview'
},
],
requireAuth
:
true
,
},
component
:
()
=>
import
(
'@pages/sample/ibizorder-detail-f7-edit-view/ibizorder-detail-f7-edit-view.vue'
),
},
{
path
:
'/ibizorderdetails/:ibizorderdetail?/f7editview/:f7editview?'
,
meta
:
{
caption
:
'entities.ibizorderdetail.views.f7editview.caption'
,
info
:
''
,
parameters
:
[
{
pathName
:
'ibizorderdetails'
,
parameterName
:
'ibizorderdetail'
},
{
pathName
:
'f7editview'
,
parameterName
:
'f7editview'
},
],
requireAuth
:
true
,
},
component
:
()
=>
import
(
'@pages/sample/ibizorder-detail-f7-edit-view/ibizorder-detail-f7-edit-view.vue'
),
},
{
path
:
'/ibizsample0021s/:ibizsample0021?/editview/:editview?'
,
meta
:
{
...
...
app_Web/src/store/modules/view-action/state.ts
浏览文件 @
2f09a902
...
...
@@ -1521,6 +1521,17 @@ export const viewstate: any = {
'54c2461e07dd79fdbecc2c1e3aec8096'
,
],
},
{
viewtag
:
'c8a1c9f876a50150221a8f34c881b4fa'
,
viewmodule
:
'Sample'
,
viewname
:
'IBIZOrderDetailF7EditView'
,
viewaction
:
''
,
viewdatachange
:
false
,
refviews
:
[
'17770b42972334457baccfe91828bd46'
,
'ec6cfd868c34a036250a813b24068519'
,
],
},
{
viewtag
:
'c9efbd1a76fcc2ce0bf6fbb4b7af561d'
,
viewmodule
:
'Sample'
,
...
...
app_Web/src/widgets/ibizorder-detail/main-form/main-form-base.vue
浏览文件 @
2f09a902
...
...
@@ -1439,7 +1439,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/
public
load
(
opt
:
any
=
{}):
void
{
if
(
!
this
.
loadAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDetailEditView'
+
(
this
.
$t
(
'app.formpage.notconfig.loadaction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDetail
F7
EditView'
+
(
this
.
$t
(
'app.formpage.notconfig.loadaction'
)
as
string
)
});
return
;
}
const
arg
:
any
=
{
...
opt
};
...
...
@@ -1474,7 +1474,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/
public
loadDraft
(
opt
:
any
=
{}):
void
{
if
(
!
this
.
loaddraftAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDetailEditView'
+
(
this
.
$t
(
'app.formpage.notconfig.loaddraftaction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDetail
F7
EditView'
+
(
this
.
$t
(
'app.formpage.notconfig.loaddraftaction'
)
as
string
)
});
return
;
}
const
arg
:
any
=
{
...
opt
}
;
...
...
@@ -1535,7 +1535,7 @@ export default class MainBase extends Vue implements ControlInterface {
const
action
:
any
=
Object
.
is
(
data
.
srfuf
,
'1'
)
?
this
.
updateAction
:
this
.
createAction
;
if
(
!
action
){
let
actionName
:
any
=
Object
.
is
(
data
.
srfuf
,
'1'
)?
"updateAction"
:
"createAction"
;
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDetailEditView'
+
(
this
.
$t
(
'app.formpage.notconfig.actionname'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDetail
F7
EditView'
+
(
this
.
$t
(
'app.formpage.notconfig.actionname'
)
as
string
)
});
return
;
}
Object
.
assign
(
arg
,{
viewparams
:
this
.
viewparams
});
...
...
@@ -1643,7 +1643,7 @@ export default class MainBase extends Vue implements ControlInterface {
const
action
:
any
=
Object
.
is
(
data
.
srfuf
,
'1'
)
?
this
.
updateAction
:
this
.
createAction
;
if
(
!
action
){
let
actionName
:
any
=
Object
.
is
(
data
.
srfuf
,
'1'
)?
"updateAction"
:
"createAction"
;
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDetailEditView'
+
(
this
.
$t
(
'app.formpage.notconfig.actionname'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDetail
F7
EditView'
+
(
this
.
$t
(
'app.formpage.notconfig.actionname'
)
as
string
)
});
return
;
}
Object
.
assign
(
arg
,{
viewparams
:
this
.
viewparams
});
...
...
@@ -1720,7 +1720,7 @@ export default class MainBase extends Vue implements ControlInterface {
public
remove
(
opt
:
Array
<
any
>
=
[],
showResultInfo
?:
boolean
):
Promise
<
any
>
{
return
new
Promise
((
resolve
:
any
,
reject
:
any
)
=>
{
if
(
!
this
.
removeAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDetailEditView'
+
(
this
.
$t
(
'app.formpage.notconfig.removeaction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderDetail
F7
EditView'
+
(
this
.
$t
(
'app.formpage.notconfig.removeaction'
)
as
string
)
});
return
;
}
const
arg
:
any
=
opt
[
0
];
...
...
app_Web/src/widgets/ibizorder-detail/main-form/main-form-service.ts
浏览文件 @
2f09a902
...
...
@@ -29,7 +29,7 @@ export default class MainService extends ControlService {
* @memberof MainService
*/
public
setTempMode
(){
this
.
isTempMode
=
fals
e
;
this
.
isTempMode
=
tru
e
;
}
/**
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录