| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191 |
- <template>
- <div class="verify-content" v-if="show" @mousemove="mouseMove" @mouseup="mouseUp" @click.stop>
- <div class="imgBox" :style="{width:data.originalWidth+'px',height:data.originalHeight + 'px'}">
- <img :src="data.backImage" style="width:100%;height:100%" alt="">
- <img class="slider" :src="data.slidingImage" :style="{left:distance+'px',top:data.randomY+'px'}" :width="data.sliderWidth" :height="data.sliderHeight" alt="">
- <Icon type="md-refresh" class="refresh" @click="init" />
- </div>
- <div class="handle" :style="{width:data.originalWidth+'px'}">
- <span class="bgcolor" :style="{width:distance + 'px',background:bgColor}"></span>
- <span class="swiper" :style="{left:distance + 'px'}" @mousedown="mouseDown">
- <Icon type="md-arrow-round-forward" />
- </span>
- <span class="text">{{verifyText}}</span>
- </div>
- </div>
- </template>
- <script>
- import { getVerifyImg, postVerifyImg } from './verify.js';
- export default {
- props: {
- // 传入数据,判断是登录、注册、修改密码
- verifyType: {
- defalut: 'LOGIN',
- type: String
- }
- },
- data () {
- return {
- show: false, // 验证码显隐
- type: 'LOGIN', // 请求类型
- data: { // 验证码数据
- backImage: '',
- slidingImage: '',
- originalHeight: 150,
- originalWidth: 300,
- sliderWidth: 60,
- sliderHeight: 60
- },
- distance: 0, // 拼图移动距离
- flag: false, // 判断滑块是否按下
- downX: 0, // 鼠标按下位置
- bgColor: '#04ad11', // 滑动背景颜色
- verifyText: '拖动滑块解锁' // 文字提示
- };
- },
- methods: {
- // 鼠标按下事件,开始拖动滑块
- mouseDown (e) {
- this.downX = e.clientX;
- this.flag = true;
- },
- // 鼠标移动事件,计算距离
- mouseMove (e) {
- if (this.flag) {
- let offset = e.clientX - this.downX;
- if (offset > this.data.originalWidth - 43) {
- this.distance = this.data.originalWidth - 43;
- } else if (offset < 0) {
- this.distance = 0;
- } else {
- this.distance = offset;
- }
- }
- },
- // 鼠标抬起事件,验证是否正确
- mouseUp () {
- if (!this.flag) return false;
- this.flag = false;
- let params = {
- verificationEnums: this.type,
- xPos: this.distance
- };
- postVerifyImg(params).then(res => {
- if (res.success) {
- if (res.result) {
- this.bgColor = 'green';
- this.verifyText = '解锁成功';
- this.$emit('change', { status: true, distance: this.distance });
- } else {
- this.bgColor = 'red';
- this.verifyText = '解锁失败';
- let that = this;
- setTimeout(() => {
- that.init();
- }, 1000);
- this.$emit('change', { status: false, distance: this.distance });
- }
- } else {
- this.init()
- }
-
- }).catch(()=>{
- this.init()
- });
- },
- init () { // 初始化数据
- this.flag = false;
- this.downX = 0;
- this.distance = 0;
- this.bgColor = '#04ad11';
- this.verifyText = '拖动滑块解锁';
- getVerifyImg(this.type).then(res => {
- if (res.result) {
- this.data = res.result;
- this.show = true;
- } else {
- this.$Message.warning('请求失败请重试!')
- }
- });
- }
- },
- watch: {
- verifyType: {
- immediate: true,
- handler: function (v) {
- this.type = v;
- }
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .verify-content{
- padding: 10px;
- background: #fff;
- border: 1px solid #eee;
- border-radius: 5px;
- box-shadow: 1px 1px 3px #999;
- }
- .imgBox {
- width: 300px;
- height: 150px;
- position: relative;
- overflow: hidden;
- .slider {
- position: absolute;
- cursor: pointer;
- }
- .refresh {
- position: absolute;
- right: 5px;
- top: 5px;
- font-size: 20px;
- color: #fff;
- cursor: pointer;
- }
- }
- .handle {
- border: 1px solid #e4dede;
- margin-top: 5px;
- height: 42px;
- background: #ddd;
- position: relative;
- .bgcolor {
- position: absolute;
- top: 0;
- left: 0;
- width: 40px;
- height: 40px;
- opacity: 0.5;
- background: #04ad11;
- }
- .swiper {
- position: absolute;
- width: 40px;
- height: 40px;
- background-color: #fff;
- cursor: pointer;
- display: flex;
- align-items: center;
- justify-content: center;
- .ivu-icon {
- font-size: 20px;
- }
- }
- .text {
- display: inline-block;
- width: inherit;
- text-align: center;
- line-height: 42px;
- font-size: 14px;
- user-select: none;
- }
- }
- </style>
|