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
提交
d5ea64a2
提交
d5ea64a2
编写于
9月 10, 2020
作者:
KK
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
编辑器调整
上级
056a58c5
变更
2
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
41 行增加
和
19 行删除
+41
-19
app-mob-select-drop-down.less
...ts/app-mob-select-drop-down/app-mob-select-drop-down.less
+12
-6
app-mob-select-drop-down.vue
...nts/app-mob-select-drop-down/app-mob-select-drop-down.vue
+29
-13
未找到文件。
src/components/app-mob-select-drop-down/app-mob-select-drop-down.less
浏览文件 @
d5ea64a2
.app-mobile-select-drop-down{
.app-mobile-select-drop-down
{
width: 100%;
.cancel-icon {
width: 16px;
...
...
@@ -12,16 +12,16 @@
display: flex;
justify-content: center;
align-items: center;
ion-icon{
ion-icon
{
position: absolute;
font-size: 16px;
right: 0;
top: 0;
color:#969696;
z-index:9999;
color:
#969696;
z-index:
9999;
}
}
ion-select{
ion-select
{
width: 100%;
max-width: 100%;
padding-left: 0;
...
...
@@ -49,5 +49,11 @@
border-left: 5px solid transparent;
color: #969696;
}
.select_text {
height: 40px;
line-height: 40px;
text-align: right;
padding-right: 25px;
color: #969696;
}
}
src/components/app-mob-select-drop-down/app-mob-select-drop-down.vue
浏览文件 @
d5ea64a2
...
...
@@ -2,7 +2,8 @@
<div
class=
"app-mobile-select-drop-down"
>
<div
class=
"cancel-icon"
v-if=
"curvalue"
><ion-icon
name=
"close-circle-outline"
@
click=
"clear"
></ion-icon></div>
<div
v-if=
"curvalue== null || curvalue==''"
class=
"ion-select-icon"
></div>
<ion-select
:value=
"curvalue"
:disabled=
"disabled "
@
click=
"onSearch(null)"
@
ionChange=
"change"
interface=
"action-sheet"
:cancel-text=
"$t('app.button.cancel')"
>
<div
class=
"select_text"
style=
"height: 40px;"
@
click=
"openSelect"
>
{{
curvalue
}}
</div>
<ion-select
:value=
"selectValue"
:ref=
"name+'select'"
v-show=
"false"
:disabled=
"disabled "
@
ionChange=
"change"
interface=
"action-sheet"
:cancel-text=
"$t('app.button.cancel')"
>
<ion-select-option
v-for=
"option of items"
:key=
"option.value"
:value=
"option.value"
>
{{
option
.
text
}}
</ion-select-option>
</ion-select>
</div>
...
...
@@ -32,6 +33,7 @@ import { ViewOpenService } from '../../utils/view-open-service/view-open-service
}
})
export
default
class
AppSelectDropDown
extends
Vue
{
/**
* 视图上下文
*
...
...
@@ -197,7 +199,8 @@ export default class AppSelectDropDown extends Vue {
* @type {string}
* @memberof AppSelectDropDown
*/
public
selectValue
=
this
.
value
;
public
selectValue
=
""
;
/**
* 视图打开服务
...
...
@@ -207,6 +210,7 @@ export default class AppSelectDropDown extends Vue {
*/
public
openService
:
ViewOpenService
=
ViewOpenService
.
getInstance
();
/**
* 获取关联数据项值
*
...
...
@@ -215,14 +219,11 @@ export default class AppSelectDropDown extends Vue {
*/
get
curvalue
()
{
if
(
this
.
value
&&
this
.
items
.
length
>
0
)
{
// 判断是否拿到表单传来的值、列表项是否加载完成
let
isIncluded
=
this
.
items
.
some
((
item
:
any
)
=>
{
return
item
.
name
===
this
.
value
});
if
(
isIncluded
)
{
if
(
this
.
valueitem
&&
this
.
items
.
every
((
item
:
any
)
=>
{
return
item
[
this
.
deKeyField
]
!=
this
.
value
}))
{
return
this
.
value
;
}
}
else
if
(
this
.
valueitem
&&
this
.
data
)
{
// 是否有配置值项
return
this
.
data
[
this
.
valueitem
];
}
return
""
;
return
this
.
value
;
}
/**
...
...
@@ -339,12 +340,14 @@ export default class AppSelectDropDown extends Vue {
* @param item
*/
public
onACSelect
(
item
:
any
):
void
{
this
.
selectValue
=
item
[
this
.
deMajorField
];
if
(
this
.
valueitem
)
{
this
.
$emit
(
'formitemvaluechange'
,
{
name
:
this
.
valueitem
,
value
:
item
[
this
.
deKeyField
]
});
let
tempvalue
=
item
[
this
.
deKeyField
]
?
item
[
this
.
deKeyField
]
:
item
.
srfkey
;
this
.
$emit
(
'formitemvaluechange'
,
{
name
:
this
.
valueitem
,
value
:
tempvalue
});
}
if
(
this
.
name
)
{
this
.
$emit
(
'formitemvaluechange'
,
{
name
:
this
.
name
,
value
:
item
[
this
.
deKeyField
]
});
let
temptext
=
item
[
this
.
deMajorField
]
?
item
[
this
.
deMajorField
]
:
item
.
srfmajortext
;
this
.
$emit
(
'formitemvaluechange'
,
{
name
:
this
.
name
,
value
:
temptext
});
}
}
...
...
@@ -355,7 +358,7 @@ export default class AppSelectDropDown extends Vue {
* @memberof AppSelectDropDown
*/
public
onSelect
(
val
:
string
)
{
let
index
=
this
.
items
.
findIndex
((
item
)
=>
Object
.
is
(
item
[
this
.
deKeyField
],
val
)
);
let
index
=
this
.
items
.
findIndex
((
item
)
=>
{
return
item
[
this
.
deKeyField
]
==
val
}
);
if
(
index
>=
0
)
{
this
.
onACSelect
(
this
.
items
[
index
]);
}
...
...
@@ -747,8 +750,7 @@ export default class AppSelectDropDown extends Vue {
* @memberof AppSelect
*/
public
change
(
value
:
any
)
{
this
.
curvalue
=
value
.
detail
.
value
;
this
.
$emit
(
"change"
,
value
.
detail
.
value
);
this
.
curvalue
=
value
.
detail
.
value
;
}
/**
...
...
@@ -759,6 +761,20 @@ export default class AppSelectDropDown extends Vue {
this
.
curvalue
=
""
;
this
.
$emit
(
'change'
,
''
)
}
/**
* open选择器
*
* @type {*}
* @memberof AppSelectDropDown
*/
public
openSelect
(){
this
.
onSearch
(
null
);
let
select
:
any
=
this
.
$refs
[
this
.
name
+
'select'
];
if
(
select
){
select
.
open
();
}
}
}
</
script
>
<
style
lang=
"less"
>
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录