【fix-bug74259】苹果手机-会议详情页-点击文件下载没有反应兼容问题的修改
This commit is contained in:
@@ -264,7 +264,7 @@ Page({
|
||||
}
|
||||
let res = await this.downMeetingFile(param)
|
||||
// r如果可以下载 那么res 是一个文件流 否则就不可以下载
|
||||
let flag = typeof(res) === 'string'
|
||||
let flag = Object.prototype.toString.call(res) === '[object ArrayBuffer]'
|
||||
const that = this
|
||||
// 只有审核通过的才可以去下载
|
||||
// 原判断条件 !flag && this.data.singInPersonInfo.checkResult !== 1)
|
||||
|
||||
@@ -166,8 +166,8 @@ Page({
|
||||
let url = decodeURIComponent(options.q)
|
||||
let meetingId = url.split('=')[1]
|
||||
// todo 开发直接测试
|
||||
// meetingId = '1681696011549757442' // 其他会议
|
||||
meetingId = '1681693843581128706' // 国际研讨会
|
||||
// meetingId = '1684868961715179521' // 其他会议
|
||||
// meetingId = '1684878516390023170' // 国际研讨会
|
||||
this.queryMeetingDetail(meetingId)
|
||||
|
||||
// this.queryMeetingDetail("1479397531946348545")
|
||||
|
||||
Reference in New Issue
Block a user