用户来源问题修复
continuous-integration/drone/push Build is passing Details

uat
wangxiaoshuang 2025-02-25 16:58:26 +08:00
parent f4af0fc157
commit be95951f40
1 changed files with 4 additions and 5 deletions

View File

@ -299,11 +299,10 @@ export default {
let res = await getUserJoinedTrialList(this.searchData)
if (res.IsSuccess) {
this.loading = false
res.OtherInfo = res.OtherInfo
? res.OtherInfo
: Object.keys(this.otherInfo).forEach((key) => {
this.otherInfo[key] = res.OtherInfo[key]
})
res.OtherInfo = res.OtherInfo ? res.OtherInfo : {}
Object.keys(this.otherInfo).forEach((key) => {
this.otherInfo[key] = res.OtherInfo[key]
})
this.list = res.Result.CurrentPageData
this.total = res.Result.TotalCount
}