Compare commits

13 Commits

Author SHA1 Message Date
38c4519e79 修复:合并丢失的代码 2025-11-27 17:32:58 +08:00
3b596e0a70 修复:合并丢失的代码 2025-11-27 16:10:55 +08:00
b513979995 revert f9cad8d740
revert 更新:谷歌支付
2025-11-27 15:44:12 +08:00
ee5431e57a revert 2a067e0954
revert 更新:积分列表
2025-11-27 15:43:56 +08:00
64abd3d4ab revert 33c22eaad9
revert 解决冲突
2025-11-27 15:38:24 +08:00
3da220526b revert f70fc65c24
revert 解决冲突
2025-11-27 15:38:07 +08:00
d209c05a18 revert 26cef66e82
revert 解决冲突报错
2025-11-27 15:37:53 +08:00
21a3335939 revert 277b6cf0b6
revert 修改:解决谷歌支付调方法时机问题
2025-11-27 15:37:31 +08:00
cbc48b8193 revert 277b6cf0b6
revert 修改:解决谷歌支付调方法时机问题
2025-11-27 15:36:57 +08:00
574644349c revert 277b6cf0b6
revert 修改:解决谷歌支付调方法时机问题
2025-11-27 15:36:43 +08:00
2ccd53ab94 revert 277b6cf0b6
revert 修改:解决谷歌支付调方法时机问题
2025-11-27 15:36:20 +08:00
277b6cf0b6 修改:解决谷歌支付调方法时机问题 2025-11-27 15:04:26 +08:00
26cef66e82 解决冲突报错 2025-11-27 15:01:31 +08:00
25 changed files with 888 additions and 960 deletions

View File

