feat: 首次提交

This commit is contained in:
peerless_hero
2023-08-17 21:28:49 +08:00
parent 36f80fb971
commit ec1e5e16cd
571 changed files with 95322 additions and 0 deletions

View File

@ -0,0 +1,426 @@
<!--本文件由FirstUI授权予新疆天衡创新研究院有限公司手机号 1 8 6 1407 25 4 9身份证尾号5A07X5专用请尊重知识产权勿私下传播违者追究法律责任-->
<template>
<view class="fui-slider__captcha-wrap" :class="{'fui-sc__wrap-show':isShow}"
:style="{background:maskBgColor,zIndex:zIndex}" @tap="maskClose" @touchmove.stop.prevent="stop"
v-if="isShow || !isNvue" ref="fui_sc_ani">
<view class="fui-slider__captcha" :style="{background:background}" @tap.stop="stop">
<text class="fui-sc__title"
:style="{ width: width + 'px',color: color, fontSize: size + 'rpx' }">{{ title }}</text>
<text class="fui-sc__descr"
:style="{width: width + 'px',color:descrColor, fontSize: descrSize + 'rpx'}">拖动下方滑块完成拼图</text>
<view class="fui-sc__img-box" :style="{width: width + 'px'}">
<image class="fui-sc__img" :src="src" :style="{width: width + 'px', height:height + 'px'}" v-if="src">
</image>
<!-- #ifdef APP-PLUS || MP-WEIXIN || H5 -->
<view class="fui-sc__slot-box" ref="imgRef"
:class="{'fui-sc__sb-hidden':!cutSrc,'fui-sc__sb-bs':!isNvueAndroid}"
:style="{left:x+'px',top:y+'px'}">
<image :src="cutSrc" class="fui-sc__slot-img" :class="{'fui-sc__img-border':isNvueAndroid}">
</image>
</view>
<!-- #endif -->
<!-- #ifndef APP-PLUS || MP-WEIXIN || H5 -->
<view class="fui-sc__slot-box" :class="{'fui-sc__sb-bs':true,'fui-sc__reset-ani':resetAni}"
:style="{left:x+'px',top:y+'px',transform:transformSlot}" v-if="cutSrc">
<image :src="cutSrc" class="fui-sc__slot-img"></image>
</view>
<!-- #endif -->
</view>
<view class="fui-sc__sliderbar" :style="{width: width + 'px',height:sliderH+'px'}">
<view class="fui-sc__bar"
:style="{width: width + 'px',height:(sliderH/2)+'px',borderRadius:sliderH+'px'}">
</view>
<!-- #ifdef APP-VUE || MP-WEIXIN || H5-->
<view class="fui-sc__slider" :class="{'fui-sc__slider-bg':!sliderBgColor}"
:style="{width:(sliderH * 2)+'px',height:sliderH+'px',borderRadius:sliderH+'px',background:sliderBgColor}"
:change:prop="parse.slidereset" :prop="resetNum" :data-width="width" :data-start="x"
:data-swidth="sliderH * 2" :data-disabled="!cutSrc || isPass || disabled || !isShow?1:0"
@touchstart="parse.touchstart" @touchmove="parse.touchmove" @touchend="parse.touchend"
@mousedown="parse.mousedown">
<fui-icon name="slide" :size="56" :color="slideColor"></fui-icon>
</view>
<!-- #endif -->
<!-- #ifdef APP-NVUE -->
<view ref="sliderRef" class="fui-sc__slider"
:style="{width:(sliderH * 2)+'px',height:sliderH+'px',borderRadius:sliderH+'px',background:getSliderBgColor}"
@touchstart="touchstart" @horizontalpan="touchmove" @touchend="touchend">
<fui-icon name="slide" :size="56" :color="slideColor"></fui-icon>
</view>
<!-- #endif -->
<!-- #ifndef APP-PLUS || MP-WEIXIN || H5-->
<view class="fui-sc__slider" :class="{'fui-sc__slider-bg':!sliderBgColor,'fui-sc__reset-ani':resetAni}"
:style="{width:(sliderH * 2)+'px',height:sliderH+'px',borderRadius:sliderH+'px',background:sliderBgColor,transform:transform}"
@touchstart="touchstart" @touchmove.stop.prevent="touchmove" @touchend="touchend">
<fui-icon name="slide" :size="56" :color="slideColor"></fui-icon>
</view>
<!-- #endif -->
</view>
<view class="fui-sc__close " @tap.stop="closeVerify">
<fui-icon name="close" :color="closeColor"></fui-icon>
</view>
</view>
</view>
</template>
<!-- #ifdef APP-VUE || MP-WEIXIN || H5-->
<script src="./index.wxs" module="parse" lang="wxs"></script>
<!-- #endif -->
<script>
import weex from './weex.js'
import mpjs from './mpjs.js'
//非easycom模式取消注释引入字体组件按实际路径进行调整
// import fuiIcon from "@/components/firstui/fui-icon/fui-icon.vue"
export default {
name: "fui-puzzle-verify",
mixins: [mpjs, weex],
emits: ['verify', 'init'],
// components:{
// fuiIcon
// },
props: {
src: {
type: String,
default: ''
},
cutSrc: {
type: String,
default: ''
},
x: {
type: [Number, String],
default: 10
},
y: {
type: [Number, String],
default: 10
},
width: {
type: [Number, String],
default: 300
},
height: {
type: [Number, String],
default: 150
},
background: {
type: String,
default: '#FFFFFF'
},
title: {
type: String,
default: '安全验证'
},
color: {
type: String,
default: '#B2B2B2'
},
size: {
type: [Number, String],
default: 28
},
descrColor: {
type: String,
default: '#333333'
},
descrSize: {
type: [Number, String],
default: 36
},
closeColor: {
type: String,
default: '#B2B2B2'
},
sliderBgColor: {
type: String,
default: ''
},
slideColor: {
type: String,
default: '#FFFFFF'
},
zIndex: {
type: [Number, String],
default: 996
},
maskBgColor: {
type: String,
default: 'rgba(0,0,0,.6)'
},
maskClosable: {
type: Boolean,
default: false
}
},
watch: {
src(newValue, oldValue) {
setTimeout(()=> {
this.reset()
}, 50);
},
cutSrc(val) {
setTimeout(()=> {
this.reset()
}, 50);
}
},
computed: {
getSliderBgColor() {
let color = this.sliderBgColor
// #ifdef APP-NVUE
if (!color || color === true) {
const app = uni && uni.$fui && uni.$fui.color;
color = (app && app.primary) || '#465CFF';
}
// #endif
return color
}
},
data() {
let sys = uni.getSystemInfoSync()
let isNvue = false
let isNvueAndroid = false
// #ifdef APP-NVUE
isNvue = true
isNvueAndroid = sys.platform === 'android'
// #endif
return {
isNvueAndroid: isNvueAndroid,
isNvue: isNvue,
isShow: false,
w: 300,
h: 150,
sliderH: 0,
resetNum: 0,
isPass: false,
disabled: false
};
},
created() {
this.sliderH = this.getPx(64)
//结合后端验证使用
this.$emit('init', {
//切割图片的宽高固定为44px
cutGraphWidth: 44
})
},
methods: {
getPx(value) {
let val = parseInt(uni.upx2px(Number(value)))
return val % 2 === 0 ? val : val + 1
},
verify(e) {
//验证中禁止操作
this.disabled = true
this.$emit('verify', {
slipDistance: e.slip
})
},
success() {
this.isPass = true;
},
reset() {
this.resetNum += 1
this.isPass = false;
this.disabled = false;
},
maskClose() {
if (!this.maskClosable) return;
this.closeVerify()
},
closeVerify() {
this.reset();
// #ifndef APP-NVUE
this.isShow = false;
// #endif
// #ifdef APP-NVUE
this.closeAni()
// #endif
},
show() {
// #ifndef APP-NVUE
this.isShow = true;
// #endif
// #ifdef APP-NVUE
this.openAni()
// #endif
},
stop() {}
}
}
</script>
<style scoped>
.fui-slider__captcha-wrap {
position: fixed;
top: 0;
right: 0;
left: 0;
bottom: 0;
/* #ifndef APP-NVUE */
transition-property: all;
transition-timing-function: ease-in;
transition-duration: 0.2s;
display: flex;
transform: scale3d(1, 1, 0);
visibility: hidden;
/* #endif */
align-items: center;
justify-content: center;
opacity: 0;
}
/* #ifndef APP-NVUE */
.fui-sc__wrap-show {
opacity: 1;
transform: scale3d(1, 1, 1);
visibility: visible;
}
/* #endif */
.fui-slider__captcha {
padding: 60rpx 32rpx;
text-align: center;
border-radius: 24rpx;
overflow: hidden;
position: relative;
/* #ifndef APP-NVUE */
display: flex;
box-sizing: border-box;
/* #endif */
flex-direction: column;
align-items: center;
justify-content: center;
}
.fui-sc__title {
text-align: left;
/* #ifndef APP-NVUE */
display: flex;
/* #endif */
font-weight: normal;
}
.fui-sc__descr {
/* #ifndef APP-NVUE */
display: flex;
/* #endif */
text-align: left;
padding-bottom: 36rpx;
font-weight: 600;
padding-top: 12rpx;
}
.fui-sc__img-box {
position: relative;
background: #F1F4FA;
}
/* #ifndef APP-NVUE */
.fui-sc__img {
display: block;
}
/* #endif */
.fui-sc__slot-bs {
box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.2);
}
.fui-sc__sb-bs {
box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.8);
}
.fui-sc__slot-box {
position: absolute;
width: 44px;
height: 44px;
opacity: 1;
z-index: 5;
}
.fui-sc__sb-hidden {
opacity: 0;
}
.fui-sc__slot-img {
width: 44px;
height: 44px;
/* #ifndef APP-NVUE */
display: block;
/* #endif */
}
/* #ifdef APP-NVUE */
.fui-sc__img-border {
border: 0.5px solid rgba(255, 255, 255, .2)
}
/* #endif */
.fui-sc__close {
position: absolute;
padding: 16rpx 16rpx 0 0;
right: 12rpx;
top: 12rpx;
/* #ifdef H5 */
cursor: pointer;
/* #endif */
}
.fui-sc__sliderbar {
position: relative;
/* #ifndef APP-NVUE */
display: flex;
/* #endif */
flex-direction: column;
align-items: center;
justify-content: center;
margin-top: 48rpx;
}
.fui-sc__bar {
background: #EEEEEE;
}
.fui-sc__slider {
position: absolute;
left: 0;
top: 0;
/* #ifndef APP-NVUE */
display: flex;
/* #endif */
flex-direction: column;
align-items: center;
justify-content: center;
/* #ifdef H5 */
cursor: pointer;
/* #endif */
}
/* #ifndef APP-NVUE */
.fui-sc__slider-bg {
background: var(--fui-color-primary, #465CFF) !important;
}
/* #endif */
/* #ifndef APP-NVUE */
.fui-sc__reset-ani {
transition: transform 0.2s;
}
/* #endif */
/* fixVue3下动画问题app端直接移除class效果未消失导致卡顿 */
/* #ifdef VUE3 */
.fui-pv__un-ani {
transition: transform 0s;
}
/* #endif */
</style>

View File

@ -0,0 +1,147 @@
// 本文件由FirstUI授权予新疆天衡创新研究院有限公司手机号 186 1 40 7 2 5 49身份证尾号5A07X5专用请尊重知识产权勿私下传播违者追究法律责任。
var twidth = 300
var swidth = 32
var start = 0
function isPC() {
if (typeof navigator !== 'object') return false;
var userAgentInfo = navigator.userAgent;
var Agents = ["Android", "iPhone", "SymbianOS", "Windows Phone", "iPad", "iPod"];
var flag = true;
for (var v = 0; v < Agents.length - 1; v++) {
if (userAgentInfo.indexOf(Agents[v]) > 0) {
flag = false;
break;
}
}
return flag;
}
var isH5 = false
if (typeof window === 'object') isH5 = true
function bool(str) {
return str === 'true' || str == true ? true : false
}
function getSlipDistance(left) {
var width = twidth - start - 44
var distance = left / (twidth - swidth) * width
return distance > width ? width : distance
}
function styleChange(left, ins) {
if (!ins || !ins.selectComponent('.fui-sc__slot-box')) return;
var slotLeft = getSlipDistance(left)
var slider = ins.selectComponent('.fui-sc__slider')
var slot = ins.selectComponent('.fui-sc__slot-box')
if (!slider || !slot) return;
if (left == 0) {
slider.removeClass('fui-pv__un-ani')
slot.removeClass('fui-pv__un-ani')
slider.addClass('fui-sc__reset-ani')
slot.addClass('fui-sc__reset-ani')
} else {
slider.removeClass('fui-sc__reset-ani')
slot.removeClass('fui-sc__reset-ani')
slider.addClass('fui-pv__un-ani')
slot.addClass('fui-pv__un-ani')
}
slider.setStyle({
transform: 'translate3d(' + left + 'px,0,0)'
})
slot.setStyle({
transform: 'translate3d(' + slotLeft + 'px,0,0)'
})
}
function touchstart(e, ins) {
var state = e.instance.getState()
var touch = e.touches[0] || e.changedTouches[0]
if (isH5 && isPC()) {
touch = e;
}
var dataset = e.instance.getDataset()
state.startX = touch.pageX
start = +dataset.start
swidth = +dataset.swidth
twidth = +dataset.width
//H5获取bool值为undefined
state.disabled = (+dataset.disabled) == 1 ? true : false
}
function touchmove(e, ins, event) {
if (e.preventDefault) {
// 阻止页面滚动
e.preventDefault()
}
var state = {}
var touch = {}
if (isH5 && isPC()) {
touch = e;
state = event.instance.getState()
} else {
state = e.instance.getState()
touch = e.touches[0] || e.changedTouches[0]
}
if (state.disabled) return;
var pageX = touch.pageX;
var left = pageX - state.startX + (state.lastLeft || 0);
left = left < 0 ? 0 : left;
var width = twidth - swidth;
left = left >= width ? width : left;
state.startX = pageX
state.lastLeft = left
styleChange(left, ins)
}
function touchend(e, ins, event) {
var state = {}
if (isH5 && isPC()) {
state = event.instance.getState()
} else {
state = e.instance.getState()
}
if (state.disabled) return;
var slotLeft = getSlipDistance(state.lastLeft)
//后端验证
ins.callMethod('verify', {
slip: slotLeft
})
}
function slidereset(reset, oldreset, owner, ins) {
var state = ins.getState()
if (reset > 0) {
state.startX = 0;
state.lastLeft = 0;
state.disabled = false;
styleChange(0, owner)
}
}
var movable = false;
function mousedown(e, ins) {
if (!isH5 || !isPC()) return
touchstart(e, ins)
movable = true
window.onmousemove = function(event) {
if (!isH5 || !isPC() || !movable) return
touchmove(event, ins, e)
}
window.onmouseup = function(event) {
if (!isH5 || !isPC() || !movable) return
touchend(event, ins, e)
movable = false
}
}
module.exports = {
touchstart: touchstart,
touchmove: touchmove,
touchend: touchend,
mousedown: mousedown,
slidereset: slidereset
}

View File

@ -0,0 +1,68 @@
// 本文件由FirstUI授权予新疆天衡创新研究院有限公司手机号 1 86 1407 2 5 49身份证尾号5A07X5专用请尊重知识产权勿私下传播违者追究法律责任。
// #ifndef APP-PLUS || MP-WEIXIN || H5
export default {
data() {
return {
transform: '',
transformSlot: '',
startX: 0,
lastLeft: 0,
resetAni: false
}
},
watch: {
resetNum(val) {
this.startX = 0;
this.lastLeft = 0;
this.styleChange(0)
}
},
methods: {
getSlipDistance(left) {
let width = this.width - this.x - 44
let distance = left / (this.width - (this.sliderH * 2)) * width
return distance > width ? width : distance
},
styleChange(left) {
if (left == 0) {
this.resetAni = true
} else {
this.resetAni = false
}
let slotLeft = this.getSlipDistance(left)
this.transformSlot = 'translate3d(' + slotLeft + 'px,0,0)'
this.transform = 'translate3d(' + left + 'px,0,0)'
},
touchstart(e) {
let touch = e.touches[0] || e.changedTouches[0];
this.startX = touch.clientX
},
touchmove(e) {
if (this.isPass || this.disabled || !this.cutSrc || !this.isShow) return;
let touch = e.touches[0] || e.changedTouches[0]
let pageX = touch.clientX;
let left = pageX - this.startX + this.lastLeft;
left = left < 0 ? 0 : left;
let width = this.width - (this.sliderH * 2);
left = left >= width ? width : left;
this.startX = pageX
this.lastLeft = left
this.styleChange(left)
},
touchend(e) {
if (this.isPass || this.disabled || !this.cutSrc || !this.isShow) return;
//前端验证
let slotLeft = this.getSlipDistance(this.lastLeft)
//后端验证
this.verify({
slip: slotLeft
})
}
}
}
// #endif
// #ifdef APP-PLUS|| MP-WEIXIN || H5
export default {}
// #endif

View File

@ -0,0 +1,115 @@
// 本文件由FirstUI授权予新疆天衡创新研究院有限公司手机号1 8 614 07 2 5 4 9身份证尾号5A07X5专用请尊重知识产权勿私下传播违者追究法律责任。
// #ifdef APP-NVUE
const animation = uni.requireNativePlugin('animation');
export default {
watch: {
resetNum(val) {
this.startX = 0;
this.lastLeft = 0;
this._animation(0)
}
},
created() {
this.startX = 0
this.lastLeft = 0
this.imgRef = null
this.sliderRef = null
},
methods: {
openAni() {
this.isShow = true;
this.$nextTick(() => {
setTimeout(() => {
this.getEl()
this._ani(true);
}, 50);
});
},
closeAni(type) {
this._ani(false);
},
_ani(type) {
let styles = {
opacity: type ? 1 : 0
};
if (!this.$refs['fui_sc_ani']) return;
animation.transition(
this.$refs['fui_sc_ani'].ref, {
styles,
duration: 200, //ms
timingFunction: 'ease-in',
needLayout: false,
delay: 0 //ms
},
() => {
if (!type) {
this.isShow = false;
}
}
);
},
getEl() {
this.imgRef = this.$refs['imgRef'].ref
this.sliderRef = this.$refs['sliderRef'].ref;
},
getSlipDistance(left) {
let width = this.width - this.x - 44
let distance = left / (this.width - (this.sliderH * 2)) * width
return distance > width ? width : distance
},
_animation(left) {
let slotLeft = this.getSlipDistance(left).toFixed(2)
left = left.toFixed(2)
if (!this.imgRef || !this.sliderRef) return;
animation.transition(this.imgRef, {
styles: {
transform: 'translate(' + slotLeft + 'px,0)'
},
duration: left == 0 ? 200 : 0,
timingFunction: 'linear',
needLayout: false,
delay: 0
});
animation.transition(this.sliderRef, {
styles: {
transform: 'translate(' + left + 'px,0)'
},
duration: left == 0 ? 200 : 0,
timingFunction: 'linear',
needLayout: false,
delay: 0
});
},
touchstart(e) {
if (this.isPass || this.disabled || !this.cutSrc || !this.isShow) return;
let touch = e.touches[0] || e.changedTouches[0];
this.startX = touch.screenX
},
touchmove(e) {
if (this.isPass || this.disabled || !this.cutSrc || !this.isShow) return;
let touch = e.changedTouches[0];
let pageX = touch.screenX;
let left = pageX - this.startX + this.lastLeft;
left = left < 0 ? 0 : left;
let width = this.width - (this.sliderH * 2);
left = left >= width ? width : left;
this.startX = pageX
this.lastLeft = left
this._animation(left)
},
touchend(e) {
if (this.isPass || this.disabled || !this.cutSrc || !this.isShow) return;
let slotLeft = this.getSlipDistance(this.lastLeft)
//后端验证
this.verify({
slip: slotLeft
})
}
}
}
// #endif
// #ifndef APP-NVUE
export default {}
// #endif