depositProcess.wxml
669 Bytes
<!--component/depositProcess/depositProcess.wxml-->
<view class="deposit-process">
<view class="process">
<view class="process-line" style="background-color: {{isShowLeft ? '#e0e0e0': 'white'}}">
</view>
<view class="process-image-container">
<image class="process-image" src="{{imagePath}}"></image>
</view>
<view class="process-line" style="background-color: {{isShowRight ? '#e0e0e0': 'white'}}">
</view>
</view>
<view class="content">
<text class="process-text {{textClass}}">{{processText}}</text>
<text class="process-price {{currentStyle === 'doing' ? 'active' : textClass}}">{{processPrice}}</text>
</view>
</view>