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
提交
0018b63f
提交
0018b63f
编写于
8月 24, 2020
作者:
zhujiamin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
列表下拉组件 + debug全局input污染 --fix1
上级
cf5259c0
变更
5
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
133 行增加
和
3 行删除
+133
-3
app-register.ts
src/app-register.ts
+2
-0
app-info-list.less
src/components/app-info-list/app-info-list.less
+39
-0
app-info-list.vue
src/components/app-info-list/app-info-list.vue
+89
-0
app-mob-input.less
src/components/app-mob-input/app-mob-input.less
+2
-2
app-mob-input.vue
src/components/app-mob-input/app-mob-input.vue
+1
-1
未找到文件。
src/app-register.ts
浏览文件 @
0018b63f
...
@@ -103,5 +103,7 @@ export const AppComponents = {
...
@@ -103,5 +103,7 @@ export const AppComponents = {
// 主题切换组件
// 主题切换组件
v
.
component
(
'app-mob-select-changeTheme'
,()
=>
import
(
'@/components/app-mob-select-changeTheme/app-mob-select-changeTheme.vue'
));
v
.
component
(
'app-mob-select-changeTheme'
,()
=>
import
(
'@/components/app-mob-select-changeTheme/app-mob-select-changeTheme.vue'
));
v
.
component
(
'app-list-index'
,()
=>
import
(
'@/components/app-list-index/app-list-index.vue'
));
v
.
component
(
'app-list-index'
,()
=>
import
(
'@/components/app-list-index/app-list-index.vue'
));
// 下拉列表组件
v
.
component
(
'app-info-list'
,()
=>
import
(
'@/components/app-info-list/app-info-list.vue'
));
},
},
};
};
\ No newline at end of file
src/components/app-info-list/app-info-list.less
0 → 100644
浏览文件 @
0018b63f
.container{
width: 300px;
margin: 0 auto;
.content{
.item{
width: 100%;
height:50px;
.header{
font-size: 12px;
color: rgb(192, 186, 186);
margin-bottom: 5px;
span:nth-child(2){
margin-left: 30px;
}
}
.footer{
font-size: 13px;
font-family:Helvetica;
color:#323538;
}
margin-bottom: 30px;
}
height: 200px;
margin: 0 auto;
overflow: hidden;
transition:height 3s ease;
}
.button{
width: 300px;
height: 20px;
background-color: white;
color: #8CB4E2;
margin: 0 auto;
text-align: center;
margin-top: 15px;
padding-top: 5px;
border-top: 1px solid grey;
}
}
src/components/app-info-list/app-info-list.vue
0 → 100644
浏览文件 @
0018b63f
<
template
>
<div
class=
"container"
>
<div
class=
"content"
>
<div
v-for=
"item in infos"
:key=
"item.id"
class=
"item"
>
<div
class=
"header"
><span>
{{
item
.
time
}}
</span>
<span>
{{
item
.
method
}}
</span></div>
<div
class=
"footer"
>
{{
item
.
info
}}
</div>
</div>
</div>
<div
class=
"button"
>
<div
@
click=
"loadMore"
><span>
{{
text
}}
</span></div>
</div>
</div>
</
template
>
<
script
lang=
"ts"
>
import
{
Vue
,
Component
,
Prop
}
from
'vue-property-decorator'
;
@
Component
({
components
:
{}
})
export
default
class
AppInfoList
extends
Vue
{
/**
* 传入数据
*
* @type {Array}
* @memberof AppInfoList
*/
@
Prop
({
default
:()
=>
{
return
[
{
time
:
'2020-08-20'
,
method
:
'手动变更'
,
info
:
'胡维将状态由"实现中"修改为"已实现";将完成时间由"空"修改为"2020-08-20 14:00:31"'
},
{
time
:
'2020-08-21'
,
method
:
'自动变更'
,
info
:
'胡维将状态由"实现中"修改为"已实现";将完成时间由"空"修改为"2020-08-20 14:00:31"'
},
{
time
:
'2020-08-22'
,
method
:
'自动变更'
,
info
:
'胡维将状态由"规划中"修改为"实现中"'
},
{
time
:
'2020-08-23'
,
method
:
'手动变更'
,
info
:
'胡维将状态由"实现中"修改为"已实现";将完成时间由"空"修改为"2020-08-20 14:00:31"'
},
]}})
public
infos
=
?:
Array
<
any
>
;
/**
* 按钮文本
*
* @type {String}
* @memberof AppInfoList
*/
public
text
=
'查看更多记录'
;
/**
* 文本切换
*
* @type {Boolean}
* @memberof AppInfoList
*/
public
isShow
=
false
;
/**
* 初始个数
*
* @type {Number}
* @memberof AppInfoList
*/
public
num
=
3
;
/**
* 点击展开
*
* @returns {void}
* @memberof AppInfoList
*/
public
loadMore
():
void
{
this
.
isShow
=
!
this
.
isShow
;
this
.
text
=
this
.
isShow
?
'收起'
:
'查看更多记录'
;
let
ele
:
any
=
document
.
querySelector
(
'.content'
);
let
ite
:
any
=
document
.
querySelectorAll
(
'.item'
);
let
startHeig
:
number
=
0
;
let
endHeig
:
number
=
0
;
for
(
let
i
=
0
;
i
<=
this
.
num
;
i
++
){
startHeig
+=
ite
[
i
].
offsetHeight
}
for
(
let
i
=
0
;
i
<
ite
.
length
;
i
++
){
endHeig
+=
ite
[
i
].
offsetHeight
+
30
}
ele
.
style
.
height
=
this
.
isShow
?
endHeig
+
'px'
:
+
startHeig
+
'px'
;
}
}
</
script
>
<
style
lang=
"less"
>
@import "./app-info-list.less";
</
style
>
\ No newline at end of file
src/components/app-mob-input/app-mob-input.less
浏览文件 @
0018b63f
ion-input
{
.app-mob-input
{
--padding-end: 5px !important;
--padding-end: 5px !important;
text-align: right;
text-align: right
!important
;
--color: #969696 !important;
--color: #969696 !important;
}
}
\ No newline at end of file
src/components/app-mob-input/app-mob-input.vue
浏览文件 @
0018b63f
<
template
>
<
template
>
<ion-input
debounce=
"300"
:type=
"type"
:value=
"value"
:placeholder=
"placeholder"
@
ionChange=
"change"
@
ionBlur=
"()=>
{this.$emit('blur')}">
</ion-input>
<ion-input
class=
"app-mob-input"
debounce=
"300"
:type=
"type"
:value=
"value"
:placeholder=
"placeholder"
@
ionChange=
"change"
@
ionBlur=
"()=>
{this.$emit('blur')}">
</ion-input>
</
template
>
</
template
>
<
script
lang=
"ts"
>
<
script
lang=
"ts"
>
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录