在工作信息页面中添加了一个新的链接功能,用户点击后将跳转到指定的网页。同时,更新了页面的样式以包含新的扫一扫按钮。

This commit is contained in:
Phoenix 2025-04-15 09:45:49 +08:00
parent 3b216752a0
commit 95c3eb2d2d
3 changed files with 10 additions and 0 deletions

BIN
src/assets/images/BG@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -29,6 +29,9 @@ onMounted(() => {
});
}
});
const goLink=()=>{
window.location.href='https://webar.szjixun.cn/'
}
</script>
<template>
<div class="w-100vw h-100vh flex flex-col overflow-hidden font-[FZZhongYaSong] ">
@ -105,6 +108,13 @@ onMounted(() => {
<img class="w-50px h-34px" src="@/assets/images/tc31@2x.png" alt="">
</div>
</div>
<div class="bg-[url('@/assets/images/BG@2x.png')] w-63px h-42px fixed bg-cover right--1 top-45vh flex items-center pl-9px" @click="goLink">
<img class="w-15px h-15px mr-6px" src="@/assets/images/sca@2x.png" alt="">
<div class="text-#fff text-9px">
<div>扫一扫</div>
<div class="text-center">画作</div>
</div>
</div>
</div>
</template>