From a1d7e81859f554f3a53680cc35f0f49bf1f77098 Mon Sep 17 00:00:00 2001
From: wwf <1971391498@qq.com>
Date: 星期四, 14 五月 2026 14:37:02 +0800
Subject: [PATCH] 导入项目
---
src/components/Verifition/src/Verify/VerifySlide.vue | 376 +++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 376 insertions(+), 0 deletions(-)
diff --git a/src/components/Verifition/src/Verify/VerifySlide.vue b/src/components/Verifition/src/Verify/VerifySlide.vue
new file mode 100644
index 0000000..f3c7bfe
--- /dev/null
+++ b/src/components/Verifition/src/Verify/VerifySlide.vue
@@ -0,0 +1,376 @@
+<template>
+ <div style="position: relative">
+ <div
+ v-if="type === '2'"
+ :style="{ height: parseInt(setSize.imgHeight) + vSpace + 'px' }"
+ class="verify-img-out"
+ >
+ <div :style="{ width: setSize.imgWidth, height: setSize.imgHeight }" class="verify-img-panel">
+ <img
+ :src="'data:image/png;base64,' + backImgBase"
+ alt=""
+ style="display: block; width: 100%; height: 100%"
+ />
+ <div v-show="showRefresh" class="verify-refresh" @click="refresh">
+ <i class="iconfont icon-refresh"></i>
+ </div>
+ <transition name="tips">
+ <span v-if="tipWords" :class="passFlag ? 'suc-bg' : 'err-bg'" class="verify-tips">
+ {{ tipWords }}
+ </span>
+ </transition>
+ </div>
+ </div>
+ <!-- 鍏叡閮ㄥ垎 -->
+ <div
+ :style="{ width: setSize.imgWidth, height: barSize.height, 'line-height': barSize.height }"
+ class="verify-bar-area"
+ >
+ <span class="verify-msg" v-text="text"></span>
+ <div
+ :style="{
+ width: leftBarWidth !== undefined ? leftBarWidth : barSize.height,
+ height: barSize.height,
+ 'border-color': leftBarBorderColor,
+ transaction: transitionWidth
+ }"
+ class="verify-left-bar"
+ >
+ <span class="verify-msg" v-text="finishText"></span>
+ <div
+ :style="{
+ width: barSize.height,
+ height: barSize.height,
+ 'background-color': moveBlockBackgroundColor,
+ left: moveBlockLeft,
+ transition: transitionLeft
+ }"
+ class="verify-move-block"
+ @mousedown="start"
+ @touchstart="start"
+ >
+ <i :class="['verify-icon iconfont', iconClass]" :style="{ color: iconColor }"></i>
+ <div
+ v-if="type === '2'"
+ :style="{
+ width: Math.floor((parseInt(setSize.imgWidth) * 47) / 310) + 'px',
+ height: setSize.imgHeight,
+ top: '-' + (parseInt(setSize.imgHeight) + vSpace) + 'px',
+ 'background-size': setSize.imgWidth + ' ' + setSize.imgHeight
+ }"
+ class="verify-sub-block"
+ >
+ <img
+ :src="'data:image/png;base64,' + blockBackImgBase"
+ alt=""
+ style="display: block; width: 100%; height: 100%; -webkit-user-drag: none"
+ />
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+</template>
+<script setup type="text/babel">
+/**
+ * VerifySlide
+ * @description 婊戝潡
+ * */
+import { aesEncrypt } from './../utils/ase'
+import { resetSize } from './../utils/util'
+import { getCode, reqCheck } from '@/api/login'
+
+const props = defineProps({
+ captchaType: {
+ type: String
+ },
+ type: {
+ type: String,
+ default: '1'
+ },
+ //寮瑰嚭寮弍op锛屽浐瀹歠ixed
+ mode: {
+ type: String,
+ default: 'fixed'
+ },
+ vSpace: {
+ type: Number,
+ default: 5
+ },
+ explain: {
+ type: String,
+ default: ''
+ },
+ imgSize: {
+ type: Object,
+ default() {
+ return {
+ width: '310px',
+ height: '155px'
+ }
+ }
+ },
+ blockSize: {
+ type: Object,
+ default() {
+ return {
+ width: '50px',
+ height: '50px'
+ }
+ }
+ },
+ barSize: {
+ type: Object,
+ default() {
+ return {
+ width: '310px',
+ height: '30px'
+ }
+ }
+ }
+})
+
+const { t } = useI18n()
+const { mode, captchaType, type, blockSize, explain } = toRefs(props)
+const { proxy } = getCurrentInstance()
+let secretKey = ref(''), //鍚庣杩斿洖鐨刟se鍔犲瘑绉橀挜
+ passFlag = ref(''), //鏄惁閫氳繃鐨勬爣璇�
+ backImgBase = ref(''), //楠岃瘉鐮佽儗鏅浘鐗�
+ blockBackImgBase = ref(''), //楠岃瘉婊戝潡鐨勮儗鏅浘鐗�
+ backToken = ref(''), //鍚庣杩斿洖鐨勫敮涓�token鍊�
+ startMoveTime = ref(''), //绉诲姩寮�濮嬬殑鏃堕棿
+ endMovetime = ref(''), //绉诲姩缁撴潫鐨勬椂闂�
+ tipWords = ref(''),
+ text = ref(''),
+ finishText = ref(''),
+ setSize = reactive({
+ imgHeight: 0,
+ imgWidth: 0,
+ barHeight: 0,
+ barWidth: 0
+ }),
+ moveBlockLeft = ref(undefined),
+ leftBarWidth = ref(undefined),
+ // 绉诲姩涓牱寮�
+ moveBlockBackgroundColor = ref(undefined),
+ leftBarBorderColor = ref('#ddd'),
+ iconColor = ref(undefined),
+ iconClass = ref('icon-right'),
+ status = ref(false), //榧犳爣鐘舵��
+ isEnd = ref(false), //鏄楠岃瘉瀹屾垚
+ showRefresh = ref(true),
+ transitionLeft = ref(''),
+ transitionWidth = ref(''),
+ startLeft = ref(0)
+
+const barArea = computed(() => {
+ return proxy.$el.querySelector('.verify-bar-area')
+})
+const init = () => {
+ if (explain.value === '') {
+ text.value = t('captcha.slide')
+ } else {
+ text.value = explain.value
+ }
+ getPictrue()
+ nextTick(() => {
+ let { imgHeight, imgWidth, barHeight, barWidth } = resetSize(proxy)
+ setSize.imgHeight = imgHeight
+ setSize.imgWidth = imgWidth
+ setSize.barHeight = barHeight
+ setSize.barWidth = barWidth
+ proxy.$parent.$emit('ready', proxy)
+ })
+
+ window.removeEventListener('touchmove', function (e) {
+ move(e)
+ })
+ window.removeEventListener('mousemove', function (e) {
+ move(e)
+ })
+
+ //榧犳爣鏉惧紑
+ window.removeEventListener('touchend', function () {
+ end()
+ })
+ window.removeEventListener('mouseup', function () {
+ end()
+ })
+
+ window.addEventListener('touchmove', function (e) {
+ move(e)
+ })
+ window.addEventListener('mousemove', function (e) {
+ move(e)
+ })
+
+ //榧犳爣鏉惧紑
+ window.addEventListener('touchend', function () {
+ end()
+ })
+ window.addEventListener('mouseup', function () {
+ end()
+ })
+}
+watch(type, () => {
+ init()
+})
+onMounted(() => {
+ // 绂佹鎷栨嫿
+ init()
+ proxy.$el.onselectstart = function () {
+ return false
+ }
+})
+//榧犳爣鎸変笅
+const start = (e) => {
+ e = e || window.event
+ if (!e.touches) {
+ //鍏煎PC绔�
+ var x = e.clientX
+ } else {
+ //鍏煎绉诲姩绔�
+ var x = e.touches[0].pageX
+ }
+ startLeft.value = Math.floor(x - barArea.value.getBoundingClientRect().left)
+ startMoveTime.value = +new Date() //寮�濮嬫粦鍔ㄧ殑鏃堕棿
+ if (isEnd.value == false) {
+ text.value = ''
+ moveBlockBackgroundColor.value = '#337ab7'
+ leftBarBorderColor.value = '#337AB7'
+ iconColor.value = '#fff'
+ e.stopPropagation()
+ status.value = true
+ }
+}
+//榧犳爣绉诲姩
+const move = (e) => {
+ e = e || window.event
+ if (status.value && isEnd.value == false) {
+ if (!e.touches) {
+ //鍏煎PC绔�
+ var x = e.clientX
+ } else {
+ //鍏煎绉诲姩绔�
+ var x = e.touches[0].pageX
+ }
+ var bar_area_left = barArea.value.getBoundingClientRect().left
+ var move_block_left = x - bar_area_left //灏忔柟鍧楃浉瀵逛簬鐖跺厓绱犵殑left鍊�
+ if (
+ move_block_left >=
+ barArea.value.offsetWidth - parseInt(parseInt(blockSize.value.width) / 2) - 2
+ ) {
+ move_block_left =
+ barArea.value.offsetWidth - parseInt(parseInt(blockSize.value.width) / 2) - 2
+ }
+ if (move_block_left <= 0) {
+ move_block_left = parseInt(parseInt(blockSize.value.width) / 2)
+ }
+ //鎷栧姩鍚庡皬鏂瑰潡鐨刲eft鍊�
+ moveBlockLeft.value = move_block_left - startLeft.value + 'px'
+ leftBarWidth.value = move_block_left - startLeft.value + 'px'
+ }
+}
+
+//榧犳爣鏉惧紑
+const end = () => {
+ endMovetime.value = +new Date()
+ //鍒ゆ柇鏄惁閲嶅悎
+ if (status.value && isEnd.value == false) {
+ var moveLeftDistance = parseInt((moveBlockLeft.value || '0').replace('px', ''))
+ moveLeftDistance = (moveLeftDistance * 310) / parseInt(setSize.imgWidth)
+ let data = {
+ captchaType: captchaType.value,
+ pointJson: secretKey.value
+ ? aesEncrypt(JSON.stringify({ x: moveLeftDistance, y: 5.0 }), secretKey.value)
+ : JSON.stringify({ x: moveLeftDistance, y: 5.0 }),
+ token: backToken.value
+ }
+ reqCheck(data).then((res) => {
+ if (res.repCode == '0000') {
+ moveBlockBackgroundColor.value = '#5cb85c'
+ leftBarBorderColor.value = '#5cb85c'
+ iconColor.value = '#fff'
+ iconClass.value = 'icon-check'
+ showRefresh.value = false
+ isEnd.value = true
+ if (mode.value == 'pop') {
+ setTimeout(() => {
+ proxy.$parent.clickShow = false
+ refresh()
+ }, 1500)
+ }
+ passFlag.value = true
+ tipWords.value = `${((endMovetime.value - startMoveTime.value) / 1000).toFixed(2)}s
+ ${t('captcha.success')}`
+ var captchaVerification = secretKey.value
+ ? aesEncrypt(
+ backToken.value + '---' + JSON.stringify({ x: moveLeftDistance, y: 5.0 }),
+ secretKey.value
+ )
+ : backToken.value + '---' + JSON.stringify({ x: moveLeftDistance, y: 5.0 })
+ setTimeout(() => {
+ tipWords.value = ''
+ proxy.$parent.closeBox()
+ proxy.$parent.$emit('success', { captchaVerification })
+ }, 1000)
+ } else {
+ moveBlockBackgroundColor.value = '#d9534f'
+ leftBarBorderColor.value = '#d9534f'
+ iconColor.value = '#fff'
+ iconClass.value = 'icon-close'
+ passFlag.value = false
+ setTimeout(function () {
+ refresh()
+ }, 1000)
+ proxy.$parent.$emit('error', proxy)
+ tipWords.value = t('captcha.fail')
+ setTimeout(() => {
+ tipWords.value = ''
+ }, 1000)
+ }
+ })
+ status.value = false
+ }
+}
+
+const refresh = async () => {
+ showRefresh.value = true
+ finishText.value = ''
+
+ transitionLeft.value = 'left .3s'
+ moveBlockLeft.value = 0
+
+ leftBarWidth.value = undefined
+ transitionWidth.value = 'width .3s'
+
+ leftBarBorderColor.value = '#ddd'
+ moveBlockBackgroundColor.value = '#fff'
+ iconColor.value = '#000'
+ iconClass.value = 'icon-right'
+ isEnd.value = false
+
+ await getPictrue()
+ setTimeout(() => {
+ transitionWidth.value = ''
+ transitionLeft.value = ''
+ text.value = explain.value
+ }, 300)
+}
+
+// 璇锋眰鑳屾櫙鍥剧墖鍜岄獙璇佸浘鐗�
+const getPictrue = async () => {
+ let data = {
+ captchaType: captchaType.value
+ }
+ const res = await getCode(data)
+ if (res.repCode == '0000') {
+ backImgBase.value = res.repData.originalImageBase64
+ blockBackImgBase.value = res.repData.jigsawImageBase64
+ backToken.value = res.repData.token
+ secretKey.value = res.repData.secretKey
+ } else {
+ tipWords.value = res.repMsg
+ }
+}
+</script>
--
Gitblit v1.8.0