1 line
2.3 KiB
Plaintext
1 line
2.3 KiB
Plaintext
<view class="{{['min-countdown',className]}}" style="{{'color:'+(color)+';'}}"><block wx:if="{{type==1}}"><rich-text nodes="{{time}}"></rich-text></block><block wx:if="{{type==2}}"><view class="flex-y-center"><view class="{{['count-tag','flex-center',[(borderColor)?'haveColor':'']]}}" style="{{'background:'+(bgColor)+';'+('border:'+(borderColor?'1rpx solid '+borderColor:'')+';')+('width:'+(time.d*1>99?'54rpx':'')+';')}}">{{''+time.d+''}}</view><view class="text" style="{{'color:'+(textColor)+';'}}">天</view><view class="{{['count-tag','flex-center',[(borderColor)?'haveColor':'']]}}" style="{{'background:'+(bgColor)+';'+('border:'+(borderColor?'1rpx solid '+borderColor:'')+';')}}">{{time.h}}</view><view class="text" style="{{'color:'+(textColor)+';'}}">时</view><view class="{{['count-tag','flex-center',[(borderColor)?'haveColor':'']]}}" style="{{'background:'+(bgColor)+';'+('border:'+(borderColor?'1rpx solid '+borderColor:'')+';')}}">{{''+time.m+''}}</view><view class="text" style="{{'color:'+(textColor)+';'}}">分</view><view class="{{['count-tag','flex-center',[(borderColor)?'haveColor':'']]}}" style="{{'background:'+(bgColor)+';'+('border:'+(borderColor?'1rpx solid '+borderColor:'')+';')}}">{{time.s}}</view><view class="text" style="{{'color:'+(textColor)+';'}}">秒</view></view></block><block wx:if="{{type==3}}"><view class="flex-y-center"><view class="{{['count-tag','flex-center',[(borderColor)?'haveColor':'']]}}" style="{{'background:'+(bgColor)+';'+('border:'+(borderColor?'1rpx solid '+borderColor:'')+';')+('width:'+(time.all_h*1>99?className=='mini'?'48rpx':className=='sm'?'54rpx':'66rpx':'')+';')}}">{{''+time.all_h+''}}</view><view class="text" style="{{'color:'+(textColor)+';'}}">:</view><view class="{{['count-tag','flex-center',[(borderColor)?'haveColor':'']]}}" style="{{'background:'+(bgColor)+';'+('border:'+(borderColor?'1rpx solid '+borderColor:'')+';')}}">{{''+time.m+''}}</view><view class="text" style="{{'color:'+(textColor)+';'}}">:</view><view class="{{['count-tag','flex-center',[(borderColor)?'haveColor':'']]}}" style="{{'background:'+(bgColor)+';'+('border:'+(borderColor?'1rpx solid '+borderColor:'')+';')}}">{{''+time.s+''}}</view></view></block><block wx:if="{{type==4}}"><view>{{time.all_h+':'+time.m+':'+time.s}}</view></block><block wx:if="{{type==5}}"><view>{{time.all_h+'小时'+time.m+'分'+time.s+'秒'}}</view></block></view> |