diff --git a/index.html b/index.html
index 4fd16a4..2af8487 100644
--- a/index.html
+++ b/index.html
@@ -240,10 +240,10 @@
// 开始到场
jumpDetails(that) {
- const pId = that.parentNode.parentNode.getAttribute('data-pid');
- const rId = that.parentNode.parentNode.getAttribute('data-rid');
- const uId = that.parentNode.parentNode.getAttribute('data-uid');
- const tId = that.parentNode.parentNode.getAttribute('data-tid');
+ const pId = this.dom.parentNode.getAttribute('data-pid');
+ const rId = this.dom.parentNode.getAttribute('data-rid');
+ const uId = this.dom.parentNode.getAttribute('data-uid');
+ const tId = this.dom.parentNode.getAttribute('data-tid');
location.href = `https://www.tall.wiki/qc/information?projectId=${pId}&roleId=${rId}&userId=${uId}&id=${tId}`;
},