mini_code/miniprogram/pages/index/index.wxml

46 lines
1.2 KiB
Plaintext

<!--index.wxml-->
<view>
<van-row>
<van-col span="6">
<van-image
round
width="5rem"
height="5rem"
src="https://cdn.pixabay.com/photo/2023/05/14/19/42/sky-7993656_1280.jpg"
/>
</van-col>
<van-col span="6">
<van-image
round
width="5rem"
height="5rem"
src="https://img.yzcdn.cn/vant/cat.jpeg"
/>
</van-col>
<van-col span="6">
<van-image
round
width="5rem"
height="5rem"
src="https://img.yzcdn.cn/vant/cat.jpeg"
/>
</van-col>
<van-col span="6">
<van-image
round
width="5rem"
height="5rem"
src="https://cdn.pixabay.com/photo/2023/05/14/19/42/sky-7993656_1280.jpg"
/>
</van-col>
</van-row>
<van-tabs active="{{ active }}">
<van-tab wx:for="{{tabs}}" wx:key="index" title="{{item.name}}">
内容{{item.id}}
</van-tab>
</van-tabs>
<van-button block type="primary" class="fixed-bottom" >按钮</van-button>
</view>