更新:阿里云视频播放器

This commit is contained in:
2025-11-21 10:54:43 +08:00
parent e7fb2c61c1
commit 754865e23e
9 changed files with 2132 additions and 250 deletions

View File

@@ -11,9 +11,6 @@ import type {
IPageData
} from '@/types/user'
import { SERVICE_MAP } from '@/api/config'
import { useUserStore } from '@/stores/user'
const userStore = useUserStore()
/**
* 获取用户信息
@@ -46,7 +43,7 @@ export async function getOrderList(current: number, limit: number, orderStatus:
const res = await mainClient.request<IApiResponse<{ orders: IPageData<IOrder> }>>({
url: 'common/buyOrder/commonBuyOrderList',
method: 'POST',
data: { current, limit, orderStatus, come: '10', userId: userStore.id }
data: { current, limit, orderStatus, come: '10', userId: uni.getStorageSync('userInfo').id }
})
return res
}