Files
iot-bedroom-environment-con…/微信小程序源码/iot-home/components/firstui/fui-loading/fui-loading.wxml
2026-02-07 23:14:57 +08:00

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>