修改搜索条件被截掉的问题,新增电表列表

This commit is contained in:
2025-01-14 17:10:46 +08:00
parent b905da6035
commit 2b653ea3ed
10 changed files with 33 additions and 18 deletions

View File

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

View File

@@ -23,14 +23,15 @@
</view>
</view>
</van-checkbox-group>
<view style="height: 60rpx"></view>
<view class="allSelect">
<van-checkbox value="{{ allChecked }}" bind:change="onAllChecked">
全选
</van-checkbox>
<view style="flex: 1; display: flex; align-items: center; justify-content: flex-end;">
<view style="flex: 1; display: flex; align-items: center; justify-content: flex-end;white-space: normal;word-break: keep-all;">
<view class="allNumber"> {{ selectCount }} </view>
订单,共
笔,共
<view class="allMoney"> ¥ {{selectMoney}} </view>
<van-button size="small" type="info" bind:click="next" disabled="{{!selectCount}}"> 下一步 </van-button>
</view>

View File

@@ -18,6 +18,10 @@
.middle {
margin-top: 26rpx;
font-size: 32rpx;
overflow: hidden;
width: 350rpx;
text-overflow: ellipsis;
white-space: nowrap;
}
.bottom {