build(custom): 修正提交规范

This commit is contained in:
2023-11-09 19:49:24 +08:00
parent 76d57cea37
commit 29c1d4280f
105 changed files with 29374 additions and 18618 deletions

View File

@@ -1,8 +1,8 @@
<template>
<web-view
style="height: 100vh; width: 100vw"
:src="`https://www.jdt168.com/public/?uid=${user.uid}`"
></web-view>
<web-view
style="height: 100vh; width: 100vw"
:src="`https://www.jdt168.com/public/?uid=${user.uid}`"
></web-view>
</template>
<script setup lang="ts">
@@ -12,11 +12,11 @@ import { WebView } from "@tarojs/components";
const gameUrl = ref("");
const user = ref({})
const user = ref({});
useLoad(() => {
user.value = getStorageSync("userInfo");
console.log(user);
user.value = getStorageSync("userInfo");
console.log(user);
});
</script>