仿互站小程序

This commit is contained in:
Drawfans
2020-06-09 16:17:23 +08:00
commit 7bfd53851e
321 changed files with 22890 additions and 0 deletions

10
vant/panel/index.wxml Normal file
View File

@@ -0,0 +1,10 @@
<view class="van-panel van-hairline--top-bottom custom-class">
<van-cell customClass="header-class" label="{{desc}}" title="{{title}}" value="{{status}}" valueClass="van-panel__header-value" wx:if="{{title||desc||status}}"></van-cell>
<slot name="header" wx:else></slot>
<view class="van-panel__content">
<slot></slot>
</view>
<view class="van-panel__footer van-hairline--top footer-class" wx:if="{{useFooterSlot}}">
<slot name="footer"></slot>
</view>
</view>