Compare commits

..

2 Commits

Author SHA1 Message Date
xingyy
8d16e66455 Merge branch 'xingyy' into dev 2025-03-12 14:14:52 +08:00
xingyy
837da43dbb 1212 2025-03-12 14:14:37 +08:00
2 changed files with 4 additions and 4 deletions

View File

@ -1,10 +1,10 @@
<template> <template>
<div class="m-auto bg-white p-15px rd-10px touch-none select-none"> <div class="m-auto bg-white p-10px rd-10px touch-none select-none">
<div class="relative w-full overflow-hidden bg-#f8f8f8 rd-8px" > <div class="relative w-full overflow-hidden bg-#f8f8f8 rd-10px">
<!-- 背景图 --> <!-- 背景图 -->
<img <img
:src="options?.canvasSrc" :src="options?.canvasSrc"
class="block pointer-events-none object-contain" class="pointer-events-none"
:style="{ width: `${options?.canvasWidth}px`, height: `${options?.canvasHeight}px` }" :style="{ width: `${options?.canvasWidth}px`, height: `${options?.canvasHeight}px` }"
ref="bgImage" ref="bgImage"
@load="onImageLoad" @load="onImageLoad"

View File

@ -271,7 +271,7 @@ const onLeave =async (moveX, callback) => {
<div v-if="!isKeyboardVisible" class="text-center text-14px absolute left-1/2 transform translate-x--1/2 bottom-20px"> <div v-if="!isKeyboardVisible" class="text-center text-14px absolute left-1/2 transform translate-x--1/2 bottom-20px">
{{ $t('login.agreement') }}<span class="text-#3454AF " @click="$router.push('/privacyPolicy')">{{ $t('login.privacyPolicy') }}</span> {{ $t('login.agreement') }}<span class="text-#3454AF " @click="$router.push('/privacyPolicy')">{{ $t('login.privacyPolicy') }}</span>
</div> </div>
<van-popup v-model:show="isShow" round> <van-popup v-model:show="isShow" round teleport="body">
<PuzzleComponent <PuzzleComponent
v-if="isShow" v-if="isShow"
:options="captcha" :options="captcha"