update:更新了软件著作权图片
This commit is contained in:
parent
744579a692
commit
5d50092f97
@ -166,7 +166,7 @@ const register = async () => {
|
||||
} else {
|
||||
if (res.status === 250) {
|
||||
// 使用 ElMessage 提示验证码错误
|
||||
ElMessage.error("验证码错误");
|
||||
// ElMessage.error("验证码错误");
|
||||
} else {
|
||||
}
|
||||
}
|
||||
|
||||
@ -15,7 +15,7 @@ const routes=[
|
||||
{
|
||||
path:'/help',
|
||||
name:'help',
|
||||
component:()=>import('../views/help/Help.vue')
|
||||
component:()=>import('../views/help/Introductory.vue')
|
||||
},
|
||||
{
|
||||
path:'/about',
|
||||
@ -60,6 +60,14 @@ const routes=[
|
||||
meta:{
|
||||
isFullpage: true
|
||||
}
|
||||
},
|
||||
{
|
||||
path:'/help',
|
||||
name:'/help',
|
||||
component:()=>import('@/views/help/Help.vue'),
|
||||
meta:{
|
||||
isFullpage: true
|
||||
}
|
||||
}
|
||||
];
|
||||
const router = createRouter({
|
||||
|
||||
@ -35,7 +35,7 @@ export const useUserStore = defineStore("user", () => {
|
||||
// 设置合理的 Token 有效期(示例:2小时)
|
||||
const setToken = (data: string) => {
|
||||
token.value = data;
|
||||
const expiryTime = Date.now() + 30 * 1000; //
|
||||
const expiryTime = Date.now() + 60 * 1000*2; //
|
||||
localStorage.setItem("token", data);
|
||||
localStorage.setItem("tokenExpiry", expiryTime.toString());
|
||||
};
|
||||
|
||||
@ -42,6 +42,7 @@
|
||||
>经营许可证编号:桂B2-20240661</a
|
||||
>
|
||||
<a target="_blank" href="https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/plantform/default/20250407/dcd90acd12634546b46a701698af30a1.png">营业执照</a>
|
||||
<a target="_blank" href="https://media-mall-prod-1259811287.cos.ap-guangzhou.myqcloud.com/media/media/plantform/default/20250801/ac3da7396ee04e0ea50ab79561d1ede2.jpg">软件著作权</a>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@ -9,8 +9,7 @@
|
||||
|
||||
<script setup>
|
||||
import { onMounted } from 'vue'
|
||||
|
||||
// 1. 微信 URL Scheme(替换为你自己的)
|
||||
// 1. 微信 URL Scheme
|
||||
const scheme = 'weixin://dl/business/?t=9FVo0FY1jLk'
|
||||
|
||||
// 2. 判断是否在微信内
|
||||
|
||||
Loading…
Reference in New Issue
Block a user