修复了禅道的一系列bug

This commit is contained in:
2025-08-09 01:21:59 +08:00
parent c1817b6255
commit f871831cbc
16 changed files with 60 additions and 45 deletions

View File

@ -11,6 +11,7 @@
class="text_3 font text_1"
placeholder="请输入订单号"
value="{{orderNumber}}"
type="number"
bindinput="onOrderNumberInput"
/>
</view>
@ -34,9 +35,9 @@
wx:for-index="index"
wx:key="id"
>
<view class="flex-row items-baseline">
<view class="flex-row items-baseline" style="display: flex; justify-content: space-between;">
<text class="font_2 text_8">订单号:</text>
<text class="font_3 ml-26">{{item.orderNumber}}</text>
<text class="font_3">{{item.orderNumber}}</text>
</view>
<view class="flex-row justify-between mt-19">
@ -54,22 +55,20 @@
<text class="font_3 text_24">¥{{item.totalAmount}}</text>
</view>
<view class="flex-row justify-between mt-19">
<view class="flex-row justify-between items-center mt-19">
<text class="font_2 text_15">状态:</text>
<text class="font_4 text_16">{{item.orderStatus}}</text>
</view>
<view class="flex-row justify-between mt-19">
<view class="flex-row justify-between items-center mt-19">
<text class="font_2 text_17">抽成:</text>
<text class="font_4 text_18">
主管:{{item.firstRate * 100}}%,员工:{{item.secondRate * 100}}%
<text class="font_4 text_18">主管:{{item.firstRate * 100}}%,员工:{{item.secondRate * 100}}%
</text>
</view>
<view class="flex-row justify-between mt-19">
<view class="flex-row justify-between items-center mt-19">
<text class="font_2 text_19">奖励:</text>
<text class="font_4 text_20">
主管:¥{{item.firstReward}},员工:¥{{item.secondReward}}
<text class="font_4 text_20">主管:¥{{item.firstReward}},员工:¥{{item.secondReward}}
</text>
</view>

View File

@ -9,9 +9,10 @@
background-color: #fefbf6;
box-shadow: 0rpx 3.75rpx 7.5rpx #00000040;
width: 100%;
overflow-y: auto;
overflow-x: hidden;
height: 100%;
position: fixed;
bottom: 0;
overflow: auto;
height: calc(100vh - 1rpx);
}
.text {
color: #e67e22;
@ -118,6 +119,7 @@
font-size: 30rpx;
font-family: SourceHanSansCN;
line-height: 22.76rpx;
margin-right: 15rpx;
color: #444444;
}
.text_9 {
@ -130,45 +132,45 @@
color: #444444;
}
.text_10 {
margin-right: 19.69rpx;
margin-right: 15rpx;
line-height: 27.84rpx;
}
.text_11 {
line-height: 27.81rpx;
}
.text_12 {
margin-right: 15.06rpx;
margin-right: 15rpx;
}
.text_13 {
line-height: 28.29rpx;
}
.text_24 {
margin-right: 6.41rpx;
margin-right: 15rpx;
}
.text_15 {
line-height: 28.01rpx;
}
.text_16 {
margin-right: 18.77rpx;
margin-right: 15rpx;
line-height: 28.09rpx;
}
.text_17 {
line-height: 28.16rpx;
}
.text_18 {
margin-right: 11.44rpx;
margin-right: 15rpx;
}
.text_19 {
line-height: 28.2rpx;
}
.text_20 {
margin-right: 7.76rpx;
margin-right: 15rpx;
}
.text_21 {
line-height: 28.31rpx;
}
.text_23 {
margin-right: 19.31rpx;
margin-right: 15rpx;
margin-bottom: 2.04rpx;
line-height: 27.79rpx;
}