master
王文杰 7 months ago
parent 8a4ccb9125
commit 66d3aeb239

@ -82,6 +82,8 @@ const handleCancleOrder = () => {
</view>
</view>
<view class="predict-weight">预估重量{{ order.predictWeight?.desc }}</view>
<view class="staffs-name">回收员{{ order.recyclerInfo?.staffsName }}</view>
<view class="staffs-phone">回收员手机号{{ order.recyclerInfo?.mobilePhone }}</view>
</view>
<view class="module info">
<view class="title">取件信息</view>
@ -184,7 +186,13 @@ page {
}
}
.predict-weight {
margin: 40rpx 0 20rpx;
margin-top: 40rpx;
}
.staffs-name {
margin: 20rpx 0;
}
.staffs-phone {
margin-bottom: 40rpx;
}
&.info {
.title {

@ -2,7 +2,7 @@
* @Author: 王文杰
* @Date: 2024-03-14 11:16:28
* @LastEditors: 王文杰
* @LastEditTime: 2024-03-16 13:14:11
* @LastEditTime: 2024-03-17 15:38:59
* @FilePath: /app-nx-personal/src/pagesMember/payment/payment.vue
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
-->
@ -39,12 +39,13 @@ const handleSelected = (e) => {
activeIndex.value = e.target.dataset.val
}
const handleSubmit = async () => {
// 退
if (isLoading.value) return
const amount = moneyList[activeIndex.value].val
const params = {
amount,
}
// 退
if (isLoading.value) return
isLoading.value = true
const res = await getDrawCashAPI(params)
isLoading.value = false

Loading…
Cancel
Save