Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
VueElementTemplate
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
JIRA
JIRA
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
黄瑜
VueElementTemplate
Commits
14ff09a4
Commit
14ff09a4
authored
Sep 16, 2017
by
lei.jiang
Committed by
花裤衩
Sep 25, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改MDinput组件
1.使之能兼容elementui的表单验证功能 2.增加icon属性,能够使用elementui的图标 3.优化显示效果
parent
a14547aa
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
265 additions
and
268 deletions
+265
-268
index.vue
src/components/MDinput/index.vue
+265
-268
No files found.
src/components/MDinput/index.vue
View file @
14ff09a4
<
template
>
<div
class=
"material-input__component"
:class=
"computedClasses"
>
<input
v-if=
"type === 'email'"
type=
"email"
class=
"material-input"
:name=
"name"
:id=
"id"
:placeholder=
"placeholder"
v-model=
"valueCopy"
:readonly=
"readonly"
:disabled=
"disabled"
:autocomplete=
"autocomplete"
:required=
"required"
@
focus=
"handleFocus(true)"
@
blur=
"handleFocus(false)"
@
input=
"handleModelInput"
>
<input
v-if=
"type === 'url'"
type=
"url"
class=
"material-input"
:name=
"name"
:id=
"id"
:placeholder=
"placeholder"
v-model=
"valueCopy"
:readonly=
"readonly"
:disabled=
"disabled"
:autocomplete=
"autocomplete"
:required=
"required"
@
focus=
"handleFocus(true)"
@
blur=
"handleFocus(false)"
@
input=
"handleModelInput"
>
<input
v-if=
"type === 'number'"
type=
"number"
class=
"material-input"
:name=
"name"
:id=
"id"
:placeholder=
"placeholder"
v-model=
"valueCopy"
:readonly=
"readonly"
:disabled=
"disabled"
:autocomplete=
"autocomplete"
:max=
"max"
:min=
"min"
:minlength=
"minlength"
:maxlength=
"maxlength"
:required=
"required"
@
focus=
"handleFocus(true)"
@
blur=
"handleFocus(false)"
@
input=
"handleModelInput"
>
<input
v-if=
"type === 'password'"
type=
"password"
class=
"material-input"
:name=
"name"
:id=
"id"
:placeholder=
"placeholder"
v-model=
"valueCopy"
:readonly=
"readonly"
:disabled=
"disabled"
:autocomplete=
"autocomplete"
:max=
"max"
:min=
"min"
:required=
"required"
@
focus=
"handleFocus(true)"
@
blur=
"handleFocus(false)"
@
input=
"handleModelInput"
>
<input
v-if=
"type === 'tel'"
type=
"tel"
class=
"material-input"
:name=
"name"
:id=
"id"
:placeholder=
"placeholder"
v-model=
"valueCopy"
:readonly=
"readonly"
:disabled=
"disabled"
:autocomplete=
"autocomplete"
:required=
"required"
@
focus=
"handleFocus(true)"
@
blur=
"handleFocus(false)"
@
input=
"handleModelInput"
>
<input
v-if=
"type === 'text'"
type=
"text"
class=
"material-input"
:name=
"name"
:id=
"id"
:placeholder=
"placeholder"
v-model=
"valueCopy"
:readonly=
"readonly"
:disabled=
"disabled"
:autocomplete=
"autocomplete"
:minlength=
"minlength"
:maxlength=
"maxlength"
:required=
"required"
@
focus=
"handleFocus(true)"
@
blur=
"handleFocus(false)"
@
input=
"handleModelInput"
>
<div
:class=
"
{iconClass:icon}">
<i
class=
"el-input__icon material-input__icon"
:class=
"['el-icon-' + icon]"
v-if=
"icon"
></i>
<input
v-if=
"type === 'email'"
type=
"email"
class=
"material-input"
:name=
"name"
:placeholder=
"fillPlaceHolder"
v-model=
"currentValue"
:readonly=
"readonly"
:disabled=
"disabled"
:autoComplete=
"autoComplete"
:required=
"required"
@
focus=
"handleMdFocus"
@
blur=
"handleMdBlur"
@
input=
"handleModelInput"
>
<input
v-if=
"type === 'url'"
type=
"url"
class=
"material-input"
:name=
"name"
:placeholder=
"fillPlaceHolder"
v-model=
"currentValue"
:readonly=
"readonly"
:disabled=
"disabled"
:autoComplete=
"autoComplete"
:required=
"required"
@
focus=
"handleMdFocus"
@
blur=
"handleMdBlur"
@
input=
"handleModelInput"
>
<input
v-if=
"type === 'number'"
type=
"number"
class=
"material-input"
:name=
"name"
:placeholder=
"fillPlaceHolder"
v-model=
"currentValue"
:step=
"step"
:readonly=
"readonly"
:disabled=
"disabled"
:autoComplete=
"autoComplete"
:max=
"max"
:min=
"min"
:minlength=
"minlength"
:maxlength=
"maxlength"
:required=
"required"
@
focus=
"handleMdFocus"
@
blur=
"handleMdBlur"
@
input=
"handleModelInput"
>
<input
v-if=
"type === 'password'"
type=
"password"
class=
"material-input"
:name=
"name"
:placeholder=
"fillPlaceHolder"
v-model=
"currentValue"
:readonly=
"readonly"
:disabled=
"disabled"
:autoComplete=
"autoComplete"
:max=
"max"
:min=
"min"
:required=
"required"
@
focus=
"handleMdFocus"
@
blur=
"handleMdBlur"
@
input=
"handleModelInput"
>
<input
v-if=
"type === 'tel'"
type=
"tel"
class=
"material-input"
:name=
"name"
:placeholder=
"fillPlaceHolder"
v-model=
"currentValue"
:readonly=
"readonly"
:disabled=
"disabled"
:autoComplete=
"autoComplete"
:required=
"required"
@
focus=
"handleMdFocus"
@
blur=
"handleMdBlur"
@
input=
"handleModelInput"
>
<input
v-if=
"type === 'text'"
type=
"text"
class=
"material-input"
:name=
"name"
:placeholder=
"fillPlaceHolder"
v-model=
"currentValue"
:readonly=
"readonly"
:disabled=
"disabled"
:autoComplete=
"autoComplete"
:minlength=
"minlength"
:maxlength=
"maxlength"
:required=
"required"
@
focus=
"handleMdFocus"
@
blur=
"handleMdBlur"
@
input=
"handleModelInput"
>
<span
class=
"material-input-bar"
></span>
<label
class=
"material-label"
>
<slot></slot>
</label>
<div
v-if=
"errorMessages"
class=
"material-errors"
>
<div
v-for=
"error in computedErrors"
class=
"material-error"
:key=
'error'
>
{{
error
}}
</div>
</div>
</div>
</
template
>
<
script
>
// source:https://github.com/wemake-services/vue-material-input/blob/master/src/components/MaterialInput.vue
export
default
{
name
:
'material-input'
,
export
default
{
name
:
'md-input'
,
computed
:
{
computedErrors
()
{
return
typeof
this
.
errorMessages
===
'string'
?
[
this
.
errorMessages
]
:
this
.
errorMessages
},
computedClasses
()
{
return
{
'material--active'
:
this
.
focus
,
'material--disabled'
:
this
.
disabled
,
'material--has-errors'
:
Boolean
(
!
this
.
valid
||
(
this
.
errorMessages
&&
this
.
errorMessages
.
length
)),
'material--raised'
:
Boolean
(
this
.
focus
||
this
.
valueCopy
||
// has value
(
this
.
placeholder
&&
!
this
.
valueCopy
))
// has placeholder
'material--raised'
:
Boolean
(
this
.
focus
||
this
.
currentValue
)
// has value
}
}
},
data
()
{
return
{
valueCopy
:
null
,
currentValue
:
this
.
value
,
focus
:
false
,
valid
:
true
fillPlaceHolder
:
null
}
},
beforeMount
()
{
// Here we are following the Vue2 convention on custom v-model:
// https://github.com/vuejs/vue/issues/2873#issuecomment-223759341
this
.
copyValue
(
this
.
value
)
},
methods
:
{
handleModelInput
(
event
)
{
this
.
$emit
(
'input'
,
event
.
target
.
value
,
event
)
this
.
handleValidation
()
},
handleFocus
(
focused
)
{
this
.
focus
=
focused
},
handleValidation
()
{
this
.
valid
=
this
.
$el
?
this
.
$el
.
querySelector
(
'.material-input'
).
validity
.
valid
:
this
.
valid
const
value
=
event
.
target
.
value
this
.
$emit
(
'input'
,
value
)
if
(
this
.
$parent
.
$options
.
componentName
===
'ElFormItem'
)
{
if
(
this
.
validateEvent
)
{
this
.
$parent
.
$emit
(
'el.form.change'
,
[
value
])
}
}
this
.
$emit
(
'change'
,
value
)
// this.handleValidation()
},
copyValue
(
value
)
{
this
.
valueCopy
=
value
this
.
handleValidation
()
handleMdFocus
(
event
)
{
this
.
focus
=
true
this
.
$emit
(
'focus'
,
event
)
if
(
this
.
placeholder
&&
this
.
placeholder
!==
''
)
{
this
.
fillPlaceHolder
=
this
.
placeholder
}
},
watch
:
{
value
(
newValue
)
{
this
.
copyValue
(
newValue
)
handleMdBlur
(
event
)
{
this
.
focus
=
false
this
.
$emit
(
'blur'
,
event
)
this
.
fillPlaceHolder
=
null
if
(
this
.
$parent
.
$options
.
componentName
===
'ElFormItem'
)
{
if
(
this
.
validateEvent
)
{
this
.
$parent
.
$emit
(
'el.form.blur'
,
[
this
.
currentValue
])
}
}
}
},
props
:
{
id
:
{
type
:
String
,
default
:
null
},
name
:
{
type
:
String
,
default
:
null
},
icon
:
String
,
name
:
String
,
type
:
{
type
:
String
,
default
:
'text'
},
value
:
{
default
:
null
},
placeholder
:
{
type
:
String
,
default
:
null
},
readonly
:
{
type
:
Boolean
,
default
:
false
},
disabled
:
{
type
:
Boolean
,
default
:
false
},
min
:
{
type
:
String
,
default
:
null
},
max
:
{
type
:
String
,
default
:
null
},
minlength
:
{
type
:
Number
,
default
:
null
},
maxlength
:
{
type
:
Number
,
default
:
null
},
value
:
[
String
,
Number
],
placeholder
:
String
,
readonly
:
Boolean
,
disabled
:
Boolean
,
min
:
String
,
max
:
String
,
step
:
String
,
minlength
:
Number
,
maxlength
:
Number
,
required
:
{
type
:
Boolean
,
default
:
true
},
autoc
omplete
:
{
autoC
omplete
:
{
type
:
String
,
default
:
'off'
},
errorMessages
:
{
type
:
[
Array
,
String
],
default
:
null
validateEvent
:
{
type
:
Boolean
,
default
:
true
}
}
}
}
</
script
>
<
style
rel=
"stylesheet/scss"
lang=
"scss"
scoped
>
...
...
@@ -150,9 +135,20 @@ export default {
$font-size-small
:
18px
;
$font-size-smallest
:
12px
;
$font-weight-normal
:
normal
;
$font-weight-bold
:
bold
;
$apixel
:
1px
;
// Utils
$spacer
:
12px
;
$transition
:
0
.2s
ease
all
;
$index
:
0px
;
$index-has-icon
:
30px
;
// Theme:
$color-white
:
white
;
$color-grey
:
#9E9E9E
;
$color-grey-light
:
#E0E0E0
;
$color-blue
:
#2196F3
;
$color-red
:
#F44336
;
$color-black
:
black
;
// Base clases:
%base-bar-pseudo
{
content
:
''
;
...
...
@@ -165,23 +161,45 @@ export default {
// Mixins:
@mixin
slided-top
()
{
top
:
-2
*
$spacer
;
font-size
:
$font-size-small
;
top
:
-
(
$font-size-base
+
$spacer
);
left
:
0
;
font-size
:
$font-size-base
;
font-weight
:
$font-weight-bold
;
}
// Component:
.material-input__component
{
/*margin-top: 30px;*/
margin-top
:
36px
;
position
:
relative
;
*
{
box-sizing
:
border-box
;
}
.iconClass
{
.material-input__icon
{
position
:
absolute
;
left
:
0
;
color
:
$color-blue
;
top
:
$spacer
;
width
:
$index-has-icon
;
height
:
$font-size-base
;
font-size
:
$font-size-base
;
font-weight
:
$font-weight-normal
;
pointer-events
:
none
;
}
.material-label
{
left
:
$index-has-icon
;
}
.material-input
{
text-indent
:
$index-has-icon
;
}
}
.material-input
{
font-size
:
$font-size-base
;
padding
:
$spacer
$spacer
$spacer
$spacer
/
2
;
padding
:
$spacer
$spacer
$spacer
-
$apixel
*
10
$spacer
/
2
;
display
:
block
;
width
:
100%
;
border
:
none
;
line-height
:
1
;
border-radius
:
0
;
&
:focus
{
outline
:
none
;
...
...
@@ -190,13 +208,13 @@ export default {
}
}
.material-label
{
font-size
:
$font-size-base
;
font-weight
:
$font-weight-normal
;
position
:
absolute
;
pointer-events
:
none
;
left
:
0
;
top
:
$spacer
;
left
:
$index
;
top
:
0
;
transition
:
$transition
;
font-size
:
$font-size-small
;
}
.material-input-bar
{
position
:
relative
;
...
...
@@ -232,35 +250,14 @@ export default {
}
}
}
// Errors:
.material-errors
{
position
:
relative
;
overflow
:
hidden
;
.material-error
{
font-size
:
$font-size-smallest
;
line-height
:
$font-size-smallest
+
2px
;
overflow
:
hidden
;
margin-top
:
0
;
padding-top
:
$spacer
/
2
;
padding-right
:
$spacer
/
2
;
padding-left
:
0
;
}
}
}
// Theme:
$color-white
:
white
;
$color-grey
:
#9E9E9E
;
$color-grey-light
:
#E0E0E0
;
$color-blue
:
#2196F3
;
$color-red
:
#F44336
;
$color-black
:
black
;
.material-input__component
{
background
:
$color-white
;
.material-input
{
background
:
none
;
color
:
$color-black
;
text-indent
:
30p
x
;
text-indent
:
$inde
x
;
border-bottom
:
1px
solid
$color-grey-light
;
}
.material-label
{
...
...
@@ -286,12 +283,12 @@ export default {
.material-input-bar
{
&
:before
,
&
:after
{
background
:
$color-red
;
background
:
transparent
;
}
}
.material-errors
{
/*
.material-errors {
color: $color-red;
}
}
*/
}
}
</
style
>
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