feat: 细节调整

This commit is contained in:
苟川东 2025-04-28 16:55:46 +08:00
parent e1decb94cf
commit 306d7f2c1d
3 changed files with 6 additions and 3 deletions

View File

@ -245,9 +245,9 @@ const selectFinalPaymentMethod = () => {
const selectOfflineTotalType = () => {
uni.showActionSheet({
itemList: ['师傅收', '公司收'],
itemList: ['公司收', '师傅收'],
success: function (res) {
submitData.offline_total_type = res.tapIndex + 1
submitData.offline_total_type = res.tapIndex === 0 ? 2 : 1;
},
fail: function (res) {
console.log(res.errMsg);

View File

@ -324,7 +324,7 @@ const getOrderStatusText = (status) => {
.desc {
width: 100%;
min-height: 56rpx;
font-size: 28rpx;
font-size: 34rpx;
color: var(--summaryColor);
}
}

View File

@ -38,6 +38,9 @@ const submit = throttle(() => {
title: '已保存',
icon: "success"
})
setTimeout(()=>{
uni.navigateBack();
}, 1500)
}).catch(() => {})
})