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
2f60ffcd
Commit
2f60ffcd
authored
Jun 02, 2021
by
Hello
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
switch组件样式冲突修改
parent
2030e2cf
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
58 additions
and
103 deletions
+58
-103
package.json
package.json
+1
-1
ionic.less
packages/common/styles/ionic.less
+16
-16
Item.vue
packages/components/ListItem/Item.vue
+0
-57
README.md
packages/components/Select/README.md
+31
-0
index.vue
packages/components/Switch/index.vue
+8
-26
hlsPopup.vue
src/pages/hlsPopup.vue
+1
-1
index.js
src/router/index.js
+1
-2
No files found.
package.json
View file @
2f60ffcd
{
"name"
:
"hls-easy-ui"
,
"version"
:
"0.0.
6
"
,
"version"
:
"0.0.
7
"
,
"description"
:
"A Vue components project"
,
"author"
:
"JingChao <jingchao.wu@hand-china.com>"
,
"private"
:
false
,
...
...
packages/common/styles/ionic.less
View file @
2f60ffcd
...
...
@@ -4967,14 +4967,14 @@ input:checked + .checkbox-icon:before {
position: relative;
display: inline-block;
pointer-events: auto;
margin: -2.5px;
padding: 2.5px;
//
margin: -2.5px;
//
padding: 2.5px;
}
.toggle input:checked + .track {
/*
.toggle input:checked + .track {
border-color: #4cd964;
background-color: #4cd964;
}
}
*/
.toggle.dragging .handle {
background-color: #f2f2f2 !important;
...
...
@@ -4990,10 +4990,10 @@ input:checked + .checkbox-icon:before {
background-color: #b2b2b2;
}
.toggle.toggle-positive input:checked + .track {
/*
.toggle.toggle-positive input:checked + .track {
border-color: #387ef5;
background-color: #387ef5;
}
}
*/
.toggle.toggle-calm input:checked + .track {
border-color: #11c1f3;
...
...
@@ -5039,8 +5039,8 @@ input:checked + .checkbox-icon:before {
transition-property: background-color, border;
display: inline-block;
box-sizing: border-box;
width:
51
px;
height:
31
px;
width:
40
px;
height:
23
px;
border: solid 1px #e6e6e6; /*no*/
border-radius: 20px;
background-color: #fff;
...
...
@@ -5064,20 +5064,20 @@ input:checked + .checkbox-icon:before {
transition-property: background-color, transform;
position: absolute;
display: block;
width: 2
7
px;
height: 2
7
px;
border-radius: 2
7
px;
width: 2
1
px;
height: 2
1
px;
border-radius: 2
1
px;
background-color: #fff;
top:
7
px;
left:
7
px;
top:
1
px;
left:
1
px;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35), 0 1px 1px rgba(0, 0, 0, 0.15);
}
.toggle .handle:before {
position: absolute;
top: -1px;
left: -22px;
padding: 18px 34px;
//
top: -1px;
//
left: -22px;
//
padding: 18px 34px;
content: " ";
}
...
...
packages/components/ListItem/Item.vue
View file @
2f60ffcd
...
...
@@ -209,64 +209,7 @@ export default {
margin-left: 5px;
height: 10px;
}
//toggle
.toggle-check {
display: -webkit-flex;
display: flex;
-webkit-justify-content: space-between;
justify-content: space-between;
-webkit-align-items: center;
align-items: center;
.track {
width: 40px;
height: 25px;
margin-right: 2.5px;
border-radius: 15px;
.handle {
width: 22.5px;
height: 22.5px;
top: 3.5px;
left: 2.5px;
}
}
}
.toggle.toggle-positive input:checked + .track {
border-color: @switch-box-bg;
background-color: @switch-box-bg;
.handle {
width: 22.5px;
height: 22.5px;
top: 3.5px;
left: 9px;
}
}
}
}
}
@media (device-width: 320px) and (device-height: 568px) {
.hls-item{
.contents{
.add-content{
.toggle-check {
.track {
.handle{
top:4px
}
}
}
.toggle.toggle-positive input:checked + .track{
.handle {
top:4px
}
}
}
}
}
}
</
style
>
packages/components/Select/README.md
View file @
2f60ffcd
...
...
@@ -143,3 +143,34 @@ SelectField 下拉组建
|rightIcon|自定义下拉箭头|String|N|-|
|@onSelect|下拉框选中函数|Function|N|-|
SelectField 下拉组建
```
html
<h-select
v-model=
"sex"
look-up-code=
"HLPJ_PROPERTY_TYPE"
label=
"资产类型"
required
/>
data () {
return {
sex: 0
}
}
```
|字段名称 |字段说明 |类型 |必填 |默认 |
| ----|------|-------|------|------|
|value|当前值|string|Y|-|
|dataArray|下拉框数据源|Array|Y|-|
|multiple|是否多选|Boolean|N|false|
|disabled|是否禁用|Boolean|N|false|
|valueKey|对应数据源中的存表字端|String|N|code|
|valueName|对应数据源中的展示字端|String|N|code_name|
|label|字端名称|String|Y|-|
|required|必输|Boolean|N|false|
|proportion|字端明与字端占比|Array|N|
[
1,2
]
|
|itemHeight|字端默认高度|Number|N|45|
|hasBorder|是否有下边框|Boolean|N|true|
|showIcon|右边下拉箭头|Boolean|N|true|
|rightIcon|自定义下拉箭头|String|N|-|
|@onSelect|下拉框选中函数|Function|N|-|
|look-up-code|值集代码|String|N|-|
|lov-code|lov代码|String|N|-|
packages/components/Switch/index.vue
View file @
2f60ffcd
...
...
@@ -53,15 +53,16 @@ export default {
.track {
width: 40px;
height: 2
5
px;
margin-right: 2.5px;
border-radius:
15
px;
height: 2
3
px;
//
margin-right: 2.5px;
border-radius:
20
px;
.handle {
width: 22.5px;
height: 22.5px;
top: 3.5px;
left: 2.5px;
width: 21px;
height: 21px;
top: 1px;
left: 1px;
border-radius: 21px;
}
}
}
...
...
@@ -71,26 +72,7 @@ export default {
background-color: @switch-box-bg;
.handle {
width: 22.5px;
height: 22.5px;
top: 3.5px;
left: 9px;
}
}
@media (device-width: 320px) and (device-height: 568px) {
.toggle-check {
.track {
.handle {
top: 4px
}
}
.toggle.toggle-positive input:checked + .track {
.handle {
top: 4px
}
}
}
}
</
style
>
src/pages/hlsPopup.vue
View file @
2f60ffcd
...
...
@@ -207,7 +207,7 @@
<item
:show-arrow=
"true"
>
<img
slot=
"left-icon"
src=
"../assets/image/warning@2x.png"
class=
"left-icon"
>
<div
slot=
"name"
>
保存照片
</div>
<label
slot=
"
righ
t"
class=
"toggle toggle-positive toggle-check"
@
click=
"savePhotoFun"
>
<label
slot=
"
conten
t"
class=
"toggle toggle-positive toggle-check"
@
click=
"savePhotoFun"
>
<input
:checked=
"savePhoto"
type=
"checkbox"
>
<div
class=
"track"
>
<div
class=
"handle"
/>
...
...
src/router/index.js
View file @
2f60ffcd
...
...
@@ -38,7 +38,7 @@ export default new Router({
{
path
:
'/demo'
,
component
:
Demo
,
name
:
'Demo'
,
meta
:
{
keepAlive
:
true
}},
{
path
:
'/home'
,
component
:
Home
,
name
:
'Home'
,
meta
:
{
keepAlive
:
false
}},
// test工具类
{
path
:
'/hls
-p
opup'
,
component
:
HlsPopup
,
name
:
'HlsPopup'
,
meta
:
{
keepAlive
:
false
}},
{
path
:
'/hls
P
opup'
,
component
:
HlsPopup
,
name
:
'HlsPopup'
,
meta
:
{
keepAlive
:
false
}},
{
path
:
'/Radio'
,
component
:
Radio
,
name
:
'Radio'
,
meta
:
{
keepAlive
:
true
}},
{
path
:
'/HFile'
,
component
:
HFile
,
name
:
'HFile'
,
meta
:
{
keepAlive
:
true
}},
{
path
:
'/Form'
,
component
:
Form
,
name
:
'Form'
,
meta
:
{
keepAlive
:
true
}},
...
...
@@ -60,7 +60,6 @@ export default new Router({
{
path
:
'/checkBox'
,
component
:
CheckBox
,
name
:
'CheckBox'
,
meta
:
{
keepAlive
:
false
}},
{
path
:
'/dateField'
,
component
:
DateField
,
name
:
'DateField'
,
meta
:
{
keepAlive
:
false
}},
],
scrollBehavior
(
to
,
from
,
savedPosition
)
{
if
(
to
.
hash
)
{
...
...
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