20 lines
892 B
Plaintext
20 lines
892 B
Plaintext
<!--pages/workBench/components/recharge/index.wxml-->
|
|
<view style="">
|
|
<view class="typeQuery">
|
|
<van-row>
|
|
<van-col span="8">
|
|
<view class="typeQueryText" style="color: {{active === 0 ? '#0958d9' : '#000'}}" bind:tap="changeQueryType" data-type="{{0}}"> 待审核 </view>
|
|
</van-col>
|
|
<van-col span="8">
|
|
<view class="typeQueryText" style="color: {{active === 1 ? '#0958d9' : '#000'}}" bind:tap="changeQueryType" data-type="{{1}}"> 已审核 </view>
|
|
</van-col>
|
|
<van-col span="8">
|
|
<view class="typeQueryText" style="color: {{active === 2 ? '#0958d9' : '#000'}}" bind:tap="changeQueryType" data-type="{{2}}"> 充值 </view>
|
|
</van-col>
|
|
</van-row>
|
|
</view>
|
|
</view>
|
|
|
|
<approve status="{{2}}" wx:if="{{active === 0}}" />
|
|
<approve status="{{1}}" wx:if="{{active === 1}}" />
|
|
<recharge wx:if="{{active === 2}}" /> |