Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-Mob-R7-Res
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-Mob-R7-Res
提交
45fe4016
提交
45fe4016
编写于
9月 18, 2020
作者:
Neuromancer255
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
快速分组组件计数逻辑调整
上级
e532d56c
变更
2
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
10 行增加
和
7 行删除
+10
-7
app-quick-group-tab.less
src/components/app-quick-group-tab/app-quick-group-tab.less
+2
-2
app-quick-group-tab.vue
src/components/app-quick-group-tab/app-quick-group-tab.vue
+8
-5
未找到文件。
src/components/app-quick-group-tab/app-quick-group-tab.less
浏览文件 @
45fe4016
...
@@ -25,7 +25,7 @@
...
@@ -25,7 +25,7 @@
position: absolute;
position: absolute;
top: -5px;
top: -5px;
left: 49px;
left: 49px;
z-index:
9999
;
z-index:
10000
;
min-width: 15px;
min-width: 15px;
height: 15px;
height: 15px;
text-align: center;
text-align: center;
...
@@ -44,7 +44,7 @@
...
@@ -44,7 +44,7 @@
right: 0;
right: 0;
width: 90%;
width: 90%;
max-height: 0;
max-height: 0;
transition: max-height 0.
2
s ease-in;
transition: max-height 0.
3
s ease-in;
margin: auto;
margin: auto;
background-color: white;
background-color: white;
display: flex;
display: flex;
...
...
src/components/app-quick-group-tab/app-quick-group-tab.vue
浏览文件 @
45fe4016
...
@@ -8,10 +8,12 @@
...
@@ -8,10 +8,12 @@
>
>
<ion-icon
v-if=
" item.iconcls && !Object.is(item.iconcls, '')"
:name=
"item.iconcls"
></ion-icon>
<ion-icon
v-if=
" item.iconcls && !Object.is(item.iconcls, '')"
:name=
"item.iconcls"
></ion-icon>
<img
v-else-if=
"item.icon && !Object.is(item.icon, '')"
:src=
"item.icon"
/>
<img
v-else-if=
"item.icon && !Object.is(item.icon, '')"
:src=
"item.icon"
/>
<span
class=
"app-quick-item-label"
>
{{
item
.
label
}}
</span>
<span
v-if=
"item.selectChildLabel"
class=
"app-quick-item-label"
>
{{
item
.
selectChildLabel
}}
</span>
<ion-icon
v-if=
"item.children"
name=
"caret-down-outline"
></ion-icon>
<span
v-else
class=
"app-quick-item-label"
>
{{
item
.
label
}}
</span>
<ion-icon
v-if=
"item.children"
name=
"caret-down-outline"
style=
"margin-left:4px"
></ion-icon>
</div>
</div>
<ion-badge
class=
"badge"
v-if=
"isSelectedItem(item) && pageTotal !== 0 && !item.children"
>
{{
pageTotal
}}
</ion-badge>
<ion-badge
class=
"badge"
v-if=
"isSelectedItem(item) && pageTotal !== 0 && !item.children"
>
{{
pageTotal
}}
</ion-badge>
<ion-badge
class=
"badge"
v-if=
"item.childSelected && pageTotal"
>
{{
pageTotal
}}
</ion-badge>
</div>
</div>
</div>
</div>
<div
ref=
"child-list"
:class=
"
{'child-list':true,'open':subItems.length > 0}">
<div
ref=
"child-list"
:class=
"
{'child-list':true,'open':subItems.length > 0}">
...
@@ -22,7 +24,7 @@
...
@@ -22,7 +24,7 @@
<span>
{{
item
.
label
}}
</span>
<span>
{{
item
.
label
}}
</span>
</span>
</span>
<ion-badge
class=
"badge"
v-if=
"pageTotal !== 0 && item.selected"
>
{{
pageTotal
}}
</ion-badge>
<ion-badge
class=
"badge"
v-if=
"pageTotal !== 0 && item.selected"
>
{{
pageTotal
}}
</ion-badge>
<ion-icon
size=
"small"
v-if=
"item.selected"
style=
"margin-left:auto;color"
name=
"checkmark-outline"
></ion-icon>
<ion-icon
size=
"small"
v-if=
"item.selected"
style=
"margin-left:auto;color
:green
"
name=
"checkmark-outline"
></ion-icon>
</div>
</div>
</div>
</div>
<ion-backdrop
style=
"height:100vh;z-index:-1"
v-show=
"subItems.length > 0"
visible=
"true"
tappable=
"true"
@
ionBackdropTap=
"closeBackdrop"
></ion-backdrop>
<ion-backdrop
style=
"height:100vh;z-index:-1"
v-show=
"subItems.length > 0"
visible=
"true"
tappable=
"true"
@
ionBackdropTap=
"closeBackdrop"
></ion-backdrop>
...
@@ -42,7 +44,6 @@ import {
...
@@ -42,7 +44,6 @@ import {
components
:
{},
components
:
{},
})
})
export
default
class
AppQuickGroupTab
extends
Vue
{
export
default
class
AppQuickGroupTab
extends
Vue
{
/**
/**
* 快速分组代码表
* 快速分组代码表
*
*
...
@@ -185,14 +186,16 @@ export default class AppQuickGroupTab extends Vue {
...
@@ -185,14 +186,16 @@ export default class AppQuickGroupTab extends Vue {
this
.
items
.
forEach
((
item
:
any
)
=>
{
this
.
items
.
forEach
((
item
:
any
)
=>
{
item
.
selected
=
false
;
item
.
selected
=
false
;
item
.
childSelected
=
false
;
item
.
childSelected
=
false
;
item
.
selectChildLabel
=
""
;
})
})
$event
.
selected
=
true
;
$event
.
selected
=
true
;
if
(
$event
.
pvalue
)
{
if
(
$event
.
pvalue
)
{
this
.
items
.
forEach
((
item
:
any
)
=>
{
this
.
items
.
forEach
((
item
:
any
)
=>
{
if
(
item
.
value
===
$event
.
pvalue
)
{
if
(
item
.
value
===
$event
.
pvalue
)
{
item
.
childSelected
=
true
;
item
.
childSelected
=
true
;
item
.
selectChildLabel
=
$event
.
label
;
}
}
})
})
}
}
this
.
$emit
(
"valuechange"
,
$event
);
this
.
$emit
(
"valuechange"
,
$event
);
}
}
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录