Yao e4dfc9e48c
[new feature] Layout: 新增 layout 组件 (#43)
* change example dir

* Update README.md

更新预览教程

* 新增 layout 组件

* exclude example

* change .wxss -> .pcss

* 脚本目录更名为 scripts
2017-10-31 17:41:31 +08:00

71 lines
2.1 KiB
Plaintext

<import src="/dist/steps/index.wxml" />
<view class="container">
<view class="doc-title">STEPS</view>
<view class="zan-panel">
<view class="zan-cell">
<view class="zan-cell__bd">
<template is="zan-steps" data="{{ type: 'horizon', steps: steps }}"></template>
</view>
</view>
<view class="zan-cell">
<view class="zan-cell__bd">
<template is="zan-steps" data="{{ type: 'horizon', steps: steps2 }}"></template>
</view>
</view>
<view class="zan-cell zan-cell--last-child">
<view class="zan-cell__bd">
<template is="zan-steps" data="{{ type: 'horizon', steps: steps3 }}"></template>
</view>
</view>
</view>
<view class="zan-panel-title">有描述的steps</view>
<view class="zan-panel">
<view class="zan-cell">
<view class="zan-cell__bd">
<template is="zan-steps" data="{{ type: 'horizon', hasDesc: true, steps: steps }}"></template>
</view>
</view>
<view class="zan-cell">
<view class="zan-cell__bd">
<template is="zan-steps" data="{{ type: 'horizon', hasDesc: true, steps: steps2 }}"></template>
</view>
</view>
<view class="zan-cell zan-cell--last-child">
<view class="zan-cell__bd">
<template is="zan-steps" data="{{ type: 'horizon', hasDesc: true, steps: steps3 }}"></template>
</view>
</view>
</view>
<view class="zan-panel-title">垂直方向的steps</view>
<view class="zan-panel">
<view class="zan-cell zan-cell">
<view class="zan-cell__bd">
<template is="zan-steps" data="{{ type: 'vertical', hasDesc: true, steps }}"></template>
</view>
</view>
<view class="zan-cell zan-cell--last-child">
<view class="zan-cell__bd">
<template is="zan-steps" data="{{ type: 'vertical', steps }}"></template>
</view>
</view>
</view>
<view class="zan-panel-title">可自定义class</view>
<view class="zan-panel">
<view class="zan-cell__bd">
<template is="zan-steps" data="{{ type: 'vertical', steps, className: 'my-class' }}"></template>
</view>
</view>
</view>