[refactor] Switch: 升级为自定义组件 (#183)

* done

* add example

* doe
This commit is contained in:
oConner 2018-04-10 20:43:18 +08:00 committed by Yao
parent a05613403b
commit 18a071f609
4 changed files with 37 additions and 36 deletions

View File

@ -11,26 +11,27 @@ Page(Object.assign({}, Zan.Switch, {
},
},
handleZanSwitchChange(e) {
var componentId = e.componentId;
var checked = e.checked;
syncChange(e, data) {
this.setData({
sync: {
checked: data.checked
}
});
},
if (componentId == 'sync') {
// 同步开关
asyncChange(e, data) {
this.setData({
async: {
loading: true
}
});
setTimeout(() => {
this.setData({
[`${componentId}.checked`]: checked
async: {
loading: false,
checked: data.checked
}
});
} else if (componentId == 'async') {
// 异步开关
this.setData({
[`${componentId}.loading`]: true
});
setTimeout(() => {
this.setData({
[`${componentId}.loading`]: false,
[`${componentId}.checked`]: checked
});
}, 500);
}
}, 500);
}
}));

View File

@ -1,3 +1,7 @@
{
"navigationBarTitleText": "Switch 开关"
"navigationBarTitleText": "Switch 开关",
"usingComponents": {
"zan-switch": "/packages/switch/index",
"zan-panel": "/packages/panel/index"
}
}

View File

@ -4,20 +4,16 @@
<view class="doc-title zan-hairline--bottom">SWITCH</view>
<view class="zan-panel-title">同步开关</view>
<view class="zan-panel">
<template is="zan-switch" data="{{ ...sync, componentId: 'sync' }}" />
</view>
<zan-panel title='同步开关'>
<zan-switch checked="{{sync.checked}}" bind:change="syncChange" />
</zan-panel>
<view class="zan-panel-title">异步开关</view>
<view class="zan-panel">
<template is="zan-switch" data="{{ ...async, componentId: 'async' }}" />
</view>
<zan-panel title='同步开关'>
<zan-switch checked="{{async.checked}}" disabled="{{ async.disabled }}" loading="{{ async.loading }}" bind:change="asyncChange" />
</zan-panel>
<view class="zan-panel-title">开关不可用</view>
<view class="zan-panel">
<template is="zan-switch" data="{{ checked: false, disabled: true, componentId: 'switch3' }}" />
<template is="zan-switch" data="{{ checked: true, disabled: true, componentId: 'switch4' }}" />
</view>
<zan-panel title='同步开关'>
<zan-switch disabled="{{ false }}" />
</zan-panel>
</view>

View File

@ -5,13 +5,13 @@
```json
{
"usingComponents": {
"zan-switch": "/packages/Panel/panel"
"zan-switch": "/packages/switch/index"
}
}
```
### 代码演示
可以在页面任意位置上使用 zan-popup 标签。通过 show 可以控制弹窗是否展示
=======
```html
<zan-switch
disabled="{{ disabled }}"
@ -22,7 +22,7 @@
```
```js
Page(extend({}, {
Page({
data: {
field: {
disabled: false,
@ -36,7 +36,7 @@ Page(extend({}, {
console.log(event, data);
}
}
}));
});
```
### API