From 0edf94722a0dcc338567fec7df76b2e0acd39b92 Mon Sep 17 00:00:00 2001 From: YM <479443481@qq.com> Date: 星期一, 27 五月 2024 15:30:48 +0800 Subject: [PATCH] 调整 --- src/pages/character/detail.vue | 9 +-------- 1 files changed, 1 insertions(+), 8 deletions(-) diff --git a/src/pages/character/detail.vue b/src/pages/character/detail.vue index c3f47f7..e1e94ec 100644 --- a/src/pages/character/detail.vue +++ b/src/pages/character/detail.vue @@ -507,7 +507,6 @@ }, methods: { copyText() { - console.log(navigator.clipboard); const textToCopy = this.biogData[0].content + ";鏉ユ簮锛氫腑鍖诲尰瀛︿汉鐗╂暟鎹簱"; const textarea = document.createElement("textarea"); textarea.value = textToCopy; @@ -542,7 +541,6 @@ : fieldItem.content1; } } - console.log(obj); this.detailInfo = obj; // 鍏崇郴鍥捐氨 this.getMappingData(this.detailInfo.NAME); @@ -557,7 +555,6 @@ getPersonRelationAtSchool({ personId: this.detailId, }).then((res) => { - console.log(res, "PERSON_RELATIONS"); // this.personRelationList = res.object.personRelationList; // if (this.personRelationList.length) { // this.tableData4 = this.personRelationList.map((f) => { @@ -571,11 +568,9 @@ getWebBasic({ personId: this.detailId, }).then((res) => { - console.log(res, "resres"); const obj = res.object; if (obj.school) { getIntroduction(Number(obj.school)).then((sres) => { - console.log(sres, "sres"); this.handleData(obj, sres); }); } else { @@ -700,9 +695,8 @@ getRelationship() { getPersonRelationAtSchool({ personId: this.detailId, - // relationSearchTypeEO: "SOCIAL" + relationSearchTypeEO: "KINSHIP" }).then((res) => { - console.log(res, "getPersonRelationAtSchool"); // 杩欓噷鎺ュ彛鏈夐棶棰� }); }, @@ -748,7 +742,6 @@ getSpaceTime({ personId: this.detailId, }).then((res) => { - console.log(res, "getSpaceTime"); const data = res.list.map((item) => { return { name: item.activityName, -- Gitblit v1.9.1