调整顺序

This commit is contained in:
qiaomu 2025-02-25 09:33:17 +08:00
parent 8a1af13924
commit 1a3b94af51
7 changed files with 9 additions and 18 deletions

View File

@ -1 +0,0 @@
// pages/workBench/components/approve/index.js

View File

@ -1,6 +0,0 @@
{
"component": true,
"usingComponents": {
}
}

View File

@ -1,3 +0,0 @@
<!--pages/workBench/components/approve/index.wxml-->
<!--pages/workBench/components/record/index.wxml-->

View File

@ -1 +0,0 @@
/* pages/workBench/components/approve/index.wxss */

View File

@ -24,7 +24,9 @@ Component({
},
lifetimes: {
attached() {
this.init();
loadingFunc(async () => {
await this.init();
})
}
},
/**

View File

@ -40,11 +40,11 @@
<van-radio-group value="{{ record }}" bind:change="onChangeSelectRecharge">
<block wx:for="{{list}}" wx:for-index="itemIndex" wx:key="item">
<view class="tr">
<view class="th" style="width: 60rpx">
<van-radio wx:if="{{item.orderStatus !== '已退回'}}" name="{{item.id}}"></van-radio>
<view class="th" style="width: 70rpx">
<van-radio wx:if="{{status === 2}}" name="{{item.id}}"></van-radio>
</view>
<view class="th" style="width: 200rpx"> {{ item.tenement.shortName }} </view>
<view class="th" style="width: 200rpx"> {{ item.money }} </view>
<view class="th" style="width: 250rpx"> {{ item.tenement.shortName }} </view>
<view class="th" style="width: 150rpx"> {{ item.money }} </view>
<view class="th" style="width: 200rpx">
<view class="primaryTextBtn" bind:tap="jumpToDetail" data-id="{{item.id}}">
查看详细
@ -65,7 +65,7 @@
</view>
<empty bind:refresh="init" wx:else />
<view class="operate">
<view class="operate" wx:if="{{status === 2}}">
<view style="margin-top: 60rpx; margin-bottom: 60rpx;display: flex; justify-content: center; align-items: center;">
<van-button
type="info"

View File

@ -5,7 +5,7 @@ Page({
* 页面的初始数据
*/
data: {
active: 3
active: 0
},
/**