Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
功
功能演示系统
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
示例
功能演示系统
提交
c34a99d5
提交
c34a99d5
编写于
2年前
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
tony001 发布系统代码 [后台服务,演示应用]
上级
942766b2
变更
9
隐藏空白字符变更
内嵌
并排
正在显示
9 个修改的文件
包含
94 行增加
和
32 行删除
+94
-32
app-form-group.scss
app_Web/src/components/app-form-group/app-form-group.scss
+1
-0
app-help.scss
app_Web/src/components/app-help/app-help.scss
+1
-0
app-index-view2-base.vue
...src/pages/sample/app-index-view2/app-index-view2-base.vue
+21
-8
index-base.vue
app_Web/src/pages/sample/index/index-base.vue
+14
-14
app-login-view-base.vue
.../src/pages/ungroup/app-login-view/app-login-view-base.vue
+1
-1
common.scss
app_Web/src/styles/common.scss
+48
-3
default-searchform-base.vue
...s/ibizbook/default-searchform/default-searchform-base.vue
+2
-2
main-multieditviewpanel.scss
...book/main-multieditviewpanel/main-multieditviewpanel.scss
+2
-0
quicksearchform-searchform-base.vue
...searchform-searchform/quicksearchform-searchform-base.vue
+4
-4
未找到文件。
app_Web/src/components/app-form-group/app-form-group.scss
浏览文件 @
c34a99d5
...
@@ -6,6 +6,7 @@
...
@@ -6,6 +6,7 @@
.collapse-icon
{
.collapse-icon
{
font-size
:
20px
;
font-size
:
20px
;
margin-right
:
20px
;
margin-right
:
20px
;
cursor
:
pointer
;
}
}
>
.ivu-card-body
{
>
.ivu-card-body
{
padding
:
20px
5px
10px
5px
;
padding
:
20px
5px
10px
5px
;
...
...
This diff is collapsed.
Click to expand it.
app_Web/src/components/app-help/app-help.scss
浏览文件 @
c34a99d5
.app-help
{
.app-help
{
font-size
:
20px
;
font-size
:
20px
;
margin
:
0
10px
;
margin
:
0
10px
;
cursor
:
pointer
;
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
app_Web/src/pages/sample/app-index-view2/app-index-view2-base.vue
浏览文件 @
c34a99d5
<
template
>
<
template
>
<app-index-view-layout-
top
:class=
"
{ [themeClasses]: true, 'app-index-view2': true }" :style="themeStyle">
<app-index-view-layout-
left
:navModel=
"navModel"
:collapseChange=
"collapseChange"
:class=
"
{ [themeClasses]: true, 'app-index-view2': true }" :style="themeStyle">
<template
#
headerLeft
>
<template
#
siderTop
>
<img
class=
"app-icon"
src=
"../../../assets/img/logo.png"
/
>
<span
class=
"menuicon"
v-if=
"isEnableAppSwitch"
@
click=
"contextMenuDragVisiable=!contextMenuDragVisiable"
><Icon
type=
"md-menu"
/></span
>
<span
class=
"app-caption
"
>
{{
$t
(
model
.
srfCaption
)
}}
</span>
<span
v-show=
"!collapseChange
"
>
{{
$t
(
model
.
srfCaption
)
}}
</span>
</
template
>
</
template
>
<
template
#
headerRigh
t
>
<
template
#
siderConten
t
>
<view
_appmenu
<view
_appmenu
:viewState=
"viewState"
:viewState=
"viewState"
:viewparams=
"viewparams"
:viewparams=
"viewparams"
...
@@ -23,15 +23,28 @@
...
@@ -23,15 +23,28 @@
ref=
'appmenu'
ref=
'appmenu'
@
closeview=
"closeView($event)"
>
@
closeview=
"closeView($event)"
>
</view
_appmenu
>
</view
_appmenu
>
<context-menu-drag
v-if=
"isEnableAppSwitch"
:contextMenuDragVisiable=
"contextMenuDragVisiable"
></context-menu-drag>
</
template
>
<
template
#
headerLeft
>
<i
v-show=
"!collapseChange"
class=
"ivu-icon el-icon-s-fold"
@
click=
"handleClick"
></i>
<i
v-show=
"collapseChange"
class=
"ivu-icon el-icon-s-unfold"
@
click=
"handleClick"
></i>
<app-breadcrumb
:navModel=
"navModel"
indexViewTag=
"app-index-view2"
></app-breadcrumb>
</
template
>
<
template
#
headerRight
>
<app-user></app-user>
<app-user></app-user>
<app-message-popover></app-message-popover>
<app-message-popover></app-message-popover>
<app-help></app-help>
<app-help></app-help>
<app-lang></app-lang>
<app-lang></app-lang>
</
template
>
</
template
>
<
template
#
tabPageExp
>
<tab-page-exp
v-if=
"Object.is(navModel,'tab')"
></tab-page-exp>
</
template
>
<
template
#
navPos
>
<
template
#
navPos
>
<router-view></router-view>
<app-keep-alive
:routerList=
"getRouterList"
>
<router-view
:key=
"getRouterViewKey"
></router-view>
</app-keep-alive>
</
template
>
</
template
>
</app-index-view-layout-
top
>
</app-index-view-layout-
left
>
</template>
</template>
// 基于 @VIEW/应用首页视图/VIEW-BASE.vue.ftl 生成
// 基于 @VIEW/应用首页视图/VIEW-BASE.vue.ftl 生成
...
@@ -613,7 +626,7 @@ export default class AppIndexView2Base extends Vue {
...
@@ -613,7 +626,7 @@ export default class AppIndexView2Base extends Vue {
* @type {string}
* @type {string}
* @memberof AppIndexView2Base
* @memberof AppIndexView2Base
*/
*/
public
mode
:
string
=
''
;
public
mode
:
string
=
'
vertical
'
;
/**
/**
* 导航模式(route:面包屑模式、tab:分页导航模式)
* 导航模式(route:面包屑模式、tab:分页导航模式)
...
...
This diff is collapsed.
Click to expand it.
app_Web/src/pages/sample/index/index-base.vue
浏览文件 @
c34a99d5
<
template
>
<
template
>
<app-index-view-layout-top
:class=
"
{ [themeClasses]: true, 'index': true }" :style="themeStyle">
<app-index-view-layout-top
:class=
"
{ [themeClasses]: true, 'index': true }" :style="themeStyle">
<template
#
headerLeft
>
<template
#
headerLeft
>
<img
class=
"app-icon"
src=
"../../../assets/img/logo.png"
/>
<img
class=
"app-icon"
src=
"../../../assets/img/logo.png"
/>
<span
class=
"app-caption"
>
{{
$t
(
model
.
srfCaption
)
}}
</span>
<span
class=
"app-caption"
>
{{
$t
(
model
.
srfCaption
)
}}
</span>
</
template
>
</
template
>
<
template
#
headerRight
>
<
template
#
headerRight
>
<view
_appmenu
<view
_appmenu
:viewState=
"viewState"
:viewState=
"viewState"
:viewparams=
"viewparams"
:viewparams=
"viewparams"
:context=
"context"
:context=
"context"
...
@@ -23,14 +23,14 @@
...
@@ -23,14 +23,14 @@
ref=
'appmenu'
ref=
'appmenu'
@
closeview=
"closeView($event)"
>
@
closeview=
"closeView($event)"
>
</view
_appmenu
>
</view
_appmenu
>
<app-user></app-user>
<app-user></app-user>
<app-message-popover></app-message-popover>
<app-message-popover></app-message-popover>
<app-help></app-help>
<app-help></app-help>
<app-lang></app-lang>
<app-lang></app-lang>
</
template
>
</
template
>
<
template
#
navPos
>
<
template
#
navPos
>
<router-view></router-view>
<router-view></router-view>
</
template
>
</
template
>
</app-index-view-layout-top>
</app-index-view-layout-top>
</template>
</template>
...
...
This diff is collapsed.
Click to expand it.
app_Web/src/pages/ungroup/app-login-view/app-login-view-base.vue
浏览文件 @
c34a99d5
...
@@ -30,7 +30,7 @@
...
@@ -30,7 +30,7 @@
<i-button
@
click=
"handleSubmit"
type=
"primary"
class=
"login_btn"
<i-button
@
click=
"handleSubmit"
type=
"primary"
class=
"login_btn"
>
{{
$t
(
"components.login.name"
)
}}
>
{{
$t
(
"components.login.name"
)
}}
</i-button>
</i-button>
<i-button
@
click=
"goReset"
type=
"success"
class=
"login_reset"
<i-button
@
click=
"goReset"
class=
"login_reset"
>
{{
$t
(
"components.login.reset"
)
}}
>
{{
$t
(
"components.login.reset"
)
}}
</i-button>
</i-button>
</form-item>
</form-item>
...
...
This diff is collapsed.
Click to expand it.
app_Web/src/styles/common.scss
浏览文件 @
c34a99d5
// 模态
// 模态
.ivu-modal
{
.ivu-modal
{
.ivu-modal-content
{
.ivu-modal-content
{
.ivu-modal-close
{
right
:
30px
;
top
:
4px
;
}
.ivu-modal-header
{
.ivu-modal-header
{
padding
:
10px
30px
;
padding
:
10px
30px
;
background-color
:
var
(
--
app-color-black
);
background-color
:
var
(
--
app-color-black
);
p
{
.ivu-modal-header-inner
,
p
{
font-size
:
16px
;
font-size
:
16px
;
color
:
var
(
--
app-color-white
);
color
:
var
(
--
app-color-white
);
height
:
auto
;
height
:
auto
;
...
@@ -13,12 +17,12 @@
...
@@ -13,12 +17,12 @@
}
}
.ivu-modal-body
{
.ivu-modal-body
{
background-color
:
var
(
--
app-color-gray-400
);
background-color
:
var
(
--
app-color-gray-400
);
padding
:
30px
30px
0
;
padding
:
30px
30px
;
}
}
.ivu-modal-footer
{
.ivu-modal-footer
{
border-top
:
0
;
border-top
:
0
;
background-color
:
var
(
--
app-color-gray-400
);
background-color
:
var
(
--
app-color-gray-400
);
padding
:
22
px
30px
;
padding
:
0
30
px
30px
;
>
div
{
>
div
{
display
:
flex
;
display
:
flex
;
justify-content
:
flex-end
;
justify-content
:
flex-end
;
...
@@ -48,4 +52,45 @@
...
@@ -48,4 +52,45 @@
}
}
}
}
}
}
}
// 确认操作框
.ivu-modal-confirm
{
padding
:
0
;
.ivu-modal-confirm-head
{
.ivu-modal-confirm-head-icon
{
font-size
:
20px
;
color
:
var
(
--
app-color-red
);
i
:
:
before
{
content
:
"\F107"
;
}
}
.ivu-modal-confirm-head-title
{
font-size
:
16px
;
color
:
var
(
--
app-color-black
);
}
}
.ivu-modal-confirm-body
{
margin
:
14px
0
;
padding-left
:
0
;
font-size
:
14px
;
color
:
var
(
--
app-color-gray-100
);
}
.ivu-modal-confirm-footer
{
margin-top
:
0
;
display
:
flex
;
justify-content
:
flex-end
;
.ivu-btn
:nth-child
(
1
)
{
border
:
none
;
background-color
:
var
(
--
app-color-gray-200
);
color
:
var
(
--
app-color-black
);
font-size
:
14px
;
}
.ivu-btn
:nth-child
(
2
)
{
border
:
none
;
background-color
:
var
(
--
app-color-blue
);
color
:
var
(
--
app-color-white
);
font-size
:
14px
;
}
}
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
app_Web/src/widgets/ibizbook/default-searchform/default-searchform-base.vue
浏览文件 @
c34a99d5
...
@@ -712,7 +712,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
...
@@ -712,7 +712,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
:
'IBIZBOOKUsr
5Data
View'
+
(
this
.
$t
(
'app.searchForm.notConfig.loadAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOKUsr
9Grid
View'
+
(
this
.
$t
(
'app.searchForm.notConfig.loadAction'
)
as
string
)
});
return
;
return
;
}
}
const
arg
:
any
=
{
...
opt
};
const
arg
:
any
=
{
...
opt
};
...
@@ -748,7 +748,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
...
@@ -748,7 +748,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
:
'IBIZBOOKUsr
5Data
View'
+
(
this
.
$t
(
'app.searchForm.notConfig.loaddraftAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOKUsr
9Grid
View'
+
(
this
.
$t
(
'app.searchForm.notConfig.loaddraftAction'
)
as
string
)
});
return
;
return
;
}
}
const
arg
:
any
=
{
...
opt
}
;
const
arg
:
any
=
{
...
opt
}
;
...
...
This diff is collapsed.
Click to expand it.
app_Web/src/widgets/ibizbook/main-multieditviewpanel/main-multieditviewpanel.scss
浏览文件 @
c34a99d5
...
@@ -14,6 +14,7 @@
...
@@ -14,6 +14,7 @@
.collapse-icon
{
.collapse-icon
{
font-size
:
20px
;
font-size
:
20px
;
margin-right
:
20px
;
margin-right
:
20px
;
cursor
:
pointer
;
}
}
>
.ivu-card-extra
{
>
.ivu-card-extra
{
...
@@ -28,6 +29,7 @@
...
@@ -28,6 +29,7 @@
.remove-icon
{
.remove-icon
{
font-size
:
20px
;
font-size
:
20px
;
margin-left
:
20px
;
margin-left
:
20px
;
cursor
:
pointer
;
}
}
}
}
}
}
...
...
This diff is collapsed.
Click to expand it.
app_Web/src/widgets/ibizbook/quicksearchform-searchform/quicksearchform-searchform-base.vue
浏览文件 @
c34a99d5
<
template
>
<
template
>
<i-form
:model=
"this.data"
class=
'app-search-form'
ref=
'
quick
searchform'
style=
""
>
<i-form
:model=
"this.data"
class=
'app-search-form'
ref=
'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
.
quick
searchform
;
const
form
:
any
=
this
.
$refs
.
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
CalendarView
'
+
(
this
.
$t
(
'app.searchForm.notConfig.loadAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
UsrListView_plugin
'
+
(
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
CalendarView
'
+
(
this
.
$t
(
'app.searchForm.notConfig.loaddraftAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
UsrListView_plugin
'
+
(
this
.
$t
(
'app.searchForm.notConfig.loaddraftAction'
)
as
string
)
});
return
;
return
;
}
}
const
arg
:
any
=
{
...
opt
}
;
const
arg
:
any
=
{
...
opt
}
;
...
...
This diff is collapsed.
Click to expand it.
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录