-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Expand file tree
/
Copy pathwxs.wxml
More file actions
23 lines (20 loc) · 869 Bytes
/
wxs.wxml
File metadata and controls
23 lines (20 loc) · 869 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<import src="/common/head.wxml"/>
<import src="/common/foot.wxml"/>
<view class="container page" data-weui-theme="{{theme}}">
<template is="head" data="{{title: 'WXS'}}"/>
<view class="page-body">
<view class="page-section">
<view class="btn-area">
<button type="primary" data-nav="movable" bind:tap="handleNavChange">movable</button>
</view>
<!-- <view class="btn-area"></view>
<button type="primary" data-nav="sidebar" bind:tap="handleNavChange">右滑显示侧边栏</button>
<view class="btn-area"></view>
<button type="primary" data-nav="stick-top" bind:tap="handleNavChange">滚动菜单栏贴顶</button> -->
<view class="btn-area">
<button type="primary" data-nav="nearby" bind:tap="handleNavChange">跟随 swiper 的图片切换</button>
</view>
</view>
</view>
<template is="foot"/>
</view>