index.wxml 412 Bytes
Newer Older
李嘉林 committed
1 2 3
<wxs src="../wxs/utils.wxs" module="utils" />

<view class="van-circle">
程默 committed
4
  <canvas class="van-circle__canvas" type="{{ type }}" style="width: {{ utils.addUnit(size) }};height:{{ utils.addUnit(size) }}" id="van-circle" canvas-id="van-circle"></canvas>
李嘉林 committed
5 6 7 8
  <view wx:if="{{ !text }}" class="van-circle__text">
    <slot></slot>
  </view>
  <cover-view wx:else class="van-circle__text">{{ text }}</cover-view>
程默 committed
9
</view>