微信小程序页面常用组件

61 阅读1分钟

* scroll-view 滚动

<scroll-view scroll-y="true" style="height: 300rpx;">
  <view>234</view>
  <view>234</view>
  <view>234</view>
  <view>234</view>
  <view>234</view>
  <view>234</view>
  <view>234</view>
  <view>234</view>
  <view>234</view>
  <view>234</view>
</scroll-view>

* view 容器组件

<view class=".test">容器组件</view>

* swiper 轮播组件

swiper为父组件包括swiper-item

<swiper indicator-dots autoplay circular>
	<swiper-item>1</swiper-item>
	<swiper-item>2</swiper-item>
	<swiper-item>3</swiper-item>
  <swiper-item>4</swiper-item>
</swiper>

* image 图片组件

<image src="https://img11.360buyimg.com/pop/s590x470_jfs/t1/167484/24/41344/89029/6513fdd9F328c5d43/223d3b4b0e1e2635.jpg.avif"></image>

* text 文本组件

space可以设置显示空格

<text>4<text style="font-weight:bold;" space="emsp">  456</text>65</text>

* button 按钮

<button>点我</button>

* icon 图标

<icon type="success" size="60"></icon>

* navigator 页面跳转

<navigator url="/pages/logs/logs">前往日志</navigator>

* map 地图

<map>12465464</map>