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
提交
f6476768
提交
f6476768
编写于
12月 21, 2020
作者:
RedPig97
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
新增单位选择器组件
上级
57ef2ba0
变更
2
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
81 行增加
和
14 行删除
+81
-14
app-mob-org-select.less
src/components/app-mob-org-select/app-mob-org-select.less
+15
-8
app-mob-org-select.vue
src/components/app-mob-org-select/app-mob-org-select.vue
+66
-6
未找到文件。
src/components/app-mob-org-select/app-mob-org-select.less
浏览文件 @
f6476768
.app-mob-org-select {
width: 100%;
.el-input__inner{
height: 32px !important;
line-height: 32px !important;
}
.el-input__icon{
line-height: 32px;
}
width: 100%;
height: 43px;
position: relative;
.app-tree{
position: absolute;
}
svg{
font-size: 5px;
position: absolute;
right: 3px;
top: 13px;
}
.sc-ion-input-ios-h{
position: absolute;
}
}
\ No newline at end of file
src/components/app-mob-org-select/app-mob-org-select.vue
浏览文件 @
f6476768
<
template
>
<div
class=
"app-mob-org-select"
>
<ibiz-select-tree
:NodesData=
"NodesData"
v-model=
"selectTreeValue"
:disabled=
"disabled"
:multiple=
"multiple"
@
select=
"treeSelectChange"
></ibiz-select-tree>
<ion-input
:disabled=
"disabled"
:value=
"data[fillMap.label]"
readonly
@
click=
"openView"
>
<svg
t=
"1608543874255"
class=
"icon"
viewBox=
"0 0 1165 1024"
version=
"1.1"
xmlns=
"http://www.w3.org/2000/svg"
p-id=
"2970"
width=
"200"
height=
"200"
><path
d=
"M1107.30913719 909.45959375l-186.86323313-145.37686875a479.97811781 479.97811781 0 1 0-69.42107062 87.6783975q13.80107531-13.80107531 26.30518125-28.51668l185.08405875 143.96350594a36.58116281 36.58116281 0 1 0 44.89506375-57.73172719z m-594.79308657 9.37807969c-223.66055812 0-405.63521719-181.95803156-405.63521718-405.63521719S288.80560906 107.56723906 512.46616719 107.56723906 918.10138437 289.59178156 918.10138437 513.20245625 736.14335281 918.83767344 512.46616719 918.83767344z"
fill=
"#474747"
p-id=
"2971"
></path></svg>
</ion-input>
</div>
</
template
>
<
script
lang =
'ts'
>
...
...
@@ -9,7 +11,6 @@ import {CodeListService} from "@/ibiz-core";
import
{
observable
}
from
'rxjs'
;
@
Component
({})
export
default
class
AppMobOrgSelect
extends
Vue
{
/**
* 表单数据
*
...
...
@@ -106,7 +107,15 @@ export default class AppMobOrgSelect extends Vue {
*
* @memberof AppMobOrgSelect
*/
public
NodesData
:
any
=
[];
public
nodesData
:
any
=
[];
/**
* 选中项集合
*
* @type {*}
* @memberof AppMobGroupSelect
*/
protected
selects
:
any
[]
=
[];
/**
* 备份过滤值
...
...
@@ -126,6 +135,57 @@ export default class AppMobOrgSelect extends Vue {
}
}
/**
* 单选时选中名称
*
* @type {*}
* @memberof AppMobGroupSelect
*/
get
selectName
()
{
if
(
this
.
selects
.
length
>
0
)
{
return
this
.
selects
[
0
].
label
;
}
}
/**
* 打开选择视图
*
* @type {*}
* @memberof AppMobGroupSelect
*/
public
async
openView
()
{
const
view
:
any
=
{
viewname
:
'app-tree'
,
title
:
(
this
.
$t
(
'components.AppMobOrgSelect.orgSelect'
)
as
string
)
};
const
context
:
any
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
));
const
param
:
any
=
{};
Object
.
assign
(
param
,
{
selectTreeValue
:
this
.
selectTreeValue
,
multiple
:
this
.
multiple
,
nodesData
:
this
.
nodesData
});
this
.
$appmodal
.
openModal
(
view
,
context
,
param
).
then
((
result
)
=>
{
this
.
viewClose
(
result
);
});
}
/**
* 选择视图关闭
*
* @type {*}
* @memberof AppMobGroupSelect
*/
public
viewClose
(
result
:
any
)
{
let
treeValue
:
any
[]
=
[];
result
.
datas
.
forEach
((
item
:
any
)
=>
{
treeValue
.
push
(
item
.
label
);
});
let
stringVal
:
string
=
treeValue
.
join
(
','
);
this
.
$emit
(
"select-change"
,{
name
:
this
.
fillMap
.
label
,
value
:
stringVal
});
}
/**
* 加载树数据
*
...
...
@@ -220,16 +280,16 @@ export default class AppMobOrgSelect extends Vue {
if
(
this
.
filter
){
const
result
:
any
=
this
.
$store
.
getters
.
getOrgData
(
this
.
filter
);
if
(
result
){
this
.
N
odesData
=
result
;
this
.
n
odesData
=
result
;
return
;
}
}
Http
.
getInstance
()
.
get
(
requestUrl
).
then
((
res
:
any
)
=>
{
this
.
$http
.
get
(
requestUrl
).
then
((
res
:
any
)
=>
{
if
(
!
res
.
status
&&
res
.
status
!==
200
){
console
.
error
((
this
.
$t
(
'components.AppMobOrgSelect.loadFail'
)
as
string
));
return
;
}
this
.
N
odesData
=
res
.
data
;
this
.
n
odesData
=
res
.
data
;
if
(
this
.
filter
){
this
.
$store
.
commit
(
'addOrgData'
,
{
srfkey
:
this
.
filter
,
orgData
:
res
.
data
});
}
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录