diff --git a/src/dealer/bank/index.tsx b/src/dealer/bank/index.tsx
index 71046ff..172fa42 100644
--- a/src/dealer/bank/index.tsx
+++ b/src/dealer/bank/index.tsx
@@ -83,12 +83,10 @@ const DealerBank = () => {
style={{
backgroundColor: 'transparent'
}}
- description="您还没有地址哦"
+ description="您还没有银行卡哦"
/>
-
-
+
diff --git a/src/dealer/orders/index.tsx b/src/dealer/orders/index.tsx
index 50e3bde..2d6557e 100644
--- a/src/dealer/orders/index.tsx
+++ b/src/dealer/orders/index.tsx
@@ -1,6 +1,6 @@
import React, {useState, useEffect, useCallback} from 'react'
import {View, Text, ScrollView} from '@tarojs/components'
-import {Empty, PullToRefresh,Space, Loading, DatePicker} from '@nutui/nutui-react-taro'
+import {Empty, PullToRefresh, Space, Loading, DatePicker} from '@nutui/nutui-react-taro'
import {ArrowDown} from '@nutui/icons-react-taro'
import Taro from '@tarojs/taro'
import {pageShopDealerOrder} from '@/api/shop/shopDealerOrder'
@@ -152,6 +152,15 @@ const DealerOrder: React.FC = () => {
+ {/**/}
+ {/* */}
+ {/* {(order.thirdUserId && order.thirdUserId > 0) ? '获取收益' : '推荐收益'}*/}
+ {/* */}
+ {/* */}
+ {/* 合作方收益:{getStatusText(order.isSettled, order.isInvalid)}*/}
+ {/* */}
+ {/**/}
+
{order.settleTime}
diff --git a/src/dealer/orders/shopDealerOrderEdit.vue b/src/dealer/orders/shopDealerOrderEdit.vue
new file mode 100644
index 0000000..df1f71f
--- /dev/null
+++ b/src/dealer/orders/shopDealerOrderEdit.vue
@@ -0,0 +1,335 @@
+
+
+
+
+
+
+ 基本信息
+
+
+
+
+
+ {{ form.comments }}
+
+
+
+
+ {{ form.orderNo }}
+
+
+
+
+ {{ parseFloat(form.orderPrice || 0).toFixed(2) }}
+
+
+
+
+ {{ form.rate }}
+
+
+
+
+ {{ form.price }}
+
+
+
+
+ {{ parseFloat(form.settledPrice || 0).toFixed(2) }}
+
+
+
+
+ {{ parseFloat(form.payPrice || 0).toFixed(2) }}
+
+
+
+
+
+
+
+
+ 收益计算
+
+
+
+
+
+ 间推收益
+
+
+
+
+ {{ form.firstUserId }}
+
+
+ {{ form.firstNickname }}
+
+
+
+
+ {{ '30%' }}
+
+
+ {{ form.firstMoney }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ form.thirdUserId > 0 ? '推荐收益' : '获取收益' }}
+
+
+
+
+ {{ form.userId }}
+
+
+ {{ form.nickname }}
+
+
+
+
+ {{ form?.thirdUserId > 0 ? '10%' : '70%' }}
+
+
+ {{ form.secondMoney }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ form.thirdUserId > 0 ? '获取收益' : '推荐收益' }}
+
+
+
+
+ {{ form.secondUserId }}
+
+
+ {{ form.secondNickname }}
+
+
+
+
+ {{ '60%' }}
+
+
+ {{ form.thirdMoney }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ form.settleTime }}
+
+
+
+
+
+
+
+
diff --git a/src/dealer/withdraw/index.tsx b/src/dealer/withdraw/index.tsx
index 4d97622..17591cc 100644
--- a/src/dealer/withdraw/index.tsx
+++ b/src/dealer/withdraw/index.tsx
@@ -86,7 +86,7 @@ const DealerWithdraw: React.FC = () => {
console.error('获取提现记录失败:', error)
Taro.showToast({
title: '获取提现记录失败',
- icon: 'error'
+ icon: 'none'
})
} finally {
setLoading(false)
@@ -190,7 +190,7 @@ const DealerWithdraw: React.FC = () => {
if (!dealerUser?.userId) {
Taro.showToast({
title: '用户信息获取失败',
- icon: 'error'
+ icon: 'none'
})
return
}
@@ -198,7 +198,7 @@ const DealerWithdraw: React.FC = () => {
if (!bank) {
Taro.showToast({
title: '请选择提现银行卡',
- icon: 'error'
+ icon: 'none'
})
return
}
@@ -211,7 +211,7 @@ const DealerWithdraw: React.FC = () => {
if (isNaN(amount) || amount <= 0) {
Taro.showToast({
title: '请输入有效的提现金额',
- icon: 'error'
+ icon: 'none'
})
return
}
@@ -219,7 +219,7 @@ const DealerWithdraw: React.FC = () => {
if (amount < 100) {
Taro.showToast({
title: '最低提现金额为100元',
- icon: 'error'
+ icon: 'none'
})
return
}
@@ -227,7 +227,7 @@ const DealerWithdraw: React.FC = () => {
if (amount > available) {
Taro.showToast({
title: '提现金额超过可用余额',
- icon: 'error'
+ icon: 'none'
})
return
}
@@ -236,7 +236,7 @@ const DealerWithdraw: React.FC = () => {
if (!bank.bankCard || !bank.bankAccount || !bank.bankName) {
Taro.showToast({
title: '银行卡信息不完整',
- icon: 'error'
+ icon: 'none'
})
return
}
@@ -275,7 +275,7 @@ const DealerWithdraw: React.FC = () => {
console.error('提现申请失败:', error)
Taro.showToast({
title: error.message || '提现申请失败',
- icon: 'error'
+ icon: 'none'
})
} finally {
setSubmitting(false)