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
提交
d0a24ebf
提交
d0a24ebf
编写于
12月 22, 2020
作者:
KK
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
app-tree
上级
adb28327
变更
2
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
70 行增加
和
1 行删除
+70
-1
app-tree.less
src/components/app-tree/app-tree.less
+12
-0
app-tree.vue
src/components/app-tree/app-tree.vue
+58
-1
未找到文件。
src/components/app-tree/app-tree.less
浏览文件 @
d0a24ebf
...
...
@@ -61,4 +61,16 @@
}
}
}
.ok_button{
position: absolute;
width: 60px;
margin: 13px;
padding: 7px;
background: red;
text-align: center;
color: #fff;
border-radius: 4px;
bottom: 0;
right: 0;
}
}
\ No newline at end of file
src/components/app-tree/app-tree.vue
浏览文件 @
d0a24ebf
<
template
>
<ion-page
:className=
"
{ 'view-container': true, 'default-mode-view': true, 'demobeditview': true, 'ibz-daily-daily-create-mob-edit-view': true }">
<ion-header>
<ion-toolbar
v-show=
"titleStatus"
class=
"ionoc-view-header"
>
<ion-buttons
slot=
"start"
>
<ion-button
@
click=
"closeView"
>
<ion-icon
name=
"chevron-back"
></ion-icon>
{{
$t
(
'app.button.back'
)
}}
</ion-button>
</ion-buttons>
<ion-title
class=
"view-title"
><label
class=
"title-label"
>
选择
</label></ion-title>
</ion-toolbar>
</ion-header>
<div
class=
"app-tree"
>
<div
class=
"app-mob-treeview sysemployee-tree"
>
<div
class=
"treeNav"
>
...
...
@@ -16,9 +28,10 @@
</ion-item>
</
template
>
</ion-list>
<div
@
click=
"on_ok_click"
>
确认
</div>
<div
class=
"ok_button"
@
click=
"on_ok_click"
>
确认
</div>
</div>
</div>
</ion-page>
</template>
<
script
lang=
"ts"
>
import
{
Vue
,
Component
,
Prop
,
Watch
,
}
from
"vue-property-decorator"
;
...
...
@@ -27,6 +40,7 @@ import { Vue, Component, Prop, Watch, } from "vue-property-decorator";
components
:
{},
})
export
default
class
AppTree
extends
Vue
{
/**
* 选择项
*
...
...
@@ -38,8 +52,10 @@ export default class AppTree extends Vue {
@
Prop
()
public
_viewparams
?:
string
;
@
Watch
(
'_viewparams'
,
{
immediate
:
true
})
on__viewparams_change
(
newVale
:
any
,
oldVal
:
any
)
{
const
data
=
JSON
.
parse
(
newVale
);
const
_this
:
any
=
this
;
for
(
let
index
=
0
;
index
<
Object
.
keys
(
data
).
length
;
index
++
)
{
...
...
@@ -62,6 +78,20 @@ export default class AppTree extends Vue {
*/
public
cacheValue
:
any
=
[];
public
titleStatus
:
boolean
=
true
;
/**
* 设置工具栏状态
*
* @memberof IbzDailyDailyCreateMobEditViewBase
*/
public
setViewTitleStatus
(){
const
thirdPartyName
=
this
.
$store
.
getters
.
getThirdPartyName
();
if
(
thirdPartyName
){
this
.
titleStatus
=
false
;
}
}
/**
* 当前选中值
*
...
...
@@ -261,6 +291,33 @@ export default class AppTree extends Vue {
public
on_ok_click
()
{
this
.
$emit
(
'close'
,
JSON
.
parse
(
JSON
.
stringify
(
this
.
curValue
)));
}
public
mounted
(){
this
.
thirdPartyInit
();
}
public
created
(){
this
.
setViewTitleStatus
();
}
/**
* 第三方容器初始化
*
* @memberof IbzDailyDailyCreateMobEditViewBase
*/
protected
thirdPartyInit
(){
this
.
$viewTool
.
setViewTitleOfThirdParty
(
'选择'
);
this
.
$viewTool
.
setThirdPartyEvent
(
this
.
closeView
);
}
/**
* on_ok_click
*/
public
closeView
()
{
this
.
$emit
(
'close'
);
}
}
</
script
>
<
style
lang =
"less"
>
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录