Prechádzať zdrojové kódy

feat: 增加基于图片拼图切片平移的验证码

chenweiran 2 mesiacov pred
rodič
commit
1aafb43103

+ 1 - 1
packages/effects/common-ui/src/components/captcha/slider-translate-captcha/index.vue

@@ -93,7 +93,7 @@ function handleDragEnd() {
   const { pieceX } = state;
   const { diffDistance } = props;
 
-  if (Math.abs(pieceX - state.moveDistance) >= (diffDistance || 5)) {
+  if (Math.abs(pieceX - state.moveDistance) >= (diffDistance || 3)) {
     setLeft('0');
     state.moveDistance = 0;
   } else {