mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
doc: format
This commit is contained in:
parent
ceea48a7b1
commit
6e7d630953
106
README.md
106
README.md
@ -26,60 +26,60 @@ cd zanui-weapp
|
|||||||
|
|
||||||
根据功能的不同,可以将组件大致的分为4类:
|
根据功能的不同,可以将组件大致的分为4类:
|
||||||
|
|
||||||
1. 简单组件
|
### 1. 简单组件
|
||||||
|
|
||||||
如按钮组件,只要按照wxml结构写就好了
|
如按钮组件,只要按照wxml结构写就好了
|
||||||
|
|
||||||
~~~html
|
~~~html
|
||||||
<!-- example/btn/index.html -->
|
<!-- example/btn/index.html -->
|
||||||
|
|
||||||
<view class="zan-btn">按钮</view>
|
<view class="zan-btn">按钮</view>
|
||||||
~~~
|
~~~
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
2. 复杂组件
|
### 2. 复杂组件
|
||||||
|
|
||||||
如加载更多组件,需要先引入定义好的模版,然后给模版传递数据
|
如加载更多组件,需要先引入定义好的模版,然后给模版传递数据
|
||||||
|
|
||||||
~~~html
|
~~~html
|
||||||
<!-- example/loadmore/index.html -->
|
<!-- example/loadmore/index.html -->
|
||||||
|
|
||||||
<!-- 引入组件模版 -->
|
<!-- 引入组件模版 -->
|
||||||
<import src="path/to/zanui-weapp/dist/loadmore/index.wxml" />
|
<import src="path/to/zanui-weapp/dist/loadmore/index.wxml" />
|
||||||
|
|
||||||
<!-- 加载中 -->
|
<!-- 加载中 -->
|
||||||
<template is="zan-loadmore" data="{{loading: true}}" />
|
<template is="zan-loadmore" data="{{loading: true}}" />
|
||||||
|
|
||||||
<!-- 一条数据都没有 -->
|
<!-- 一条数据都没有 -->
|
||||||
<template is="zan-loadmore" data="{{nodata: true}}" />
|
<template is="zan-loadmore" data="{{nodata: true}}" />
|
||||||
|
|
||||||
<!-- 没有更多数据了 -->
|
<!-- 没有更多数据了 -->
|
||||||
<template is="zan-loadmore" data="{{nomore: true}}" />
|
<template is="zan-loadmore" data="{{nomore: true}}" />
|
||||||
~~~
|
~~~
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
3. 带事件回掉的组件
|
### 3. 带事件回掉的组件
|
||||||
|
|
||||||
如数量选择组件,需要先引入模版,然后给模版传递数据
|
如数量选择组件,需要先引入模版,然后给模版传递数据
|
||||||
|
|
||||||
~~~html
|
~~~html
|
||||||
<!-- example/quantity/index.html -->
|
<!-- example/quantity/index.html -->
|
||||||
|
|
||||||
<import src="path/to/zanui-weapp/dist/quantity/index.wxml" />
|
<import src="path/to/zanui-weapp/dist/quantity/index.wxml" />
|
||||||
|
|
||||||
<template is="zan-quantity" data="{{ ...quantity, componentId: 'customId' }}" />
|
<template is="zan-quantity" data="{{ ...quantity, componentId: 'customId' }}" />
|
||||||
~~~
|
~~~
|
||||||
|
|
||||||
然后通过`Zan.Quantity`把相关回掉注入到页面中
|
然后通过`Zan.Quantity`把相关回掉注入到页面中
|
||||||
|
|
||||||
~~~js
|
~~~js
|
||||||
// example/quantity/index.js
|
// example/quantity/index.js
|
||||||
|
|
||||||
var Zan = require('path/to/zanui-weapp/dist/index');
|
var Zan = require('path/to/zanui-weapp/dist/index');
|
||||||
|
|
||||||
Page(Object.assign({}, Zan.Quantity, {
|
Page(Object.assign({}, Zan.Quantity, {
|
||||||
data: {
|
data: {
|
||||||
quantity: {
|
quantity: {
|
||||||
quantity: 10,
|
quantity: 10,
|
||||||
@ -97,43 +97,43 @@ cd zanui-weapp
|
|||||||
'quantity.quantity': quantity
|
'quantity.quantity': quantity
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}));
|
}));
|
||||||
~~~
|
~~~
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
4. API类组件
|
### 4. API类组件
|
||||||
|
|
||||||
如Toast组件,需要先引入模版,并在页面上使用。
|
如Toast组件,需要先引入模版,并在页面上使用。
|
||||||
|
|
||||||
> 注意`zanToast`这个数据也是通过`Zan.Toast`注入到页面的
|
> 注意`zanToast`这个数据也是通过`Zan.Toast`注入到页面的
|
||||||
|
|
||||||
~~~html
|
~~~html
|
||||||
<!-- example/toast/index.html -->
|
<!-- example/toast/index.html -->
|
||||||
|
|
||||||
<import src="path/to/zanui-weapp/dist/toast/index.wxml" />
|
<import src="path/to/zanui-weapp/dist/toast/index.wxml" />
|
||||||
|
|
||||||
<view bindtap="showToast">显示toast</view>
|
<view bindtap="showToast">显示toast</view>
|
||||||
|
|
||||||
<template is="zan-toast" data="{{ zanToast }}"></template>
|
<template is="zan-toast" data="{{ zanToast }}"></template>
|
||||||
~~~
|
~~~
|
||||||
|
|
||||||
将API注入到页面后,就可以通过`this`来直接调用相应的API了
|
将API注入到页面后,就可以通过`this`来直接调用相应的API了
|
||||||
|
|
||||||
~~~js
|
~~~js
|
||||||
<!-- example/toast/index.js -->
|
<!-- example/toast/index.js -->
|
||||||
|
|
||||||
var Zan = require('path/to/zanui-weapp/dist/index');
|
var Zan = require('path/to/zanui-weapp/dist/index');
|
||||||
|
|
||||||
Page(Object.assign({}, Zan.Toast, {
|
Page(Object.assign({}, Zan.Toast, {
|
||||||
showToast() {
|
showToast() {
|
||||||
this.showZanToast('toast的内容');
|
this.showZanToast('toast的内容');
|
||||||
}
|
}
|
||||||
}));
|
}));
|
||||||
|
|
||||||
~~~
|
~~~
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
更多示例可以在项目的`example`目录中查看
|
更多示例可以在项目的`example`目录中查看
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user