|
@@ -227,12 +227,12 @@ const LoginBox = forwardRef((props,ref) => {
|
|
|
};
|
|
|
const aggrement = useRequest(() => {
|
|
|
return UserApi.agreementsUsingPost({
|
|
|
- data: { pageView: "register_privacy" },
|
|
|
+ data: { pageView: "user_center_view" },
|
|
|
}).toData();
|
|
|
});
|
|
|
const goRegPage = () => {
|
|
|
aggrement.data?.map((p, index) => {
|
|
|
- if (p.name == "注册政策") {
|
|
|
+ if (p.name == "用户服务协议") {
|
|
|
RouteUtil.toWebViewPage({ url: p.url });
|
|
|
}
|
|
|
});
|
|
@@ -245,6 +245,14 @@ const LoginBox = forwardRef((props,ref) => {
|
|
|
}
|
|
|
});
|
|
|
};
|
|
|
+ const goStudentPage = () => {
|
|
|
+ console.log(aggrement);
|
|
|
+ aggrement.data?.map((p, index) => {
|
|
|
+ if (p.name == "非学生承诺函") {
|
|
|
+ RouteUtil.toWebViewPage({ url: p.url });
|
|
|
+ }
|
|
|
+ });
|
|
|
+ };
|
|
|
return (
|
|
|
<AtFloatLayout isOpened={isSHow} onClose={handleClose}>
|
|
|
{showNum == 0 && (
|
|
@@ -273,7 +281,8 @@ const LoginBox = forwardRef((props,ref) => {
|
|
|
<Text onClick={goPrivacyPage} className="blue">
|
|
|
《隐私政策》
|
|
|
</Text>
|
|
|
- 前,我们不会搜集您的任何信息。 当您勾选协议后即标识您已阅读并同意
|
|
|
+ 前,我们不会搜集您的任何信息。
|
|
|
+ {/* 当您勾选协议后即标识您已阅读并同意
|
|
|
<Text onClick={goPrivacyPage} className="blue">
|
|
|
《隐私政策》
|
|
|
</Text>
|
|
@@ -281,7 +290,7 @@ const LoginBox = forwardRef((props,ref) => {
|
|
|
<Text onClick={goRegPage} className="blue">
|
|
|
《注册政策》
|
|
|
</Text>
|
|
|
- 上的全部内容
|
|
|
+ 上的全部内容 */}
|
|
|
</View>
|
|
|
<View className="checkd">
|
|
|
<View className="checkbox">
|
|
@@ -302,12 +311,16 @@ const LoginBox = forwardRef((props,ref) => {
|
|
|
请确定已阅读并同意
|
|
|
</Text>
|
|
|
</View>
|
|
|
- <Text onClick={goRegPage} className="blue">
|
|
|
- 《注册政策》
|
|
|
- </Text>
|
|
|
<Text onClick={goPrivacyPage} className="blue">
|
|
|
《隐私政策》
|
|
|
</Text>
|
|
|
+ <Text onClick={goRegPage} className="blue">
|
|
|
+ 《用户服务协议》
|
|
|
+ </Text>
|
|
|
+ <Text className="agree">和</Text>
|
|
|
+ <Text onClick={goStudentPage} className="blue">
|
|
|
+ 《非学生承诺函》
|
|
|
+ </Text>
|
|
|
</View>
|
|
|
<View>
|
|
|
{checked ? (
|
|
@@ -385,12 +398,15 @@ const LoginBox = forwardRef((props,ref) => {
|
|
|
)}
|
|
|
<Text className="agree" onClick={phoneChange}>请确定已阅读并同意</Text>
|
|
|
</View>
|
|
|
- <Text onClick={goRegPage} className="blue">
|
|
|
- 《注册政策》
|
|
|
- </Text>
|
|
|
<Text onClick={goPrivacyPage} className="blue">
|
|
|
《隐私政策》
|
|
|
</Text>
|
|
|
+ <Text onClick={goRegPage} className="blue">
|
|
|
+ 《用户服务协议》
|
|
|
+ </Text>和
|
|
|
+ <Text onClick={goStudentPage} className="blue">
|
|
|
+ 《非学生承诺函》
|
|
|
+ </Text>
|
|
|
</View>
|
|
|
<View>
|
|
|
<Button className="index-quck-btn fontsize36" onClick={submitClick}>
|