任务明细页面

This commit is contained in:
limqhz
2022-11-24 17:07:38 +08:00
parent 0a8e99c94c
commit ec41ce736d
106 changed files with 4892 additions and 48 deletions

View File

@@ -0,0 +1,20 @@
<t-popup visible="{{visible}}" placement="bottom" bind:visible-change="onPopupChange">
<view slot="content" class="{{classPrefix}} t-class">
<view class="{{classPrefix}}__toolbar" wx:if="{{header}}">
<view class="{{classPrefix}}__cancel t-class-cancel" wx:if="{{cancelBtn}}" bindtap="onCancel">{{cancelBtn}}</view>
<view class="{{classPrefix}}__title t-class-title">{{title}}</view>
<view class="{{classPrefix}}__confirm t-class-confirm" wx:if="{{confirmBtn}}" bindtap="onConfirm"
>{{confirmBtn}}</view
>
</view>
<!-- 扩展插槽 -->
<slot name="header"></slot>
<view class="{{classPrefix}}__main">
<slot></slot>
<view class="{{classPrefix}}__mask"></view>
<view class="{{classPrefix}}__indicator"></view>
</view>
<!-- 扩展插槽 -->
<slot name="footer"></slot>
</view>
</t-popup>