添加客服功能

This commit is contained in:
张成
2025-09-29 10:20:36 +08:00
parent 5ce229f092
commit 090a44fd6e
3 changed files with 112 additions and 6 deletions

View File

@@ -6,6 +6,7 @@ import { CommonPopup } from "@/components";
import httpService from "@/services/httpService";
import { withAuth } from "@/components";
import { PopupPicker } from "@/components/Picker/index";
import { handleCustomerService } from "@/services/userService";
// 交易记录类型
interface Transaction {
@@ -484,13 +485,13 @@ const WalletPage: React.FC = () => {
/>
<Text className="function_text"></Text>
</View>
{/* TODO 客服中心 */}
<View className="function_item" onClick={() => Taro.navigateTo({ url: "/user_pages/validPhone/index" })}>
{/* 客服中心 */}
<View className="function_item" onClick={handleCustomerService}>
<Image
className="function_icon"
src={require("@/static/wallet/custom-service.svg")}
/>
<Text className="function_text"></Text>
<Text className="function_text" ></Text>
</View>
</View>