diff --git a/README.md b/README.md index 92aaf20..32bfa8a 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,10 @@ Telegram交流群:https://t.me/ai_cn2023 +## 8月22日更新 + +1. 组织信息增加`userid`和`创建时间`; + ## 7月29日更新(点个star吧) 1. 新增GPT-3.5查询、绑卡信息(人名和地址)、组织名称、邮箱、组织ID、是否有效; diff --git a/index.html b/index.html index dd29fee..572584d 100644 --- a/index.html +++ b/index.html @@ -416,7 +416,7 @@ 32K 绑卡 绑卡信息 - 组织名称+邮箱+ID + 组织信息 是否有效 @@ -527,16 +527,33 @@ setid = ''; const emailStartIndex = setiddata.data[0].description.lastIndexOf(' ') + 1; const email = setiddata.data[0].description.substring(emailStartIndex); + const title = setiddata.data[0].title; + const id1 = setiddata.data[0].id; + const name = setiddata.data[0].name; + const description = setiddata.data[0].description; + const createdTimestamp = setiddata.data[0].created; + const createdDate = new Date(createdTimestamp * 1000); + + // 格式化日期 + const formattedDate = `${createdDate.getFullYear()}.${(createdDate.getMonth() + 1).toString().padStart(2, '0')}.${createdDate.getDate().toString().padStart(2, '0')}`; + + const timeAndZone = createdDate.toString().match(/\d{2}:\d{2}:\d{2} \w+/)[0]; + if (typeof setiddata.data[1] !== 'undefined') { - setid = setiddata.data[0].title + '----' + email + '----' + setiddata.data[0].id + '----' + setiddata.data[1].id; + const id2 = setiddata.data[1].id; + setid = `${title}----${email}----${id1}----${id2}----${name}----${description}----${formattedDate} ${timeAndZone}`; } else { - setid = setiddata.data[0].title + '----' + email + '----' + setiddata.data[0].id; + setid = `${title}----${email}----${id1}----${name}----${description}----${formattedDate} ${timeAndZone}`; } } catch (error) { console.error(error); errors['setid'] = error.message; } + + + + // 初始化模型查询结果 GPT35CheckResult = '❌'; GPT4CheckResult = '❌';