mirror of
https://git.beihong.wang/wangbeihong/iot-bedroom-environment-controller.git
synced 2026-04-23 14:53:04 +08:00
10 lines
851 B
Plaintext
10 lines
851 B
Plaintext
<view class="{{isMask && isFixed?'fui-loading__mask':''}}" style="background:{{isFixed?maskBgColor:'transparent'}};">
|
|
<view class="fui-loading fui-loading__wrap {{isFixed?'fui-loading__fixed':''}}" style="background: {{backgroundColor}};position:{{isFixed?'fixed':'static'}}" wx:if="{{type === 'col'}}">
|
|
<image class="fui-loading__ani" src="{{srcCol}}"></image>
|
|
<text class="fui-loading__text" style="color:{{colColor}};font-size:{{size}}rpx;line-height:{{size}}rpx">{{ text }}</text>
|
|
</view>
|
|
<view wx:else class="fui-loading fui-loading__row {{isFixed?'fui-loading__fixed':''}}" style="position:{{isFixed?'fixed':'static'}}">
|
|
<image class="fui-loading-row__ani" src="{{srcRow}}"></image>
|
|
<text class="fui-loading__text" style="color:{{rowColor}};font-size:{{size}}rpx;line-height:{{size}}rpx">{{ text }}</text>
|
|
</view>
|
|
</view> |