home.wxml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <!--pages/home/home.wxml-->
  2. <view>
  3. <van-button type="default">默认按钮</van-button>
  4. <van-button type="primary">主要按钮</van-button>
  5. <van-button type="info">信息按钮</van-button>
  6. <van-button type="warning">警告按钮</van-button>
  7. <van-button type="danger">危险按钮</van-button>
  8. <!-- 跳转非tabbar页 类似于a标签 -->
  9. <navigator url="/pages/detail/detail">去列表</navigator>
  10. <!-- tap click -->
  11. <text class="title" bind:tap="showHi">首页</text>
  12. <!-- 模版渲染 -->
  13. <view>今天是{{day}}</view>
  14. <!-- 条件渲染 -->
  15. <!-- v-if v-else-if v-else -->
  16. <view wx:if="{{score >= 90}}">优秀</view>
  17. <view wx:elif="{{score > 60}}">及格</view>
  18. <view wx:else="{{score < 60}}">不及格</view>
  19. <!-- @click v-bind:click -->
  20. <button class="main" catch:tap='showHello'>你好</button>
  21. <!-- bindconfirm bindtap bindInput -->
  22. <input type="text" bindinput="handleInp" />
  23. <view class="box1" bind:tap="showMain1">
  24. <view class="box2" catch:tap="showMain2"></view>
  25. </view>
  26. <template name="hi">
  27. <text>hello,今天星期日</text>
  28. <view>成绩:{{score}}</view>
  29. <!-- 循环渲染 -->
  30. <view wx:for="{{list}}" wx:for-item="item" wx:key="index">
  31. {{item.id}}--{{item.name}}
  32. {{item}}
  33. </view>
  34. </template>
  35. </view>