Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-app
提交
7a190fe3
U
uni-app
项目概览
DCloud
/
uni-app
4 个月 前同步成功
通知
731
Star
38707
Fork
3642
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
7
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-app
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
7
Issue
7
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
7a190fe3
编写于
8月 08, 2019
作者:
S
st-dc
提交者:
d-u-a
8月 08, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Create checkbox.js
add checkbox.js
上级
6998cbca
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
170 addition
and
0 deletion
+170
-0
src/platforms/app-plus-nvue/runtime/components/checkbox.js
src/platforms/app-plus-nvue/runtime/components/checkbox.js
+170
-0
未找到文件。
src/platforms/app-plus-nvue/runtime/components/checkbox.js
0 → 100644
浏览文件 @
7a190fe3
import
{
emitter
,
listeners
}
from
'
../mixins
'
function
getCheckbox
(
weex
)
{
return
{
name
:
'
Checkbox
'
,
mixins
:
[
emitter
,
listeners
],
props
:
{
checked
:
{
type
:
[
Boolean
,
String
],
default
:
false
},
id
:
{
type
:
String
,
default
:
''
},
disabled
:
{
type
:
[
Boolean
,
String
],
default
:
false
},
color
:
{
type
:
String
,
default
:
'
#007aff
'
},
value
:
{
type
:
String
,
default
:
''
}
},
data
()
{
return
{
checkboxChecked
:
this
.
checked
,
checkboxValue
:
this
.
value
}
},
watch
:
{
checked
:
function
checked
(
val
)
{
this
.
checkboxChecked
=
val
},
value
:
function
value
(
val
)
{
this
.
checkboxValue
=
val
}
},
listeners
:
{
'
label-click
'
:
'
_onClick
'
,
'
@label-click
'
:
'
_onClick
'
},
computed
:
{
checkboxColor
:
function
checkboxColor
()
{
return
this
.
disabled
?
'
#adadad
'
:
this
.
color
}
},
created
()
{
this
.
$dispatch
(
'
CheckboxGroup
'
,
'
uni-checkbox-group-update
'
,
{
type
:
'
add
'
,
vm
:
this
})
this
.
$dispatch
(
'
Form
'
,
'
uni-form-group-update
'
,
{
type
:
'
add
'
,
vm
:
this
})
},
beforeDestroy
()
{
this
.
$dispatch
(
'
CheckboxGroup
'
,
'
uni-checkbox-group-update
'
,
{
type
:
'
remove
'
,
vm
:
this
})
this
.
$dispatch
(
'
Form
'
,
'
uni-form-group-update
'
,
{
type
:
'
remove
'
,
vm
:
this
})
},
methods
:
{
_onClick
(
$event
)
{
if
(
this
.
disabled
)
return
this
.
checkboxChecked
=
!
this
.
checkboxChecked
this
.
$dispatch
(
'
CheckboxGroup
'
,
'
uni-checkbox-change
'
,
$event
)
},
_resetFormData
()
{
this
.
checkboxChecked
=
false
}
},
beforeCreate
()
{
},
render
(
createElement
)
{
const
_vm
=
this
return
createElement
(
'
div
'
,
_vm
.
_g
({},
_vm
.
$listeners
),
[
createElement
(
'
div
'
,
{
staticClass
:
[
'
uni-checkbox
'
]
},
[
createElement
(
'
div
'
,
{
staticClass
:
[
'
uni-checkbox-input
'
],
class
:
[
_vm
.
disabled
?
'
uni-checkbox-input-disabled
'
:
''
]
},
[
_vm
.
checkboxChecked
?
createElement
(
'
u-text
'
,
{
staticClass
:
[
'
uni-icon
'
],
style
:
{
color
:
_vm
.
checkboxColor
}
},
[
_vm
.
_v
(
_vm
.
_s
(
'
\
uEA08
'
))]
)
:
_vm
.
_e
()
]
),
createElement
(
'
u-text
'
,
{
staticClass
:
[
'
uni-slot
'
]
},
[
_vm
.
_t
(
'
default
'
)],
2
)
]
)
])
},
style
:
{
'
uni-checkbox
'
:
{
flexDirection
:
'
row
'
,
alignItems
:
'
center
'
},
'
uni-checkbox-input
'
:
{
justifyContent
:
'
center
'
,
alignItems
:
'
center
'
,
position
:
'
relative
'
,
borderWidth
:
'
1
'
,
borderColor
:
'
#d1d1d1
'
,
borderStyle
:
'
solid
'
,
backgroundColor
:
'
#ffffff
'
,
borderRadius
:
'
3
'
,
width
:
'
22
'
,
height
:
'
22
'
},
'
uni-icon
'
:
{
fontFamily
:
'
unincomponents
'
,
fontSize
:
'
16
'
,
marginLeft
:
'
2
'
,
marginTop
:
'
2
'
,
color
:
'
#007aff
'
},
'
uni-checkbox-input-disabled
'
:
{
backgroundColor
:
'
#e1e1e1
'
},
'
uni-checkbox-input-disabled-before
'
:
{
color
:
'
#adadad
'
},
'
uni-slot
'
:
{
fontSize
:
'
16
'
,
marginLeft
:
'
5
'
},
'
uni-checkbox-group
'
:
{
display
:
'
block
'
}
}
}
}
export
default
function
init
(
Vue
,
weex
)
{
Vue
.
component
(
'
checkbox
'
,
getCheckbox
(
weex
))
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录