yuminge-app/yun-min-program-plugin-master/packageH/project_verification/components/panel/panel.wxml

12 lines
497 B
Plaintext

<!-- packageH/project_verification/components/panel/panel.wxml -->
<view class="panel {{ radius?'panel-raduis':'' }} {{ title?'panel-has-title':'' }}" style="padding:{{ padding }};background-color:{{ backgroundColor }};">
<view class="panel-title" wx:if="{{ title }}" style="font-size:{{ titleFontSize }};font-weight:{{ titleFontWeight }}">
{{ title }}
</view>
<view class="panel-content">
<slot />
</view>
<view class="panel-footer">
<slot name="footer" />
</view>
</view>