@@ -7,8 +7,8 @@ export const ENV = process.env.NODE_ENV || 'development';
*/ */
const BASE_URL_MAP = { const BASE_URL_MAP = {
development: { development: {
//MAIN: 'http://192.168.110.100:9300/pb/', // 张川川 MAIN: 'http://192.168.110.100:9300/pb/', // 张川川
MAIN: 'https://global.nuttyreading.com/', // 线上 // MAIN: 'https://global.nuttyreading.com/', // 线上
// PAYMENT: 'https://dev-pay.example.com', // 暂时用不到 // PAYMENT: 'https://dev-pay.example.com', // 暂时用不到
// CDN: 'https://cdn-dev.example.com', // 暂时用不到 // CDN: 'https://cdn-dev.example.com', // 暂时用不到
}, },

View File

@@ -34,7 +34,7 @@ export function responseInterceptor(res: UniApp.RequestSuccessCallbackResult) {
} }
// 可能为字符串,尝试解析(原项目也做了类似处理) // 可能为字符串,尝试解析(原项目也做了类似处理)
let httpData: IApiResponse | string = res.data; let httpData: IApiResponse | string = res.data as any;
if (typeof httpData === 'string') { if (typeof httpData === 'string') {
try { try {
httpData = JSON.parse(httpData); httpData = JSON.parse(httpData);
@@ -44,20 +44,19 @@ export function responseInterceptor(res: UniApp.RequestSuccessCallbackResult) {
} }
// 规范化 message 字段 // 规范化 message 字段
const message = (httpData as IApiResponse).msg || (httpData as IApiResponse).message || (httpData as IApiResponse).errMsg || ''; const message = (httpData as any).msg || (httpData as any).message || (httpData as any).errMsg || '';
const code = (httpData as IApiResponse).code; // 成功判断:与原项目一致的条件
const successFlag = (httpData as any).success === true || (httpData as any).code === 0;
// 成功判断
const successFlag = (httpData as IApiResponse).success === true || code === 0;
if (successFlag) { if (successFlag) {
// 返回原始 httpData // 返回原始 httpData(与原项目 dataFactory 返回 Promise.resolve(httpData) 保持一致)
// 实际数据每个接口不同,调用者需根据实际情况取 .data 字段 // 但大多数调用者更关心 data 字段,这里返回整个 httpData调用者可取 .data
return Promise.resolve(httpData); return Promise.resolve(httpData);
} }
// 登录失效或需要强制登录的一些 code // 登录失效或需要强制登录的一些 code(与原项目一致)
const code = (httpData as any).code;
if (code === '401' || code === 401) { if (code === '401' || code === 401) {
// 触发登出流程 // 触发登出流程
handleAuthExpired(); handleAuthExpired();
@@ -65,7 +64,7 @@ export function responseInterceptor(res: UniApp.RequestSuccessCallbackResult) {
} }
// 原项目还将 1000,1001,1100,402 等视作需要强制登录 // 原项目还将 1000,1001,1100,402 等视作需要强制登录
if (code == 1000 || code == 1001 || code === 1100 || code === 402) { if (code === '1000' || code === '1001' || code === 1000 || code === 1001 || code === 1100 || code === '402' || code === 402) {
handleAuthExpired(); handleAuthExpired();
return Promise.reject({ statusCode: 0, errMsg: message || t('global.loginExpired'), data: httpData }); return Promise.reject({ statusCode: 0, errMsg: message || t('global.loginExpired'), data: httpData });
} }

View File

@@ -2,13 +2,13 @@
import { mainClient } from '@/api/clients/main' import { mainClient } from '@/api/clients/main'
import type { IApiResponse } from '@/api/types' import type { IApiResponse } from '@/api/types'
import type { import type {
IUserInfo, IUserInfo,
IVipInfo, IVipInfo,
IOrder, IOrder,
IVipPackage, IVipPackage,
ITransaction, ITransaction,
IFeedbackForm, IFeedbackForm,
IPageData IPageData
} from '@/types/user' } from '@/types/user'
import { SERVICE_MAP } from '@/api/config' import { SERVICE_MAP } from '@/api/config'
@@ -16,22 +16,22 @@ import { SERVICE_MAP } from '@/api/config'
* 获取用户信息 * 获取用户信息
*/ */
export async function getUserInfo() { export async function getUserInfo() {
const res = await mainClient.request<IApiResponse<{ user : IUserInfo }>>({ const res = await mainClient.request<IApiResponse<{ user: IUserInfo }>>({
url: 'common/user/getUserInfo', url: 'common/user/getUserInfo',
method: 'POST' method: 'POST'
}) })
return res return res
} }
/** /**
* 获取VIP信息 * 获取VIP信息
*/ */
export async function getVipInfo() { export async function getVipInfo() {
const res = await mainClient.request<IApiResponse<{ vipInfo : IVipInfo }>>({ const res = await mainClient.request<IApiResponse<{ vipInfo: IVipInfo }>>({
url: 'bookAbroad/home/getVipInfo', url: 'bookAbroad/home/getVipInfo',
method: 'POST' method: 'POST'
}) })
return res return res
} }
/** /**
@@ -39,64 +39,64 @@ export async function getVipInfo() {
* @param current 当前页码 * @param current 当前页码
* @param limit 每页数量 * @param limit 每页数量
*/ */
export async function getOrderList(page : number, limit : number, orderStatus : string) { export async function getOrderList(page: number, limit: number, orderStatus: string) {
const res = await mainClient.request<IApiResponse<{ orders : IPageData<IOrder> }>>({ const res = await mainClient.request<IApiResponse<{ orders: IPageData<IOrder> }>>({
url: 'common/buyOrder/commonBuyOrderList', url: 'common/buyOrder/commonBuyOrderList',
method: 'POST', method: 'POST',
data: { page, limit, orderStatus, come: '10', userId: uni.getStorageSync('userInfo').id } data: { page, limit, orderStatus, come: '10', userId: uni.getStorageSync('userInfo').id }
}) })
return res return res
} }
/** /**
* 获取VIP套餐列表 * 获取VIP套餐列表
*/ */
export async function getVipPackages() { export async function getVipPackages() {
const res = await mainClient.request<IApiResponse<{ sysDictDatas : IVipPackage[] }>>({ const res = await mainClient.request<IApiResponse<{ sysDictDatas: IVipPackage[] }>>({
url: 'book/sysdictdata/getData', url: 'book/sysdictdata/getData',
method: 'POST', method: 'POST',
data: { dictLabel: 'googleVip' } data: { dictLabel: 'googleVip' }
}) })
return res return res
} }
/** /**
* 创建订单 * 创建订单
* @param data 订单数据 * @param data 订单数据
*/ */
export async function createOrder(data : any) { export async function createOrder(data: any) {
const res = await mainClient.request<IApiResponse<{ orderSn : string }>>({ const res = await mainClient.request<IApiResponse<{ orderSn: string }>>({
url: 'bookAbroad/order/placeOrder', url: 'bookAbroad/order/placeOrder',
method: 'POST', method: 'POST',
data data
}) })
return res return res
} }
/** /**
* 获取交易记录列表 * 获取交易记录列表
* @param userId 用户ID * @param userId 用户ID
*/ */
export async function getTransactionList(userId : number) { export async function getTransactionList(userId: number) {
const res = await mainClient.request<IApiResponse<{ transactionDetailsList : ITransaction[] }>>({ const res = await mainClient.request<IApiResponse<{ transactionDetailsList: ITransaction[] }>>({
url: 'common/transactionDetails/getTransactionDetailsList', url: 'common/transactionDetails/getTransactionDetailsList',
method: 'POST', method: 'POST',
data: { userId } data: { userId }
}) })
return res return res
} }
/** /**
* 更新用户基本信息 * 更新用户基本信息
* @param data 用户信息 * @param data 用户信息
*/ */
export async function updateUserInfo(data : Partial<IUserInfo>) { export async function updateUserInfo(data: Partial<IUserInfo>) {
const res = await mainClient.request<IApiResponse>({ const res = await mainClient.request<IApiResponse>({
url: 'book/user/update', url: 'book/user/update',
method: 'POST', method: 'POST',
data data
}) })
return res return res
} }
/** /**
@@ -105,13 +105,13 @@ export async function updateUserInfo(data : Partial<IUserInfo>) {
* @param email 邮箱地址 * @param email 邮箱地址
* @param code 验证码 * @param code 验证码
*/ */
export async function updateEmail(id : number, email : string, code : string) { export async function updateEmail(id: number, email: string, code: string) {
const res = await mainClient.request<IApiResponse>({ const res = await mainClient.request<IApiResponse>({
url: 'common/user/updateUserEmail', url: 'common/user/updateUserEmail',
method: 'POST', method: 'POST',
data: { id, email, code } data: { id, email, code }
}) })
return res return res
} }
/** /**
@@ -119,32 +119,32 @@ export async function updateEmail(id : number, email : string, code : string) {
* @param id 用户ID * @param id 用户ID
* @param password 新密码 * @param password 新密码
*/ */
export async function updatePassword(id : number, password : string) { export async function updatePassword(id: number, password: string) {
const res = await mainClient.request<IApiResponse>({ const res = await mainClient.request<IApiResponse>({
url: 'common/user/setPasswordById', url: 'common/user/setPasswordById',
method: 'POST', method: 'POST',
headers: { headers: {
'Content-Type': 'application/x-www-form-urlencoded', 'Content-Type': 'application/x-www-form-urlencoded',
}, },
data: { id, password } data: { id, password }
}) })
return res return res
} }
/** /**
* 发送邮箱验证码 * 发送邮箱验证码
* @param email 邮箱地址 * @param email 邮箱地址
*/ */
export async function sendEmailCode(email : string) { export async function sendEmailCode(email: string) {
const res = await mainClient.request<IApiResponse>({ const res = await mainClient.request<IApiResponse>({
url: 'common/user/getMailCaptcha', url: 'common/user/getMailCaptcha',
method: 'POST', method: 'POST',
headers: { headers: {
'Content-Type': 'application/x-www-form-urlencoded', 'Content-Type': 'application/x-www-form-urlencoded',
}, },
data: { email } data: { email }
}) })
return res return res
} }
/** /**
@@ -152,40 +152,40 @@ export async function sendEmailCode(email : string) {
* @param filePath 本地文件路径 * @param filePath 本地文件路径
* @returns 图片URL * @returns 图片URL
*/ */
export function uploadImage(filePath : string) : Promise<string> { export function uploadImage(filePath: string): Promise<string> {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
uni.uploadFile({ uni.uploadFile({
url: `${SERVICE_MAP.MAIN}oss/fileoss`, url: `${SERVICE_MAP.MAIN}oss/fileoss`,
filePath, filePath,
name: 'file', name: 'file',
success: (res) => { success: (res) => {
try { try {
const data = JSON.parse(res.data) const data = JSON.parse(res.data)
if (data.url) { if (data.url) {
resolve(data.url) resolve(data.url)
} else { } else {
reject(new Error('上传失败')) reject(new Error('上传失败'))
} }
} catch (error) { } catch (error) {
reject(error) reject(error)
} }
}, },
fail: reject fail: reject
}) })
}) })
} }
/** /**
* 提交问题反馈 * 提交问题反馈
* @param data 反馈表单数据 * @param data 反馈表单数据
*/ */
export async function submitFeedback(data : IFeedbackForm) { export async function submitFeedback(data: IFeedbackForm) {
const res = await mainClient.request<IApiResponse>({ const res = await mainClient.request<IApiResponse>({
url: 'common/sysFeedback/addSysFeedback', url: 'common/sysFeedback/addSysFeedback',
method: 'POST', method: 'POST',
data data
}) })
return res return res
} }
/** /**
@@ -194,27 +194,26 @@ export async function submitFeedback(data : IFeedbackForm) {
* @param orderSn 订单号 * @param orderSn 订单号
* @param productId 产品ID * @param productId 产品ID
*/ */
export async function verifyGooglePay(productId : number, purchaseToken : string, orderSn : string) { export async function verifyGooglePay(purchaseToken: string, orderSn: string, productId: string) {
console.log(productId, purchaseToken, orderSn); const res = await mainClient.request<IApiResponse>({
const res = await mainClient.request<IApiResponse>({ url: 'pay/googlepay/googleVerify',
url: 'pay/googlepay/googleVerify', method: 'POST',
method: 'POST', data: { purchaseToken, orderSn, productId }
data: { productId, purchaseToken, orderSn } })
}) return res
return res
} }
/** /**
* 验证IAP支付 * 验证IAP支付
* @param data 支付数据 * @param data 支付数据
*/ */
export async function verifyIAP(data : any) { export async function verifyIAP(data: any) {
const res = await mainClient.request<IApiResponse>({ const res = await mainClient.request<IApiResponse>({
url: 'Ipa/veri', url: 'Ipa/veri',
method: 'POST', method: 'POST',
data data
}) })
return res return res
} }
/** /**
@@ -222,80 +221,48 @@ export async function verifyIAP(data : any) {
* @param type 固定值 point * @param type 固定值 point
* @param qudao 支付类型 * @param qudao 支付类型
*/ */
export async function getBookBuyConfigList(type : string, qudao : string) { export async function getBookBuyConfigList(type: string, qudao: string) {
const res = await mainClient.request<IApiResponse>({ const res = await mainClient.request<IApiResponse>({
url: 'common/bookBuyConfig/getBookBuyConfigList', url: 'common/bookBuyConfig/getBookBuyConfigList',
method: 'POST', method: 'POST',
data: { type, qudao } data: {type, qudao}
}) })
return res return res
} }
/** /**
* 获取隐私协议 * 获取隐私协议
* @param id 101众妙之门隐私政策 * @param id 101众妙之门隐私政策
*/ */
export async function getAgreement(id : string) { export async function getAgreement(id: string) {
console.log(id, 'id'); console.log(id, 'id');
const res = await mainClient.request<IApiResponse>({ const res = await mainClient.request<IApiResponse>({
url: '/sys/agreement/getAgreement', url: '/sys/agreement/getAgreement',
method: 'POST', method: 'POST',
data: { id } data: {id}
}) })
return res return res
} }
/** /**
* 获取活动说明 * 获取活动说明
*/ */
export async function getActivityDescription() { export async function getActivityDescription() {
const res = await mainClient.request<IApiResponse>({ const res = await mainClient.request<IApiResponse>({
url: 'common/bookBuyConfig/getRechargeActivity', url: 'common/bookBuyConfig/getRechargeActivity',
method: 'POST' method: 'POST'
}) })
return res return res
} }
/** /**
* 充值记录列表 * 获取充值列表
* @param current 当前页码
* @param limit 每页数量
* @param userId 用户id
* @return
*/ */
export async function getTransactionDetailsList(current : number, limit : number, userId : string) { export async function getTransactionDetailsList(current: number, limit: number, userId: string,) {
const res = await mainClient.request<IApiResponse>({ const res = await mainClient.request<IApiResponse>({
url: 'common/transactionDetails/getTransactionDetailsList', url: 'common/transactionDetails/getTransactionDetailsList',
method: 'POST', method: 'POST',
data: { current, limit, userId, } data: { current, limit, userId, }
}) })
return res return res
}
/**
* 获取订单编号
* @return
*/
export async function getPlaceOrder(data: object) {
const res = await mainClient.request<IApiResponse>({
url: '/book/buyOrder/placeOrder',
method: 'POST',
data: data
})
return res
}
/**
* 获取积分数据
* @return
*/
export async function getPointsData(current : number, limit : number, userId : string,) {
const res = await mainClient.request<IApiResponse>({
url: 'common/jfTransactionDetails/getJfTransactionDetailsList',
method: 'POST',
data: { current, limit, userId, }
})
return res
} }

View File

@@ -8,7 +8,6 @@ import { t } from '@/utils/i18n'
export function createRequestClient(cfg: ICreateClientConfig) { export function createRequestClient(cfg: ICreateClientConfig) {
const baseURL = cfg.baseURL; const baseURL = cfg.baseURL;
const timeout = cfg.timeout ?? REQUEST_TIMEOUT; const timeout = cfg.timeout ?? REQUEST_TIMEOUT;
let reqCount= 0
async function request<T = any>(options: IRequestOptions): Promise<T> { async function request<T = any>(options: IRequestOptions): Promise<T> {
// 组装 final options // 组装 final options
@@ -24,18 +23,14 @@ export function createRequestClient(cfg: ICreateClientConfig) {
// 全局处理请求 loading // 全局处理请求 loading
const loading = !cfg.loading ? true : cfg.loading // 接口请求参数不传loading默认显示loading const loading = !cfg.loading ? true : cfg.loading // 接口请求参数不传loading默认显示loading
if (loading) { loading && uni.showLoading()
uni.showLoading({ mask: true })
reqCount++
}
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
uni.request({ uni.request({
...intercepted, ...intercepted,
complete() { complete() {
// 请求完成关闭 loading // 请求完成关闭 loading
loading && reqCount-- loading && uni.hideLoading()
reqCount <= 0 && uni.hideLoading()
}, },
success(res: any) { success(res: any) {
// 委托给响应拦截器处理 // 委托给响应拦截器处理

View File

@@ -259,8 +259,11 @@ const handleChapterClick = (chapter: IChapter) => {
border-bottom-left-radius: 40rpx; border-bottom-left-radius: 40rpx;
.vip-badge { .vip-badge {
display: inline-block; position: absolute;
left: 0;
top: 0;
font-size: 24rpx; font-size: 24rpx;
display: inline-block;
background: linear-gradient(90deg, #6429db 0%, #0075ed 100%); background: linear-gradient(90deg, #6429db 0%, #0075ed 100%);
color: #fff; color: #fff;
padding: 10rpx 20rpx; padding: 10rpx 20rpx;

View File

@@ -1,72 +0,0 @@
<template>
<view class="price-info">
<text class="price">{{ goodsPrice.lowestPrice }} {{ t('global.coin') }}</text>
<text class="price-label">{{ goodsPrice.priceLabel }}</text>
<text v-if="goodsPrice.priceLabel" class="original-price">{{ props.goods.price }} {{ t('global.coin') }}</text>
</view>
</template>
<script lang="ts" setup>
import { computed } from 'vue'
import { useUserStore } from '@/stores/user'
import { calculateLowestPrice } from '@/utils/index'
import { t } from '@/utils/i18n'
import type { IGoods } from '@/types/order'
const userStore = useUserStore()
interface Props {
goods: IGoods
}
const props = defineProps<Props>()
// 计算商品价格
const goodsPrice = computed(() => {
const { activityPrice, vipPrice, price } = props.goods
const isVipUser = userStore.userVips && userStore.userVips.length > 0
const priceLabel = {
vipPrice: 'VIP优惠价',
activityPrice: '活动价',
price: ''
}
let priceData = null
if (isVipUser) {
priceData = { activityPrice, vipPrice, price }
} else {
priceData = { activityPrice, price }
}
const lowestPrice = calculateLowestPrice(priceData)
return {
lowestPrice: parseFloat(lowestPrice.value).toFixed(2),
priceLabel: priceLabel[lowestPrice.key as keyof typeof priceLabel]
}
})
</script>
<style lang="scss" scoped>
.price-info {
display: flex;
align-items: baseline;
gap: 10rpx;
color: #e97512;
.price {
font-size: 16px;
font-weight: bold;
color: #e97512;
}
.price-label {
font-size: 12px;
color: #e97512;
}
.original-price {
font-size: 12px;
color: #8a8a8a;
text-decoration: line-through;
}
}
</style>

View File

@@ -4,7 +4,7 @@
<view class="payment-item"> <view class="payment-item">
<view class="payment-left"> <view class="payment-left">
<image src="/static/icon/pay_3.png" class="payment-icon" /> <image src="/static/icon/pay_3.png" class="payment-icon" />
<text class="">{{ $t('global.coin') }}</text> <text class="">{{ $t('order.virtualCoin') }}</text>
<text class="text-[#7dc1f0]"> <text class="text-[#7dc1f0]">
({{ $t('order.balance') }}{{ peanutCoin || 0 }}) ({{ $t('order.balance') }}{{ peanutCoin || 0 }})
</text> </text>
@@ -25,12 +25,19 @@
<view class="tip-title">{{ $t('order.paymentTipTitle') }}</view> <view class="tip-title">{{ $t('order.paymentTipTitle') }}</view>
<view class="tip-item">{{ $t('order.paymentTip1') }}</view> <view class="tip-item">{{ $t('order.paymentTip1') }}</view>
<view class="tip-item"> <view class="tip-item">
{{ $t('order.paymentTip2-1') }} {{ $t('order.paymentTip2') }}
<text class="link-text" @click="copyToClipboard('yilujiankangkefu')">yilujiankangkefu</text> <text class="link-text" @click="makePhoneCall('022-24142321')">022-24142321</text>
{{ $t('order.paymentTip2-2') }} </view>
<text class="link-text" @click="copyToClipboard('AmazingLimited@163.com')"> <view class="tip-item">
AmazingLimited@163.com {{ $t('order.paymentTip3') }}
<text class="link-text" @click="copyToClipboard('publisher@tmrjournals.com')">
publisher@tmrjournals.com
</text> </text>
{{ $t('order.paymentTip3_1') }}
<text class="link-text" @click="copyToClipboard('yilujiankangkefu')">
yilujiankangkefu
</text>
{{ $t('order.paymentTip3_2') }}
</view> </view>
</view> </view>
</view> </view>
@@ -46,15 +53,6 @@ const props = defineProps({
default: 0 default: 0
} }
}) })
/**
* 跳转到充值页面
*/
const goToRecharge = () => {
uni.navigateTo({
url: '/pages/user/wallet/recharge/index?source=order'
})
}
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>

View File

@@ -79,13 +79,7 @@
"navigationBarTitleText": "%user.virtual%", "navigationBarTitleText": "%user.virtual%",
"navigationStyle": "custom" "navigationStyle": "custom"
} }
},{ }, {
"path": "pages/user/points/index",
"style": {
"navigationBarTitleText": "%user.points%",
"navigationStyle": "custom"
}
},{
"path": "pages/user/myBook/index", "path": "pages/user/myBook/index",
"style": { "style": {
"navigationStyle": "custom", "navigationStyle": "custom",

View File

@@ -230,43 +230,70 @@ function initScrollHeight() {
// 加载书籍详情 // 加载书籍详情
async function loadBookInfo() { async function loadBookInfo() {
const res = await bookApi.getBookInfo(bookId.value) try {
bookInfo.value = res.bookInfo const res = await bookApi.getBookInfo(bookId.value)
if (res.bookInfo) {
bookInfo.value = res.bookInfo
}
} catch (error) {
console.error('Failed to load book info:', error)
}
} }
// 加载购买商品信息 // 加载购买商品信息
async function loadGoodsInfo() { async function loadGoodsInfo() {
const res = await bookApi.getBookGoods(bookId.value) try {
goodsList.value = res.productList || [] const res = await bookApi.getBookGoods(bookId.value)
if (res.code === 0) {
goodsList.value = res.productList || []
}
} catch (error) {
console.error('Failed to load goods info:', error)
}
} }
// 加载统计数据 // 加载统计数据
async function loadBookCount() { async function loadBookCount() {
const res = await bookApi.getBookReadCount(bookId.value) try {
if (res.code === 0) { const res = await bookApi.getBookReadCount(bookId.value)
readCount.value = res.readCount || 0 if (res.code === 0) {
listenCount.value = res.listenCount || 0 readCount.value = res.readCount || 0
buyCount.value = res.buyCount || 0 listenCount.value = res.listenCount || 0
buyCount.value = res.buyCount || 0
}
} catch (error) {
console.error('Failed to load book count:', error)
} }
} }
// 加载评论 // 加载评论
async function loadComments() { async function loadComments() {
const res = await bookApi.getBookComments(bookId.value, 1, 10) try {
if (res.commentsTree && res.commentsTree.length > 0) { const res = await bookApi.getBookComments(bookId.value, 1, 10)
commentList.value = res.commentsTree if (res.commentsTree && res.commentsTree.length > 0) {
} else { commentList.value = res.commentsTree
} else {
nullText.value = t('common.data_null')
}
} catch (error) {
nullText.value = t('common.data_null') nullText.value = t('common.data_null')
console.error('Failed to load comments:', error)
} }
} }
// 加载推荐书籍 // 加载推荐书籍
async function loadRecommendBooks() { async function loadRecommendBooks() {
const res = await bookApi.getRecommendBook(bookId.value) try {
if (res.bookList && res.bookList.length > 0) { const res = await bookApi.getRecommendBook(bookId.value)
relatedBooks.value = res.bookList if (res.bookList && res.bookList.length > 0) {
} else { relatedBooks.value = res.bookList
} else {
nullBookText.value = t('common.data_null')
}
} catch (error) {
nullBookText.value = t('common.data_null') nullBookText.value = t('common.data_null')
console.error('Failed to load recommend books:', error)
} }
} }

View File

@@ -162,7 +162,7 @@
> >
<image :src="item.images" /> <image :src="item.images" />
<text class="book-text">{{ item.name }}</text> <text class="book-text">{{ item.name }}</text>
<text class="book-price">{{ item.minPrice }} {{ t('global.coin') }}</text> <text class="book-price">{{ item.minPrice }} 天医币</text>
<text v-if="formatStats(item)" class="book-flag">{{ <text v-if="formatStats(item)" class="book-flag">{{
formatStats(item) formatStats(item)
}}</text> }}</text>
@@ -219,9 +219,13 @@ const vipInfo = ref<IVipInfo | null>(null)
* 获取VIP信息 * 获取VIP信息
*/ */
const getVipInfo = async () => { const getVipInfo = async () => {
const res = await homeApi.getVipInfo() try {
if (res.vipInfo) { const res = await homeApi.getVipInfo()
vipInfo.value = res.vipInfo if (res.vipInfo) {
vipInfo.value = res.vipInfo
}
} catch (error) {
console.error('获取VIP信息失败:', error)
} }
} }
@@ -229,17 +233,21 @@ const getVipInfo = async () => {
* 获取我的书单 * 获取我的书单
*/ */
const getMyBooks = async () => { const getMyBooks = async () => {
const res = await homeApi.getMyBooks(1, 10) try {
if (res && res.code === 0) { const res = await homeApi.getMyBooks(1, 10)
showMyBooks.value = true if (res && res.code === 0) {
if (res.page.records && res.page.records.length > 0) { showMyBooks.value = true
myBooksList.value = res.page.records if (res.page.records && res.page.records.length > 0) {
myBooksList.value = res.page.records
}
} else {
// 未登录,跳转到登录页
uni.navigateTo({
url: '/pages/login/login'
})
} }
} else { } catch (error) {
// 未登录,跳转到登录页 console.error('获取我的书单失败:', error)
uni.navigateTo({
url: '/pages/login/login'
})
} }
} }
@@ -247,9 +255,13 @@ const getMyBooks = async () => {
* 获取推荐图书 * 获取推荐图书
*/ */
const getRecommendBooks = async () => { const getRecommendBooks = async () => {
const res = await homeApi.getRecommendBooks() try {
if (res.books && res.books.length > 0) { const res = await homeApi.getRecommendBooks()
recommendBooksList.value = res.books if (res.books && res.books.length > 0) {
recommendBooksList.value = res.books
}
} catch (error) {
console.error('获取推荐图书失败:', error)
} }
} }
@@ -257,12 +269,16 @@ const getRecommendBooks = async () => {
* 获取活动标签列表 * 获取活动标签列表
*/ */
const getActivityLabels = async () => { const getActivityLabels = async () => {
const res = await homeApi.getBookLabelList(1) try {
showActivity.value = true const res = await homeApi.getBookLabelList(1)
if (res.lableList && res.lableList.length > 0) { showActivity.value = true
activityLabelList.value = res.lableList if (res.lableList && res.lableList.length > 0) {
// 默认加载第一个标签的图书列表 activityLabelList.value = res.lableList
await getBooksByLabel(res.lableList[0].id, 'activity') // 默认加载第一个标签的图书列表
await getBooksByLabel(res.lableList[0].id, 'activity')
}
} catch (error) {
console.error('获取活动标签失败:', error)
} }
} }
@@ -270,12 +286,16 @@ const getActivityLabels = async () => {
* 获取分类标签列表 * 获取分类标签列表
*/ */
const getCategoryLabels = async () => { const getCategoryLabels = async () => {
const res = await homeApi.getBookLabelList(0) try {
showCategory.value = true const res = await homeApi.getBookLabelList(0)
if (res.lableList && res.lableList.length > 0) { showCategory.value = true
categoryLevel1List.value = res.lableList if (res.lableList && res.lableList.length > 0) {
// 默认加载第一个标签的二级标签 categoryLevel1List.value = res.lableList
await getSubLabels(res.lableList[0].id, 0) // 默认加载第一个标签的二级标签
await getSubLabels(res.lableList[0].id, 0)
}
} catch (error) {
console.error('获取分类标签失败:', error)
} }
} }
@@ -283,17 +303,21 @@ const getCategoryLabels = async () => {
* 获取二级标签列表 * 获取二级标签列表
*/ */
const getSubLabels = async (pid: number, index: number) => { const getSubLabels = async (pid: number, index: number) => {
const res = await homeApi.getSubLabelList(pid) try {
currentLevel1Index.value = index const res = await homeApi.getSubLabelList(pid)
if (res.lableList && res.lableList.length > 0) { currentLevel1Index.value = index
categoryLevel2List.value = res.lableList if (res.lableList && res.lableList.length > 0) {
currentLevel2Index.value = 0 categoryLevel2List.value = res.lableList
// 加载第一个二级标签的图书列表 currentLevel2Index.value = 0
await getBooksByLabel(res.lableList[0].id, 'category') // 加载第一个二级标签的图书列表
} else { await getBooksByLabel(res.lableList[0].id, 'category')
// 没有二级标签,直接加载一级标签的图书列表 } else {
categoryLevel2List.value = [] // 没有二级标签,直接加载一级标签的图书列表
await getBooksByLabel(pid, 'category') categoryLevel2List.value = []
await getBooksByLabel(pid, 'category')
}
} catch (error) {
console.error('获取二级标签失败:', error)
} }
} }
@@ -304,19 +328,23 @@ const getBooksByLabel = async (
labelId: number, labelId: number,
type: 'activity' | 'category' type: 'activity' | 'category'
) => { ) => {
const res = await homeApi.getBooksByLabel(labelId) try {
if (type === 'activity') { const res = await homeApi.getBooksByLabel(labelId)
if (res.bookList && res.bookList.length > 0) { if (type === 'activity') {
activityList.value = res.bookList if (res.bookList && res.bookList.length > 0) {
activityList.value = res.bookList
} else {
activityList.value = []
}
} else { } else {
activityList.value = [] if (res.bookList && res.bookList.length > 0) {
} categoryBookList.value = res.bookList
} else { } else {
if (res.bookList && res.bookList.length > 0) { categoryBookList.value = []
categoryBookList.value = res.bookList }
} else {
categoryBookList.value = []
} }
} catch (error) {
console.error('获取图书列表失败:', error)
} }
} }

View File

@@ -117,20 +117,31 @@ function initScrollHeight() {
// 加载书籍信息 // 加载书籍信息
async function loadBookInfo() { async function loadBookInfo() {
const res = await bookApi.getBookInfo(bookId.value) try {
bookInfo.value = res.bookInfo const res = await bookApi.getBookInfo(bookId.value)
if (res.bookInfo) {
bookInfo.value = res.bookInfo
}
} catch (error) {
console.error('Failed to load book info:', error)
}
} }
// 加载章节列表 // 加载章节列表
async function loadChapterList() { async function loadChapterList() {
const res = await bookApi.getBookChapter({ try {
bookId: bookId.value const res = await bookApi.getBookChapter({
}) bookId: bookId.value
})
if (res.chapterList && res.chapterList.length > 0) { if (res.chapterList && res.chapterList.length > 0) {
chapterList.value = res.chapterList chapterList.value = res.chapterList
} else { } else {
nullText.value = t('common.data_null')
}
} catch (error) {
nullText.value = t('common.data_null') nullText.value = t('common.data_null')
console.error('Failed to load chapter list:', error)
} }
} }

View File

@@ -245,8 +245,14 @@ function initAudioContext() {
// 加载书籍信息 // 加载书籍信息
async function loadBookInfo() { async function loadBookInfo() {
const res = await bookApi.getBookInfo(bookId.value) try {
bookInfo.value = res.bookInfo const res = await bookApi.getBookInfo(bookId.value)
if (res.bookInfo) {
bookInfo.value = res.bookInfo
}
} catch (error) {
console.error('Failed to load book info:', error)
}
} }
// 加载章节列表 // 加载章节列表

View File

@@ -164,9 +164,13 @@ function initScrollHeight() {
// 加载书籍信息 // 加载书籍信息
async function loadBookInfo() { async function loadBookInfo() {
const res = await bookApi.getBookInfo(bookId.value) try {
if (res.bookInfo) { const res = await bookApi.getBookInfo(bookId.value)
bookInfo.value = res.bookInfo if (res.bookInfo) {
bookInfo.value = res.bookInfo
}
} catch (error) {
console.error('Failed to load book info:', error)
} }
} }
@@ -176,15 +180,20 @@ async function loadComments() {
return return
} }
const res = await bookApi.getBookComments(bookId.value, page.value.current, page.value.limit) try {
const res = await bookApi.getBookComments(bookId.value, page.value.current, page.value.limit)
commentsCount.value = res.commentsCount || 0 commentsCount.value = res.commentsCount || 0
if (res.commentsTree && res.commentsTree.length > 0) { if (res.commentsTree && res.commentsTree.length > 0) {
commentList.value = [...commentList.value, ...res.commentsTree] commentList.value = [...commentList.value, ...res.commentsTree]
page.value.current += 1 page.value.current += 1
} else if (commentList.value.length === 0) { } else if (commentList.value.length === 0) {
nullText.value = t('common.data_null')
}
} catch (error) {
nullText.value = t('common.data_null') nullText.value = t('common.data_null')
console.error('Failed to load comments:', error)
} }
} }
@@ -266,29 +275,33 @@ function handleEmj(i: any) {
// 提交评论 // 提交评论
async function submitComment() { async function submitComment() {
const content = await getEditorContent() try {
const content = await getEditorContent()
if (!content || content === '<p><br></p>') {
uni.showToast({
title: t('bookDetails.enterText'),
icon: 'none'
})
return
}
const pid = replyTarget.value?.id || 0
await bookApi.insertComment(bookId.value, content, pid)
if (!content || content === '<p><br></p>') {
uni.showToast({ uni.showToast({
title: t('bookDetails.enterText'), title: t('workOrder.submit_success'),
icon: 'none' icon: 'success',
duration: 500
}) })
return
setTimeout(() => {
editorCtx.value?.clear()
resetComments()
}, 500)
} catch (error) {
console.error('Failed to submit comment:', error)
} }
const pid = replyTarget.value?.id || 0
await bookApi.insertComment(bookId.value, content, pid)
uni.showToast({
title: t('workOrder.submit_success'),
icon: 'success',
duration: 500
})
setTimeout(() => {
editorCtx.value?.clear()
resetComments()
}, 500)
} }
// 点赞/取消点赞 // 点赞/取消点赞
@@ -301,25 +314,29 @@ async function handleLike(comment: IComment) {
return return
} }
if (comment.isLike === 0) { try {
await bookApi.likeComment(comment.id) if (comment.isLike === 0) {
uni.showToast({ await bookApi.likeComment(comment.id)
title: t('bookDetails.supportSuccess'), uni.showToast({
icon: 'success', title: t('bookDetails.supportSuccess'),
duration: 1000 icon: 'success',
}) duration: 1000
} else { })
await bookApi.unlikeComment(comment.id) } else {
uni.showToast({ await bookApi.unlikeComment(comment.id)
title: t('bookDetails.supportCancel'), uni.showToast({
icon: 'success', title: t('bookDetails.supportCancel'),
duration: 1000 icon: 'success',
}) duration: 1000
} })
}
setTimeout(() => { setTimeout(() => {
resetComments() resetComments()
}, 200) }, 200)
} catch (error) {
console.error('Failed to like comment:', error)
}
} }
// 删除评论 // 删除评论
@@ -331,16 +348,20 @@ function handleDelete(comment: IComment) {
confirmText: t('common.confirm_text'), confirmText: t('common.confirm_text'),
success: async (res) => { success: async (res) => {
if (res.confirm) { if (res.confirm) {
await bookApi.deleteComment(comment.id) try {
uni.showToast({ await bookApi.deleteComment(comment.id)
title: t('bookDetails.deleteSuccess'), uni.showToast({
icon: 'success', title: t('bookDetails.deleteSuccess'),
duration: 500 icon: 'success',
}) duration: 500
})
setTimeout(() => { setTimeout(() => {
resetComments() resetComments()
}, 500) }, 500)
} catch (error) {
console.error('Failed to delete comment:', error)
}
} }
} }
}) })

View File

@@ -70,8 +70,14 @@ onLoad((options: any) => {
* 获取VIP信息 * 获取VIP信息
*/ */
const getVipInfo = async () => { const getVipInfo = async () => {
const res = await homeApi.getVipInfo() try {
vipInfo.value = res.vipInfo const res = await homeApi.getVipInfo()
if (res.vipInfo) {
vipInfo.value = res.vipInfo
}
} catch (error) {
console.error('获取VIP信息失败:', error)
}
} }
/** /**
@@ -85,19 +91,26 @@ const handleSearch = async () => {
loading.value = true loading.value = true
isEmpty.value = false isEmpty.value = false
const res = await homeApi.searchBooks({ try {
title: keyword.value.trim(), const res = await homeApi.searchBooks({
page: 1, title: keyword.value.trim(),
limit: 10, page: 1,
}) limit: 10,
if (res.bookList && res.bookList.length > 0) { })
searchResults.value = res.bookList if (res.bookList && res.bookList.length > 0) {
isEmpty.value = false searchResults.value = res.bookList
} else { isEmpty.value = false
} else {
searchResults.value = []
isEmpty.value = true
}
} catch (error) {
console.error('搜索失败:', error)
searchResults.value = [] searchResults.value = []
isEmpty.value = true isEmpty.value = true
} finally {
loading.value = false
} }
loading.value = false
} }
/** /**

View File

@@ -164,19 +164,23 @@ onLoad((options: any) => {
* 加载章节详情 * 加载章节详情
*/ */
const loadChapterDetail = async () => { const loadChapterDetail = async () => {
const res = await courseApi.getChapterDetail(chapterId.value) try {
if (res.code === 0 && res.data) { const res = await courseApi.getChapterDetail(chapterId.value)
chapterDetail.value = res.data.detail if (res.code === 0 && res.data) {
videoList.value = res.data.videos || [] chapterDetail.value = res.data.detail
videoList.value = res.data.videos || []
// 如果有历史播放记录,定位到对应视频 // 如果有历史播放记录,定位到对应视频
if (res.data.current) { if (res.data.current) {
const index = videoList.value.findIndex(v => v.id === res.data.current) const index = videoList.value.findIndex(v => v.id === res.data.current)
if (index !== -1) { if (index !== -1) {
currentVideoIndex.value = index currentVideoIndex.value = index
activeVideoIndex.value = index activeVideoIndex.value = index
}
} }
} }
} catch (error) {
console.error('加载章节详情失败:', error)
} }
} }

View File

@@ -257,25 +257,29 @@ const handleFirstLevelClick = (item: string) => {
* 获取课程分类数据 * 获取课程分类数据
*/ */
const getMedicalTags = async () => { const getMedicalTags = async () => {
const res = await courseSubjectClassificationApi.getCourseMedicalTree() try {
if (res && res.code === 0) { const res = await courseSubjectClassificationApi.getCourseMedicalTree()
if (res.labels && res.labels.length > 0) { if (res && res.code === 0) {
curseTagList.value = res.labels if (res.labels && res.labels.length > 0) {
// 根据 currentIndex 设置初始选中的分类 curseTagList.value = res.labels
if (res.labels[currentIndex.value]) { // 根据 currentIndex 设置初始选中的分类
const selectedTag = res.labels[currentIndex.value] if (res.labels[currentIndex.value]) {
if (selectedTag.isLast === 0) { const selectedTag = res.labels[currentIndex.value]
// 非终极分类,显示子分类 if (selectedTag.isLast === 0) {
if (selectedTag.children && selectedTag.children.length > 0) { // 非终极分类,显示子分类
sbuMedicalTagsList.value = selectedTag.children if (selectedTag.children && selectedTag.children.length > 0) {
} else { sbuMedicalTagsList.value = selectedTag.children
sbuMedicalTagsList.value = [] } else {
sbuMedicalTagsList.value = []
}
} }
} }
} else {
curseTagList.value = []
} }
} else {
curseTagList.value = []
} }
} catch (error) {
console.error('获取医学课程分类失败:', error)
} }
} }
/** /**
@@ -305,9 +309,13 @@ const curseClick = (item: IMedicalTag, index: number) => {
*/ */
const soulCateList = ref<IMedicalTag[]>([]) const soulCateList = ref<IMedicalTag[]>([])
const getSoulCateList = async () => { const getSoulCateList = async () => {
const res = await courseSubjectClassificationApi.getCourseSoulTree() try {
if (res.labels&&res.labels.length>0) { const res = await courseSubjectClassificationApi.getCourseSoulTree()
soulCateList.value = res.labels; if (res.labels&&res.labels.length>0) {
soulCateList.value = res.labels;
}
} catch (error) {
console.error('获取心理学课程分类失败:', error)
} }
} }
@@ -317,9 +325,13 @@ const getSoulCateList = async () => {
*/ */
const sociologyCateList = ref<IMedicalTag[]>([]) const sociologyCateList = ref<IMedicalTag[]>([])
const getSociologyCateList = async () => { const getSociologyCateList = async () => {
const res = await courseSubjectClassificationApi.getCourseSociologyTree() try {
if (res.labels&&res.labels.length>0) { const res = await courseSubjectClassificationApi.getCourseSociologyTree()
sociologyCateList.value = res.labels; if (res.labels&&res.labels.length>0) {
sociologyCateList.value = res.labels;
}
} catch (error) {
console.error('获取国学课程分类失败:', error)
} }
} }
@@ -357,13 +369,17 @@ const learnList = ref<ICourse[]>([]) // 观看记录列表
* 获取观看记录 * 获取观看记录
*/ */
const getLearnCourse = async () => { const getLearnCourse = async () => {
const res = await courseApi.getUserLateCourseList() try {
if (res && res.code === 0) { const res = await courseApi.getUserLateCourseList()
if (res.page && res.page.length > 0) { if (res && res.code === 0) {
learnList.value = res.page if (res.page && res.page.length > 0) {
} else { learnList.value = res.page
learnList.value = [] } else {
learnList.value = []
}
} }
} catch (error) {
console.error('获取观看记录失败:', error)
} }
} }
@@ -373,13 +389,17 @@ const newsList = ref<INews[]>([]) // 新闻列表
* 获取新闻列表 * 获取新闻列表
*/ */
const getNewsList = async () => { const getNewsList = async () => {
const res = await commonApi.getMessageList(0, 1, 0) try {
if (res && res.code === 0) { const res = await commonApi.getMessageList(0, 1, 0)
if (res.messages && res.messages.length > 0) { if (res && res.code === 0) {
newsList.value = res.messages if (res.messages && res.messages.length > 0) {
} else { newsList.value = res.messages
newsList.value = [] } else {
newsList.value = []
}
} }
} catch (error) {
console.error('获取新闻列表失败:', error)
} }
} }
/** /**
@@ -403,17 +423,21 @@ const tryListenList = ref<ICourse[]>([]) // 试听课程列表
* 获取试听课程列表 * 获取试听课程列表
*/ */
const getTryListenList = async () => { const getTryListenList = async () => {
const res = await courseApi.getMarketCourseList({ try {
page: 1, const res = await courseApi.getMarketCourseList({
limit: 6, page: 1,
id: 1 limit: 6,
}) id: 1
if (res && res.code === 0) { })
if (res.courseList && res.courseList.records && res.courseList.records.length > 0) { if (res && res.code === 0) {
tryListenList.value = res.courseList.records if (res.courseList && res.courseList.records && res.courseList.records.length > 0) {
} else { tryListenList.value = res.courseList.records
tryListenList.value = [] } else {
tryListenList.value = []
}
} }
} catch (error) {
console.error('获取试听课程失败:', error)
} }
} }

View File

@@ -52,26 +52,30 @@ const subCategoryList = ref<ICategory[]>([]) // 子级分类列表
* 获取分类下的子级分类 * 获取分类下的子级分类
*/ */
const getSubCategoryList = async () => { const getSubCategoryList = async () => {
let res: any = null try {
switch (subject.value) { let res: any = null
case '医学': switch (subject.value) {
res = await courseSubjectClassificationApi.getCourseMedicalChildLabels(categoryId.value) case '医学':
break res = await courseSubjectClassificationApi.getCourseMedicalChildLabels(categoryId.value)
case '心理学': break
res = await courseSubjectClassificationApi.getCourseSoulChildLabels(categoryId.value) case '心理学':
break res = await courseSubjectClassificationApi.getCourseSoulChildLabels(categoryId.value)
} break
if (res && res.code === 0) {
if (res.labels && res.labels.length > 0) {
subCategoryList.value = res.labels
// 默认选中第一个tab
tab_category_id.value = res.labels[0].id
radio_category_id.value = res.labels[0].children[0] && res.labels[0].children[0].id || 0
} else {
subCategoryList.value = []
tab_category_id.value = 0
radio_category_id.value = 0
} }
if (res && res.code === 0) {
if (res.labels && res.labels.length > 0) {
subCategoryList.value = res.labels
// 默认选中第一个tab
tab_category_id.value = res.labels[0].id
radio_category_id.value = res.labels[0].children[0] && res.labels[0].children[0].id || 0
} else {
subCategoryList.value = []
tab_category_id.value = 0
radio_category_id.value = 0
}
}
} catch (error) {
console.error('获取分类下的子级分类失败:', error)
} }
} }

View File

@@ -191,12 +191,16 @@ const getCode = async () => {
if (!isEmailEmpty()) return if (!isEmailEmpty()) return
if (!isEmailVerified(email.value)) return if (!isEmailVerified(email.value)) return
await commonApi.sendMailCaptcha(email.value) try {
uni.showToast({ await commonApi.sendMailCaptcha(email.value)
title: t('login.sendCodeSuccess'), uni.showToast({
icon: 'none' title: t('login.sendCodeSuccess'),
}) icon: 'none'
getCodeState() })
getCodeState()
} catch (error) {
console.error('Send code error:', error)
}
} }
/** /**
@@ -260,16 +264,20 @@ const onSubmit = async () => {
if (!isConfirmPasswordEmpty()) return if (!isConfirmPasswordEmpty()) return
if (!isPasswordMatch()) return if (!isPasswordMatch()) return
await resetPassword(email.value, code.value, password.value) try {
await resetPassword(email.value, code.value, password.value)
uni.showModal({ uni.showModal({
title: t('global.tips'), title: t('global.tips'),
content: t('forget.passwordChanged'), content: t('forget.passwordChanged'),
showCancel: false, showCancel: false,
success: () => { success: () => {
uni.navigateBack() uni.navigateBack()
} }
}) })
} catch (error) {
console.error('Reset password error:', error)
}
} }
</script> </script>

View File

@@ -285,8 +285,13 @@ const verifyCodeLogin = async () => {
if (!isCodeEmpty()) return false if (!isCodeEmpty()) return false
const res = await loginWithCode(email.value, code.value) try {
return res || null const res = await loginWithCode(email.value, code.value)
return res
} catch (error) {
console.error('验证码登录失败:', error)
return null
}
} }
// 密码登录 // 密码登录
const passwordLogin = async () => { const passwordLogin = async () => {
@@ -296,8 +301,13 @@ const passwordLogin = async () => {
if (!isPasswordEmpty()) return false if (!isPasswordEmpty()) return false
const res = await loginWithPassword(phoneEmail.value, password.value) try {
return res || null const res = await loginWithPassword(phoneEmail.value, password.value)
return res
} catch (error) {
console.error('密码登录失败:', error)
return null
}
} }
// 提交登录 // 提交登录
const onSubmit = async () => { const onSubmit = async () => {

View File

@@ -26,8 +26,28 @@
<!-- 商品信息 --> <!-- 商品信息 -->
<view class="goods-info"> <view class="goods-info">
<text class="goods-name">{{ item.productName }}</text> <text class="goods-name">{{ item.productName }}</text>
<!-- 商品价格组件 -->
<GoodsPrice :goods="item" /> <!-- 价格信息 -->
<view class="price-info">
<!-- VIP优惠价 -->
<!-- <view v-if="item.isVipPrice === 1 && item.vipPrice" class="price-row">
<text class="vip-price">{{ item.vipPrice.toFixed(2) }}</text>
<text class="vip-label">{{ $t('order.vipPriceLabel') }}</text>
<text class="original-price">{{ item.price.toFixed(2) }}</text>
</view> -->
<!-- 活动价 -->
<!-- <view v-else-if="item.activityPrice && item.activityPrice > 0" class="price-row">
<text class="activity-price">{{ item.activityPrice.toFixed(2) }}</text>
<text class="activity-label">{{ $t('order.activityLabel') }}</text>
<text class="original-price">{{ item.price.toFixed(2) }}</text>
</view> -->
<!-- 普通价格 -->
<view class="price-row">
<text class="normal-price">{{ item.price.toFixed(2) }} 天医币</text>
</view>
</view>
<!-- 数量 --> <!-- 数量 -->
<!-- <view class="quantity-row"> <!-- <view class="quantity-row">
@@ -49,20 +69,25 @@
</template> </template>
<script lang="ts" setup> <script lang="ts" setup>
import { ref } from 'vue' import { ref, computed } from 'vue'
import { onLoad } from '@dcloudio/uni-app' import { onLoad } from '@dcloudio/uni-app'
import { orderApi } from '@/api/modules/order' import { orderApi } from '@/api/modules/order'
import type { IOrderGoods } from '@/types/order'
import Confirm from '@/components/order/Confirm.vue'; import Confirm from '@/components/order/Confirm.vue';
import GoodsPrice from '@/components/order/GoodsPrice.vue'; import type { IOrderGoods } from '@/types/order'
/** /**
* 获取用户信息 * 获取用户信息
*/ */
const userInfo = ref({}) const userInfo = ref(null)
const getUserInfo = async () => { const getUserInfo = async () => {
const res = await orderApi.getUserInfo() try {
userInfo.value = res.result || {} const res = await orderApi.getUserInfo()
if (res.code === 0) {
userInfo.value = res.result || {}
}
} catch (error) {
console.error('获取用户信息失败:', error)
}
} }
/** /**
@@ -71,11 +96,15 @@ const getUserInfo = async () => {
const goodsIds = ref<string>('') const goodsIds = ref<string>('')
const goodsList = ref<IOrderGoods[]>([]) const goodsList = ref<IOrderGoods[]>([])
const getGoodsList = async () => { const getGoodsList = async () => {
// 获取商品详情 try {
const res = await orderApi.getShopProductListByIds(goodsIds.value) // 获取商品详情
const res = await orderApi.getShopProductListByIds(goodsIds.value)
if (res.shopProductList?.length > 0) { if (res.code === 0 && res.shopProductList?.length > 0) {
goodsList.value = res.shopProductList goodsList.value = res.shopProductList
}
} catch (error) {
console.error('获取商品列表失败:', error)
} }
} }
@@ -152,6 +181,43 @@ onLoad(async (options: any) => {
overflow: hidden; overflow: hidden;
} }
.price-info {
.price-row {
display: flex;
align-items: baseline;
gap: 10rpx;
.vip-price,
.activity-price {
font-size: 32rpx;
font-weight: bold;
color: #e97512;
}
.normal-price {
font-size: 32rpx;
font-weight: bold;
color: #333;
}
.vip-label {
font-size: 22rpx;
color: #fa2d12;
}
.activity-label {
font-size: 22rpx;
color: #613804;
}
.original-price {
font-size: 24rpx;
color: #999;
text-decoration: line-through;
}
}
}
.quantity-row { .quantity-row {
display: flex; display: flex;
align-items: center; align-items: center;

View File

@@ -23,38 +23,41 @@
<!-- VIP订阅卡片 --> <!-- VIP订阅卡片 -->
<view class="vip-card-section"> <view class="vip-card-section">
<view class="vip-card"> <view class="vip-card">
用户VIP功能重写中 <view class="vip-card-title">{{ $t('user.vip') }}</view>
<!-- <view v-if="vipInfo.id" class="vip-info"> <view class="vip-card-content">
<text class="label">{{ $t('user.vip') }}</text> <view class="vip-item-list">
<text class="value">{{ vipInfo.endTime ? vipInfo.endTime.split(' ')[0] : '' }}</text> <view v-if="vipInfo.length > 0" v-for="vip in vipInfo">{{ vipTypeDict[vip.type] }}有效期到 {{ parseTime(vip.endTime, '{y}-{m}-{d}') }}</view>
</view> <view v-else>办理课程VIP畅享更多权益</view>
<wd-button </view>
v-else <wd-button v-if="vipInfo.length > 0" plain type="primary" size="small" @click="goSubscribe">{{ $t('vip.renewal') }}</wd-button>
type="success" <wd-button v-else plain type="primary" size="small" @click="goSubscribe">{{ $t('vip.openVip') }}</wd-button>
size="small" </view>
@click="goSubscribe" <view class="vip-card-content">
> <view class="vip-item-list">
{{ $t('user.subscribe') }} <view v-if="vipInfoEbook.length > 0" v-for="vip in vipInfoEbook">电子书VIP{{ vipTypeDict[vip.type] }}有效期到 {{ parseTime(vip.endTime, '{y}-{m}-{d}') }}</view>
</wd-button> --> <view v-else>办理电子书VIP畅享更多权益</view>
</view>
<wd-button v-if="!vipInfoEbook.length" plain type="primary" size="small" @click="goSubscribe">{{ $t('vip.openVip') }}</wd-button>
</view>
</view> </view>
</view> </view>
<!-- 我的资产 --> <!-- 我的资产 -->
<view class="vip-card-section wallet-section"> <view class="assets-card-section wallet-section">
<view class="vip-card wallet_l"> <view class="assets-card wallet_l">
<view class="assets"> <view class="assets">
<view @click="goVirtualList"> <view @click="goVirtualList">
<view class="assets_row">{{ t('global.coin') }}</view> <view class="assets_row">{{ t('global.coin') }}</view>
<view>{{userInfo.peanutCoin ?? 1}}</view> <view>{{userInfo.peanutCoin ?? 1}}</view>
</view> </view>
<view @click="goPointsList"> <view>
<view class="assets_row">积分</view> <view class="assets_row">积分</view>
<view>{{userInfo.jf ?? 1}}</view> <view>{{userInfo.jf ?? 1}}</view>
</view> </view>
<!-- <view> <view>
<view class="assets_row">优惠卷</view> <view class="assets_row">优惠卷</view>
<view>0</view> <view>0</view>
</view> --> </view>
</view> </view>
<view class="chong_btn" @click="goRecharge"> </view> <view class="chong_btn" @click="goRecharge"> </view>
<!-- <text class="wallet_title">{{$t('my.coin')}}<uni-icons type="help" size="19" color="#666"></uni-icons></text> <!-- <text class="wallet_title">{{$t('my.coin')}}<uni-icons type="help" size="19" color="#666"></uni-icons></text>
@@ -77,14 +80,15 @@
<script setup lang="ts"> <script setup lang="ts">
import { ref, computed, onMounted } from 'vue' import { ref, computed, onMounted } from 'vue'
import { useUserStore } from '@/stores/user' import { useUserStore } from '@/stores/user'
import { useSysStore } from '@/stores/sys'
import { getUserInfo, getVipInfo } from '@/api/modules/user' import { getUserInfo, getVipInfo } from '@/api/modules/user'
import type { IVipInfo } from '@/types/user' import type { IVipInfo } from '@/types/user'
import { useI18n } from 'vue-i18n'
import { getNotchHeight } from '@/utils/system' import { getNotchHeight } from '@/utils/system'
import { onShow } from '@dcloudio/uni-app' import { parseTime } from '@/utils/index'
import { t } from '@/utils/i18n'
const { t } = useI18n()
const userStore = useUserStore() const userStore = useUserStore()
const sysStore = useSysStore()
// 默认头像 // 默认头像
const defaultAvatar = '/static/home_icon.png' const defaultAvatar = '/static/home_icon.png'
@@ -93,11 +97,11 @@
const userInfo = computed(() => userStore.userInfo) const userInfo = computed(() => userStore.userInfo)
// VIP信息 // VIP信息
const vipInfo = ref<IVipInfo>({ const vipInfo = computed(() => userStore.userVips)
id: 0, const vipInfoEbook = computed(() => userStore.userEbookVip)
endTime: '',
vipType: 0 // VIP类型字典
}) const vipTypeDict = sysStore.vipTypeDict
// 平台信息 // 平台信息
const platform = ref('') const platform = ref('')
@@ -148,21 +152,12 @@
* 获取数据 * 获取数据
*/ */
const getData = async () => { const getData = async () => {
console.log(userInfo.value); // 获取用户信息
try { const userInfoRes = await getUserInfo()
// 获取用户信息 if (userInfoRes.result) {
const userRes = await getUserInfo() userStore.setUserInfo(userInfoRes.result)
console.log(userRes, '-----userRes');
if (userRes.result) {
userStore.setUserInfo(userRes.result)
}
// 获取VIP信息
const vipRes = await getVipInfo()
if (vipRes.vipInfo) {
vipInfo.value = vipRes.vipInfo
} }
}} }
/** /**
* 跳转到设置页面 * 跳转到设置页面
@@ -187,7 +182,7 @@
*/ */
const goSubscribe = () => { const goSubscribe = () => {
uni.navigateTo({ uni.navigateTo({
url: '/pages/user/wallet/index' url: '/pages/vip/book'
}) })
} }
@@ -227,21 +222,11 @@
}) })
} }
/**
* 跳转积分列表
*/
const goPointsList = () => {
uni.navigateTo({
url: '/pages/user/points/index'
})
}
onShow(() => {
getData()
})
onMounted(() => { onMounted(() => {
getPlatform() getPlatform()
getData()
}) })
</script> </script>
@@ -311,12 +296,47 @@
} }
} }
// vip 卡片
.vip-card-section { .vip-card-section {
padding: 0 20rpx; padding: 0 20rpx;
margin-bottom: 20rpx; margin-bottom: 20rpx;
.vip-card {
background: linear-gradient(135deg, #3E7EF5 0%, #9134EA 100%);
border-radius: 15rpx;
padding: 26rpx 30rpx 10rpx;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
.vip-card-title {
font-size: 32rpx;
color: #fff;
font-weight: bold;
margin-bottom: 20rpx;
}
.vip-card-content {
display: flex;
align-items: center;
justify-content: space-between;
background-color: rgba(255, 255, 255, 0.2);
border-radius: 8px;
padding: 30rpx;
margin-bottom: 20rpx;
}
.vip-item-list {
font-size: 28rpx;
color: #fff;
font-weight: bold;
}
}
}
.assets-card-section {
padding: 0 20rpx;
margin-bottom: 20rpx;
} }
.vip-card { .assets-card {
background: #fff; background: #fff;
border-radius: 15rpx; border-radius: 15rpx;
padding: 40rpx; padding: 40rpx;
@@ -325,7 +345,7 @@
justify-content: space-between; justify-content: space-between;
box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.05); box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.05);
.vip-info { .assets-info {
text-align: center; text-align: center;
.label { .label {
@@ -384,7 +404,7 @@
border-radius: 50rpx; border-radius: 50rpx;
color: #fffbf6; color: #fffbf6;
padding: 10rpx 32rpx; padding: 10rpx 32rpx;
background-color: #007bff; background-image: linear-gradient(90deg, #3ab3ae 0%, #d5ecdd 200%);
} }
.assets { .assets {

View File

@@ -27,7 +27,7 @@
<ProductInfo v-if="order.orderType === 'abroadBook'" :data="order.bookEntity" :type="order.orderType" /> <ProductInfo v-if="order.orderType === 'abroadBook'" :data="order.bookEntity" :type="order.orderType" />
<ProductInfo v-if="order.orderType === 'vip'" :data="order.vipBuyConfigEntity" :type="order.orderType" /> <ProductInfo v-if="order.orderType === 'vip'" :data="order.vipBuyConfigEntity" :type="order.orderType" />
<!-- 三种订单类型商品信息 end --> <!-- 三种订单类型商品信息 end -->
<view class="order-item-total-price">实付款{{ order.orderMoney }} {{ t('global.coin') }}</view> <view class="order-item-total-price">实付款{{ order.orderMoney }} 天医币</view>
<template #footer> <template #footer>
<view> <view>

View File

@@ -1,135 +0,0 @@
<template>
<z-paging ref="paging" v-model="bookList" auto-show-back-to-top class="my-book-page" @query="pointsList" :default-page-size="10">
<template #top>
<!-- 自定义导航栏 -->
<nav-bar :title="$t('user.consumptionRecord')"></nav-bar>
</template>
<view class="recharge-record" v-if="(bookList && bookList.length > 0)">
<view class="go-gecharge" @click="goRecharge">
<view>{{$t('order.recharge')}}</view>
<view><wd-icon name="arrow-right" size="16px" color="#fff"/></view>
</view>
<view class="title">{{$t('order.rechargeConsumptionList')}}</view>
<view class="recharge-record-block" v-for="(item, index) in bookList" :key="index">
<view class="recharge-record-block-row">{{item.orderType}}<text class="text">{{item.changeAmount}}</text></view>
<view class="time">{{item.createTime}}</view>
</view>
</view>
</z-paging>
</template>
<script setup lang="ts">
import { ref } from 'vue'
import { useI18n } from 'vue-i18n'
import { useUserStore } from '@/stores/user'
import { getPointsData } from '@/api/modules/user'
const { t } = useI18n()
const paging = ref<any>()
const userStore = useUserStore()
// 数据状态
const bookList = ref([])
const loading = ref(false)
const firstLoad = ref(true)
// 充值记录列表
async function pointsList(pageNo : number, pageSize : number) {
const userId = userStore.userInfo.id
loading.value = true
try {
const res = await getPointsData(pageNo, pageSize, userId)
console.log(res, 'res');
paging.value.complete(res.transactionDetailsList.records)
} catch (error) {
paging.value.complete(false)
console.error('Failed to load book list:', error)
} finally {
firstLoad.value = false
loading.value = false
}
}
/**
* 跳转充值页面
*/
const goRecharge = () => {
uni.navigateTo({
url: '/pages/user/recharge/index'
})
}
</script>
<style lang="scss" scoped>
.my-book-page {
background: #f7faf9;
min-height: 100vh;
.recharge-record {
background: #fff;
border-radius: 15rpx;
overflow: hidden;
box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.05);
// padding: 20rpx;
margin: 20rpx;
.go-gecharge{
//height: 100rpx;
background: linear-gradient(to right, #007bff, #17a2b8);
font-size: 30rpx;
font-weight: bold;
color: #fff;
padding: 20rpx;
margin-bottom: 20rpx;
display: flex;justify-content:space-between;align-items:center
}
.title {
font-size: 30rpx;
padding-left:20rpx;
margin-bottom: 30rpx;
color: #007bff;
font-weight: bold;
}
.recharge-record-block {
border-bottom: 1px solid #e0e0e0;
padding: 20rpx;
.time{
font-size: 20rpx;
}
.recharge-record-block-row {
display: flex;
justify-content: space-between;
margin-bottom: 20rpx;
.text{
color: #007bff;
}
}
}
}
}
.empty-state {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding-top: 200rpx;
image {
width: 400rpx;
height: 300rpx;
margin-bottom: 40rpx;
}
.empty-text {
font-size: 28rpx;
color: #999;
margin-bottom: 50rpx;
}
}
</style>

View File

@@ -199,10 +199,14 @@ const avatarUrl = ref('')
*/ */
const userInfo = ref<any>({}) // 用户信息 const userInfo = ref<any>({}) // 用户信息
const getData = async () => { const getData = async () => {
const res = await getUserInfo() try {
if (res.result) { const res = await getUserInfo()
userStore.setUserInfo(res.result) if (res.result) {
userInfo.value = res.result userStore.setUserInfo(res.result)
userInfo.value = res.result
}
} catch (error) {
console.error('获取用户信息失败:', error)
} }
} }
@@ -320,12 +324,16 @@ const sendCode = async () => {
return return
} }
await sendEmailCode(editForm.value.email) try {
uni.showToast({ await sendEmailCode(editForm.value.email)
title: t('user.sendCodeSuccess'), uni.showToast({
icon: 'none' title: t('user.sendCodeSuccess'),
}) icon: 'none'
startCountdown() })
startCountdown()
} catch (error) {
console.error('发送验证码失败:', error)
}
} }
/** /**
@@ -390,88 +398,92 @@ const checkPasswordStrength = () => {
const handleSubmit = async () => { const handleSubmit = async () => {
const key = currentField.value?.key const key = currentField.value?.key
// 构建更新数据对象 try {
let updateData: any = Object.assign({}, userInfo.value) // 构建更新数据对象
let updateData: any = Object.assign({}, userInfo.value)
switch (key) { switch (key) {
case 'email': case 'email':
// 更新邮箱 // 更新邮箱
if (!editForm.value.email || !editForm.value.code) { if (!editForm.value.email || !editForm.value.code) {
uni.showToast({ uni.showToast({
title: t('user.pleaseInputCode'), title: t('user.pleaseInputCode'),
icon: 'none' icon: 'none'
}) })
return return
} }
await updateEmail(userInfo.value.id, editForm.value.email, editForm.value.code) await updateEmail(userInfo.value.id, editForm.value.email, editForm.value.code)
break break
case 'password': case 'password':
// 更新密码 // 更新密码
if (!passwordOk.value) { if (!passwordOk.value) {
uni.showToast({ uni.showToast({
title: passwordNote.value, title: passwordNote.value,
icon: 'none' icon: 'none'
}) })
return return
} }
if (editForm.value.password !== editForm.value.confirmPassword) { if (editForm.value.password !== editForm.value.confirmPassword) {
uni.showToast({ uni.showToast({
title: t('user.passwordNotMatch'), title: t('user.passwordNotMatch'),
icon: 'none' icon: 'none'
}) })
return return
} }
await updatePassword(userInfo.value.id, editForm.value.password) await updatePassword(userInfo.value.id, editForm.value.password)
break break
case 'avatar': case 'avatar':
// 更新头像 // 更新头像
console.log('avatarUrl.value:', avatarUrl.value) console.log('avatarUrl.value:', avatarUrl.value)
if (!avatarUrl.value) { if (!avatarUrl.value) {
uni.showToast({ uni.showToast({
title: t('common.pleaseSelect') + t('user.avatar'), title: t('common.pleaseSelect') + t('user.avatar'),
icon: 'none' icon: 'none'
}) })
return return
} }
// 如果是新上传的图片,需要先上传 // 如果是新上传的图片,需要先上传
updateData.avatar = avatarUrl.value updateData.avatar = avatarUrl.value
await updateUserInfo(updateData) await updateUserInfo(updateData)
break break
case 'sex': case 'sex':
// 更新性别 // 更新性别
updateData.sex = editValue.value updateData.sex = editValue.value
await updateUserInfo(updateData) await updateUserInfo(updateData)
break break
default: default:
// 更新其他字段 // 更新其他字段
if (!editValue.value) { if (!editValue.value) {
uni.showToast({ uni.showToast({
title: getPlaceholder(key), title: getPlaceholder(key),
icon: 'none' icon: 'none'
}) })
return return
} }
updateData[key] = editValue.value updateData[key] = editValue.value
await updateUserInfo(updateData) await updateUserInfo(updateData)
break break
}
uni.showToast({
title: t('user.updateSuccess'),
icon: 'success'
})
closeModal()
// 刷新数据
setTimeout(() => {
getData()
}, 500)
} catch (error) {
console.error('更新失败:', error)
} }
uni.showToast({
title: t('user.updateSuccess'),
icon: 'success'
})
closeModal()
// 刷新数据
setTimeout(() => {
getData()
}, 500)
} }
/** /**

View File

@@ -8,8 +8,8 @@
<view class="recharge_block" @click="chosPric(item)" <view class="recharge_block" @click="chosPric(item)"
:class="aloneItem.priceTypeId === item.priceTypeId ? 'selected' : ''" :class="aloneItem.priceTypeId === item.priceTypeId ? 'selected' : ''"
v-for="item in rechargeList.bookBuyConfigList" :key="item.priceTypeId"> v-for="item in rechargeList.bookBuyConfigList" :key="item.priceTypeId">
<view class="recharge_money">{{item.realMoney}}</view> <view class="recharge_money">{{item.money}}</view>
<view>{{item.money}}{{$t('order.virtualCoin')}}</view> <view>{{item.realMoney}}{{$t('order.virtualCoin')}}</view>
<!-- 红框位置的618活动标签 --> <!-- 红框位置的618活动标签 -->
<!-- <view class="activity-tag">618活动</view> --> <!-- <view class="activity-tag">618活动</view> -->
<span class="activity-label" v-if="item.givejf >0">618充值活动</span> <span class="activity-label" v-if="item.givejf >0">618充值活动</span>
@@ -23,26 +23,25 @@
<view class="cha_fangsh"> <view class="cha_fangsh">
<view class="cf_title PM_font">{{$t('user.paymentMethod')}}</view> <view class="cf_title PM_font">{{$t('user.paymentMethod')}}</view>
<view class="cf_radio"> <view class="cf_radio">
<radio-group v-for="item in iosPaylist"> <radio-group v-for="item in iosPaylist" @click="choseType(item.id)">
<view style="width: 100%"> <view style="width: 100%">
<view :class="payType == item.id ? 'Tab_xf cf_xuanx' : 'cf_xuanx'"> <view :class="payType == item.id ? 'Tab_xf cf_xuanx' : 'cf_xuanx'">
<!-- <image class="pay_item_img" :src="item.imgUrl" mode="aspectFil"> <!-- <image class="pay_item_img" :src="item.imgUrl" mode="aspectFil">
</image> --> </image> -->
<text>{{ item.title }}</text> <text>{{ item.title }}</text>
<radio :checked="payType === item.id" @click="choseType(item.id)"></radio> <radio :checked="payType === item.id"></radio>
</view> </view>
</view> </view>
</radio-group> </radio-group>
</view> </view>
</view> </view>
<view class="agree_wo flexbox"> <view class="agree_wo flexbox">
<radio-group class="agree" v-for="(item, index) in argee" :key="index"> <radio-group class="agree" v-for="(item, index) in argee" :key="index" @click="radioCheck">
<view> <view>
<radio class="agreeRadio" :value="item.id" :checked="state" @click="radioCheck" color="#007bff"></radio> <radio class="agreeRadio" :value="item.id" :checked="state" color="#007bff"></radio>
</view> </view>
</radio-group> </radio-group>
<view>{{$t('order.readAgree')}}<span class="highlight" <view>{{$t('order.readAgree')}}<span class="highlight" @click="showAgreement">{{$t('order.valueAddedServices')}}</span></view>
@click="showAgreement">{{$t('order.valueAddedServices')}}</span></view>
</view> </view>
<view class="bottom-button-container"> <view class="bottom-button-container">
<button class="recharge-button" @click="handleRecharge">{{$t('order.recharge')}}</button> <button class="recharge-button" @click="handleRecharge">{{$t('order.recharge')}}</button>
@@ -62,15 +61,12 @@
<script setup lang="ts"> <script setup lang="ts">
import { ref, computed, onMounted, toRefs, reactive } from 'vue' import { ref, computed, onMounted, toRefs, reactive } from 'vue'
import { useI18n } from 'vue-i18n' import { useI18n } from 'vue-i18n'
import { useMessage } from '@/uni_modules/wot-design-uni' import { useMessage } from '@/uni_modules/wot-design-uni'
import { getBookBuyConfigList, getAgreement, getActivityDescription, verifyGooglePay, getPlaceOrder } from '@/api/modules/user' import { getBookBuyConfigList, getAgreement, getActivityDescription } from '@/api/modules/user'
import { onLogin } from '../../../../项目/nuttyreading-hw/config/login'; // const googlePay = uni.requireNativePlugin("sn-googlepay5");
import { useUserStore } from '@/stores/user'
const googlePay = uni.requireNativePlugin("sn-googlepay5");
const { t } = useI18n() const { t } = useI18n()
const message = useMessage() const message = useMessage()
const userStore = useUserStore()
const payType = ref('1') const payType = ref('1')
const iosPaylist = ref([ const iosPaylist = ref([
{ {
@@ -111,12 +107,9 @@
const remark = ref({}) const remark = ref({})
const isConnected = ref(false) const isConnected = ref(false)
const purchaseToken = ref()
// 订单编号
const orderSn = ref('')
/** /**
* 获取使用环境 * 获取使用环境
*/ */
const getDevName = () => { const getDevName = () => {
@@ -132,34 +125,9 @@
getData() getData()
} }
/**
* 获取订单编号
*/
const getPlaceOrderObj = async () => {
const {priceTypeId, realMoney, money} = toRefs(aloneItem.value)
const data = {
userId: userStore.userInfo.id, // 用户di
paymentMethod: '5', //支付方式4point 5google
orderMoney: money.value, //订单金额
realMoney: realMoney.value, //实际金额
come: '10', //订单来源 2医学吴门医述 10海外读书
orderType: 'point', //订单类型, point充值、order课程、书、vip 课vip、abroadVip 书vip、relearn 复读、trainingClass 培训班
productId: priceTypeId.value // 商品id
}
try {
const res = await getPlaceOrder(data)
orderSn.value = res.orderSn
console.log(orderSn.value, '获取订单号');
getGooglePay()
} catch (error) {
console.error('获取订单号失败', error)
}
}
// 点击金额 // 点击金额
const chosPric = (item : any) => { const chosPric = (item : any) => {
console.log(item, '金额每项'); console.log(item,'金额每项');
aloneItem.value = item; aloneItem.value = item;
}; };
@@ -168,6 +136,7 @@
*/ */
const radioCheck = () => { const radioCheck = () => {
state.value = !state.value state.value = !state.value
console.log('点击了', state.value);
} }
/** /**
@@ -185,7 +154,6 @@
console.log(rechargeList.value.bookBuyConfigList, '充值列表'); console.log(rechargeList.value.bookBuyConfigList, '充值列表');
// 默认选择第一个金额 // 默认选择第一个金额
aloneItem.value = rechargeList.value.bookBuyConfigList[0] aloneItem.value = rechargeList.value.bookBuyConfigList[0]
} catch (error) { } catch (error) {
console.error('获取订单列表失败:', error) console.error('获取订单列表失败:', error)
} }
@@ -227,17 +195,17 @@
// payType.value = val; // payType.value = val;
} }
const handleRecharge = async () => { const handleRecharge = () => {
getPlaceOrderObj() if(!state.value){
if (!state.value) {
uni.showToast({ uni.showToast({
title: t('order.readAgreeServices'), title: t('order.readAgreeServices'),
icon: 'none' icon: 'none'
}) })
return return
} }
uni.showLoading({ title: '生成订单中...' }) uni.showLoading({ title: '加载中...' })
console.log('立即充值');
getGooglePay()
} }
/** /**
@@ -245,11 +213,12 @@
*/ */
const getGooglePay = () => { const getGooglePay = () => {
googlePay.init({ googlePay.init({
}, (e : any) => { }, (e:any) => {
console.log('init', e); console.log('init', e);
if (e.code == 0) { if (e.code == 0) {
isConnected.value = true; isConnected.value = true;
getQuerySku() getQuerySku()
// 初始化成功
} else { } else {
// 初始化失败 // 初始化失败
isConnected.value = false; isConnected.value = false;
@@ -260,88 +229,44 @@
/** /**
* 查询sku * 查询sku
*/ */
const getQuerySku = () => { const getQuerySku = () =>{
const id = aloneItem.value.priceTypeId const id = aloneItem.value.priceTypeId
console.log(id, '获取每项'); console.log(id, '获取每项');
googlePay.querySku( googlePay.querySku(
{ {
inapp: [id], // 与subs二选一, 参数为商品ID字符串数组 inapp: [id], // 与subs二选一, 参数为商品ID字符串数组
}, },
(e : any) => { (e:any) => {
if (e.code == 0) { if (e.code == 0) {
// 查询成功. // 查询成功.
console.log('querySku查询成功', e); console.log('查询成功',e);
uni.hideLoading() // e.list; // 查询结果, array
getPayAll() } else {
} else { console.log('查询失败');
console.log('查询失败', e); // 查询失败
// 查询失败 }
} }
}
) )
}
/**
* 发起支付
*/
const getPayAll = () => {
console.log(aloneItem.value.priceTypeId, orderSn.value, '发起支付传入产品id,订单id');
googlePay.payAll(
{
productId: aloneItem.value.priceTypeId, // 产品id
accountId: orderSn.value // 订单编号
},
(e : any) => {
if (e.code == 0) {
purchaseToken.value = e.data[0].original.purchaseToken
// 支付成功
console.log(e, 'payAll方法成功返参');
getConsume()
} else {
uni.showToast({ title: '支付失败', icon: 'success' })
console.log(e, 'e');
// 支付失败
}
},
)
}
/**
* 消耗品 确认交易
*/
const getConsume = () => {
googlePay.consume(
{
purchaseToken: purchaseToken.value, // 来自支付结果的original.purchaseToken (或 original.token)
},
(e : any) => {
if (e.code == 0) {
console.log(e, '确认交易成功');
// 确认成功
googleVerify()
} else {
console.log(e, '确认交易失败');
// 确认失败
}
},
);
}
/**
* 校验订单
*/
const googleVerify = async () => {
try {
const obj = await verifyGooglePay(aloneItem.value.priceTypeId, purchaseToken.value, orderSn.value)
uni.switchTab({
url: '/pages/user/index'
})
console.log(obj, '校验订单');
} catch (error) {
console.error('校验订单失败:', error)
} }
const getPayAll = () =>{
googlePay.payAll(
{
productId: "", // 产品id
},
(e) => {
if (e.code == 0) {
// 支付成功
e.data; //支付结果, array [ {original:{ }, signature: ''} ]
} else {
// 支付失败
}
},
)
} }
onMounted(() => { onMounted(() => {
getDevName(); getDevName();
getActivityDescriptionData() getActivityDescriptionData()
@@ -462,7 +387,7 @@
border-bottom: 1px solid #ededed; border-bottom: 1px solid #ededed;
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items:center;
image { image {
width: 40rpx; width: 40rpx;