|
@@ -1646,6 +1646,10 @@ const elementDone = async (element: any, slideIndex: number) => {
|
|
|
const parts = iframeSrc.split('#')
|
|
const parts = iframeSrc.split('#')
|
|
|
baseUrl = parts[0]
|
|
baseUrl = parts[0]
|
|
|
hashPart = parts[1]
|
|
hashPart = parts[1]
|
|
|
|
|
+ // 去除hashPart中的userid参数
|
|
|
|
|
+ if (hashPart.includes('userid=')) {
|
|
|
|
|
+ hashPart = hashPart.replace(/[?&]userid=[^&]+/g, '').replace(/^&/, '?')
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
// 构建新的hash部分,添加参数
|
|
// 构建新的hash部分,添加参数
|