Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
H
hls-easy-ui
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
easyUI
hls-easy-ui
Commits
2b461f12
Commit
2b461f12
authored
Aug 23, 2019
by
JingChao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Item调整
parent
452a754d
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
13 additions
and
26 deletions
+13
-26
actionsheet.vue
packages/components/ActionSheet/actionsheet.vue
+1
-2
index.vue
packages/components/CheckBox/index.vue
+5
-5
index.vue
packages/components/HView/index.vue
+2
-2
index.vue
packages/components/ItemOption/index.vue
+0
-12
Item.vue
packages/components/ListItem/Item.vue
+2
-2
fileTest.vue
src/pages/fileTest.vue
+1
-1
form.vue
src/pages/form.vue
+1
-1
radioTest.vue
src/pages/radioTest.vue
+1
-1
No files found.
packages/components/ActionSheet/actionsheet.vue
View file @
2b461f12
...
@@ -13,7 +13,7 @@
...
@@ -13,7 +13,7 @@
v-text="b.text"/>
v-text="b.text"/>
</div>
</div>
<div
class=
"action-sheet-group action-sheet-cancel"
>
<div
class=
"action-sheet-group action-sheet-cancel"
>
<div
class=
"
ng-binding
action-sheet-option"
style=
"border:none"
@
click=
"hide(-1)"
>
取消
</div>
<div
class=
"action-sheet-option"
style=
"border:none"
@
click=
"hide(-1)"
>
取消
</div>
</div>
</div>
</div>
</div>
</div>
</div>
...
@@ -65,7 +65,6 @@
...
@@ -65,7 +65,6 @@
}
}
}
}
}
}
}
}
.action-sheet-backdrop {
.action-sheet-backdrop {
...
...
packages/components/CheckBox/index.vue
View file @
2b461f12
...
@@ -56,13 +56,13 @@ export default {
...
@@ -56,13 +56,13 @@ export default {
padding: 5px 5px;
padding: 5px 5px;
input {
input {
width: 2
4
px;
width: 2
2
px;
height: 2
4
px;
height: 2
2
px;
border-radius: 1
2
px;
border-radius: 1
1
px;
&:after {
&:after {
top: 3
0
%;
top: 3
2
%;
left: 2
2
%;
left: 2
0
%;
opacity: 1;
opacity: 1;
border-width: 2px; /*no*/
border-width: 2px; /*no*/
}
}
...
...
packages/components/HView/index.vue
View file @
2b461f12
...
@@ -35,10 +35,10 @@ export default {
...
@@ -35,10 +35,10 @@ export default {
document
.
title
=
this
.
title
document
.
title
=
this
.
title
}
}
},
},
activated
(){
activated
()
{
if
(
this
.
title
)
{
if
(
this
.
title
)
{
document
.
title
=
this
.
title
document
.
title
=
this
.
title
}
}
},
},
created
()
{
created
()
{
this
.
fullScreen
&&
detectOS
()
===
'ios'
&&
(
this
.
isIos
=
true
)
this
.
fullScreen
&&
detectOS
()
===
'ios'
&&
(
this
.
isIos
=
true
)
...
...
packages/components/ItemOption/index.vue
View file @
2b461f12
...
@@ -8,8 +8,6 @@
...
@@ -8,8 +8,6 @@
<slot/>
<slot/>
</div>
</div>
<slot
name=
"buttons"
/>
<slot
name=
"buttons"
/>
<!--
<div
class=
"function edit"
@
click=
"myEdit"
v-if=
"showEdit"
>
{{
editText
}}
</div>
<div
class=
"function delete"
@
click=
"myDelete"
v-if=
"showDelete"
>
{{
deleteText
}}
</div>
-->
</div>
</div>
</div>
</div>
</
template
>
</
template
>
...
@@ -21,8 +19,6 @@ export default {
...
@@ -21,8 +19,6 @@ export default {
name
:
'ItemOption'
,
name
:
'ItemOption'
,
components
:
{
optionButton
},
components
:
{
optionButton
},
props
:
{
props
:
{
showDelete
:
Boolean
,
showEdit
:
Boolean
,
deleteText
:
{
deleteText
:
{
type
:
String
,
type
:
String
,
default
:
'删除'
,
default
:
'删除'
,
...
@@ -65,14 +61,6 @@ export default {
...
@@ -65,14 +61,6 @@ export default {
this
.
init
()
this
.
init
()
},
},
methods
:
{
methods
:
{
myDelete
()
{
this
.
$emit
(
'deleteFun'
)
this
.
$refs
.
item
.
style
.
transform
=
'translate3d(0px,0px,0px)'
},
myEdit
()
{
this
.
$emit
(
'editFun'
)
this
.
$refs
.
item
.
style
.
transform
=
'translate3d(0px,0px,0px)'
},
touchStart
(
ev
)
{
touchStart
(
ev
)
{
this
.
$refs
.
item
.
style
.
transform
=
'translate3d(0px,0px,0px)'
this
.
$refs
.
item
.
style
.
transform
=
'translate3d(0px,0px,0px)'
this
.
reset
()
this
.
reset
()
...
...
packages/components/ListItem/Item.vue
View file @
2b461f12
...
@@ -182,8 +182,8 @@ export default {
...
@@ -182,8 +182,8 @@ export default {
.h-checkbox{
.h-checkbox{
.checkbox {
.checkbox {
input{
input{
width: 2
4
px;
width: 2
2
px;
height: 2
4
px;
height: 2
2
px;
}
}
}
}
}
}
...
...
src/pages/fileTest.vue
View file @
2b461f12
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
*/
*/
<
template
>
<
template
>
<h-view>
<h-view
title=
"HFile"
>
<h-header>
<h-header>
<div
slot=
"left"
class=
"h-header-btn"
@
click=
"$routeGo()"
>
<div
slot=
"left"
class=
"h-header-btn"
@
click=
"$routeGo()"
>
<i
class=
"ion-ios-arrow-back"
/>
<i
class=
"ion-ios-arrow-back"
/>
...
...
src/pages/form.vue
View file @
2b461f12
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
*/
*/
<
template
>
<
template
>
<h-view
class=
"form"
>
<h-view
class=
"form"
title=
"From"
>
<h-header>
<h-header>
<div
slot=
"left"
class=
"h-header-btn"
@
click=
"$hlsExit()"
>
<div
slot=
"left"
class=
"h-header-btn"
@
click=
"$hlsExit()"
>
<i
class=
"ion-ios-arrow-back"
/>
<i
class=
"ion-ios-arrow-back"
/>
...
...
src/pages/radioTest.vue
View file @
2b461f12
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
*/
*/
<
template
>
<
template
>
<h-view>
<h-view
title=
"CheckBox"
>
<h-content>
<h-content>
<list-item>
<list-item>
<item>
<item>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment