|
@@ -411,11 +411,21 @@ onMounted(async () => {
|
|
// }
|
|
// }
|
|
app.Scene.on("ready", () => {
|
|
app.Scene.on("ready", () => {
|
|
show.value = true;
|
|
show.value = true;
|
|
- Dialog.alert({
|
|
|
|
- showCloseIcon:false,
|
|
|
|
- content: "<span style='font-size: 16px; line-height: 1.5;'>開發者已遵守收集、使用最終用戶個人信息有關的所有可適用法律、政策和法規,保護用戶個人信息安全。<span/>",
|
|
|
|
- title:'隱私條款:'
|
|
|
|
- });
|
|
|
|
|
|
+ if (!localStorage.getItem("user_guide")) {
|
|
|
|
+ Dialog.confirm({
|
|
|
|
+ showCloseIcon: false,
|
|
|
|
+ okText: "我知道了",
|
|
|
|
+ content:
|
|
|
|
+ "<span style='font-size: 16px; line-height: 1.5;'>開發者已遵守收集、使用最終用戶個人信息有關的所有可適用法律、政策和法規,保護用戶個人信息安全。<span/>",
|
|
|
|
+ title: "隱私條款:",
|
|
|
|
+ single:true,
|
|
|
|
+ func: (state) => {
|
|
|
|
+ if (state == "ok") {
|
|
|
|
+ localStorage.setItem("user_guide", Date.now());
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ });
|
|
|
|
+ }
|
|
});
|
|
});
|
|
app.Scene.on("error", (data) => {
|
|
app.Scene.on("error", (data) => {
|
|
switch (data.code) {
|
|
switch (data.code) {
|