Initial commit: 积分兑换电商平台多商户版 MER-2.2
Made-with: Cursor
This commit is contained in:
160
mer_uniapp/pages/users/components/move-verify/new_file.vue
Normal file
160
mer_uniapp/pages/users/components/move-verify/new_file.vue
Normal file
@@ -0,0 +1,160 @@
|
||||
<template>
|
||||
<view>
|
||||
<view class="move-path" @touchend="handleOnTouchEnd" @touchstart="start">
|
||||
<view class="move-content">
|
||||
<view v-if="vertify" class="success">{{this.tipWords}}</view>
|
||||
<view v-else>拖动滑块验证</view>
|
||||
</view>
|
||||
<movable-area :animation="true">
|
||||
<movable-view class="move-view" :x="x" direction="horizontal" @change="handleOnMoving" :disabled="vertify"
|
||||
:class="{'active':vertify}"></movable-view>
|
||||
</movable-area>
|
||||
</view>
|
||||
<!-- <transition name="tips">
|
||||
<text class="verify-tips" v-if="tipWords" :class="vertify ? 'suc-bg':'err-bg'">{{tipWords}}</text>
|
||||
</transition> -->
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'move-vertify',
|
||||
data() {
|
||||
return {
|
||||
x: 0,
|
||||
oldx: 0,
|
||||
vertify: false,
|
||||
size: {},
|
||||
isMove: false,
|
||||
tipWords: '', // 提示语
|
||||
startMoveTime: "", //移动开始的时间
|
||||
endMovetime: '', //移动结束的时间
|
||||
};
|
||||
},
|
||||
mounted() {
|
||||
this.init()
|
||||
},
|
||||
methods: {
|
||||
//鼠标按下
|
||||
start: function(e) {
|
||||
this.startMoveTime = new Date().getTime();
|
||||
},//开始滑动的时间
|
||||
//鼠标松开
|
||||
end: function() {
|
||||
this.endMovetime = new Date().getTime();
|
||||
},
|
||||
init() {
|
||||
this.getSize(".move-path").then((pathway) => {
|
||||
this.size.pathway = pathway;
|
||||
this.getSize(".move-view").then((track) => {
|
||||
this.size.track = track;
|
||||
});
|
||||
})
|
||||
},
|
||||
/**
|
||||
* 获取元素宽度
|
||||
*/
|
||||
getSize(selector) {
|
||||
return new Promise((resolve, reject) => {
|
||||
const view = uni.createSelectorQuery().in(this).select(selector);
|
||||
view.fields({
|
||||
size: true,
|
||||
}, (res) => {
|
||||
resolve(res.width);
|
||||
}).exec();
|
||||
});
|
||||
},
|
||||
/**
|
||||
* 滑动过程
|
||||
*/
|
||||
handleOnMoving(e) {
|
||||
this.oldx = e.detail.x;
|
||||
},
|
||||
/**
|
||||
* 滑动结束
|
||||
*/
|
||||
handleOnTouchEnd() {
|
||||
this.endMovetime = new Date().getTime();
|
||||
if (this.vertify || this.oldx < 1) return;
|
||||
this.x = this.oldx;
|
||||
if ((this.oldx + 2) > (this.size.pathway - this.size.track)) this.vertify = true;
|
||||
else {
|
||||
this.$nextTick(() => {
|
||||
this.x = 0;
|
||||
this.oldx = 0;
|
||||
});
|
||||
}
|
||||
setTimeout(() => {
|
||||
this.$emit("vertify", this.vertify);
|
||||
}, 1000)
|
||||
|
||||
},
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
.verify-tips {
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
bottom: 0px;
|
||||
width: 100%;
|
||||
height: 30px;
|
||||
background-color: rgba(231, 27, 27, .5);
|
||||
line-height: 30px;
|
||||
color: #fff;
|
||||
}
|
||||
.move-path {
|
||||
margin: 20rpx auto;
|
||||
color: #333;
|
||||
height: 80rpx;
|
||||
border-radius: 80rpx;
|
||||
background: linear-gradient(to right, #FEEF3C, #F3CD34);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
|
||||
.move-content {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
line-height: 80rpx;
|
||||
text-align: center;
|
||||
color: #666;
|
||||
font-size: 32rpx;
|
||||
z-index: 3;
|
||||
|
||||
.success {
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
|
||||
movable-area {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
background: none;
|
||||
z-index: 5;
|
||||
}
|
||||
|
||||
movable-view {
|
||||
width: 120rpx;
|
||||
height: 80rpx;
|
||||
box-sizing: border-box;
|
||||
border-radius: 80rpx;
|
||||
background-color: #fff;
|
||||
border: #FEEF3C solid 1px;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: auto 32rpx;
|
||||
background-image: url('./arrow.png');
|
||||
}
|
||||
|
||||
movable-view.active {
|
||||
background-size: 30% 30%;
|
||||
background-image: url('./success.png');
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user