no message
This commit is contained in:
parent
e33e3cfac3
commit
8c800e1d1c
|
|
@ -59,7 +59,7 @@ class _TheLoginState extends ConsumerState<TheLogin> with CommonMixin {
|
|||
late final FocusNode _theFocus;
|
||||
|
||||
bool keepPwd = false; // 记住密码
|
||||
bool readAgreement = true; // 阅读协议
|
||||
bool readAgreement = false; // 阅读协议
|
||||
bool canLogin = true;
|
||||
bool hasNameVal = false;
|
||||
bool _isShowPwd = true;
|
||||
|
|
@ -339,7 +339,7 @@ class _TheLoginState extends ConsumerState<TheLogin> with CommonMixin {
|
|||
transition: getTransition(),
|
||||
);
|
||||
},
|
||||
child: quickText('请仔细阅读', size: 13.sp),
|
||||
child: quickText('我已阅读', size: 11.sp),
|
||||
),
|
||||
InkWell(
|
||||
onTap: () {
|
||||
|
|
@ -349,9 +349,25 @@ class _TheLoginState extends ConsumerState<TheLogin> with CommonMixin {
|
|||
transition: getTransition(),
|
||||
);
|
||||
},
|
||||
child: const Text(
|
||||
child: quickText(
|
||||
'《用户协议》',
|
||||
style: TextStyle(color: Colors.deepOrangeAccent),
|
||||
size: 12.sp,
|
||||
color: Colors.deepOrangeAccent,
|
||||
),
|
||||
),
|
||||
quickText('和', size: 10.sp),
|
||||
InkWell(
|
||||
onTap: () {
|
||||
RouterManager.router.navigateTo(
|
||||
context,
|
||||
'${RouterManager.agreementPath}?type=${AGREEMENT_KEY.PRIVACY_GREEMENT.name}',
|
||||
transition: getTransition(),
|
||||
);
|
||||
},
|
||||
child: quickText(
|
||||
'《隐私协议》',
|
||||
size: 12.sp,
|
||||
color: Colors.deepOrangeAccent,
|
||||
),
|
||||
),
|
||||
],
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ final Map<AGREEMENT_KEY, AgreementClass> AGREEMENT_MAP = {
|
|||
<ul>
|
||||
<li><strong>位置信息</strong>,指您开启设备定位功能并使用我们基于位置提供的相关服务时,收集的有关您位置的信息,包括:<ul><li>您通过具有定位功能的移动设备使用我们的服务时,通过GPS或WiFi等方式收集的您的地理位置信息;</li><li>您可以通过关闭定位功能,停止对您的地理位置信息的收集。</li></ul></li>
|
||||
<li><strong>个人信息</strong>,您在注册账户或使用我们的服务时,向我们提供的相关个人信息,例如电话号码、电子邮件等。</li>
|
||||
<li><strong>日志信息</strong>,指您使用我们的服务时,系统可能通过cookies、标识符及相关技术收集的信息,包括您的<strong>设备信息</strong>、<strong>浏览信息</strong>、<strong>点击信息</strong>,并将该等信息储存为日志信息,为您提供个性化的用户体验、保障服务安全。您可以通过浏览器设置拒绝或管理cookie、标识符或相关技术的使用。</li>
|
||||
<li><strong>日志信息</strong>,指您使用我们的服务时,系统可能通过cookies、标识符及相关技术收集的信息,包括您的<strong>设备信息</strong>、<strong>浏览信息</strong>、<strong>点击信息</strong>,并将该等信息储存为日志信息,为您提供保障服务安全。您可以通过浏览器设置拒绝或管理cookie、标识符或相关技术的使用。</li>
|
||||
</ul>
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue