pt-images-verification.vue 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. <template>
  2. <view class="pt">
  3. <view class="pt-verification-box">
  4. <view class="pt-verification-images">
  5. <view class="iconfont refresh" @click="refresh">&#xe64c;</view>
  6. <image mode="widthFix" :src="'data:image/jpeg;base64,'+bgImg" class="bg-img"></image>
  7. <image :src="'data:image/jpeg;base64,'+maskImg" class="drag-img" mode="widthFix" :style="{ left: dragWidth + 'px', top: top + 'px'}"></image>
  8. <view class="mask"></view>
  9. </view>
  10. <view class="pt-dragbar">
  11. <view :class="['pt-drag-area',{fail: isFail,success: isSuccess}]" :style="{ width: dragWidth + 'px'}" v-if="dragWidth"></view>
  12. <movable-area class="pt-dragbar-area">
  13. <movable-view
  14. :class="['pt-dragbar-view',{active: dragWidth > 2,fail: isFail,success: isSuccess}]"
  15. :direction="direction"
  16. @change="dragStart"
  17. @touchend="dragEnd"
  18. :damping="200"
  19. :x="x"
  20. :animation="false"
  21. :disabled="disabled"
  22. :data-dragWidth="dragWidth">
  23. <text class="iconfont">
  24. <block v-if="isSuccess">&#xe687;</block>
  25. <block v-else-if="isFail">&#xe65c;</block>
  26. <block v-else>&#xe62a;</block>
  27. </text>
  28. </movable-view>
  29. <text v-if="dragWidth==0" class="tips">{{tips}}</text>
  30. </movable-area>
  31. </view>
  32. </view>
  33. </view>
  34. </template>
  35. <script>
  36. export default {
  37. props: {
  38. // 背景大图
  39. bgImg: {
  40. type: String,
  41. default: ''
  42. },
  43. // 块状小图
  44. maskImg: {
  45. type: String,
  46. default: ''
  47. },
  48. // 坑位的top值
  49. top: {
  50. type: Number,
  51. default: 0
  52. },
  53. // 滑块滑动的方向
  54. direction: {
  55. type: String,
  56. default: 'horizontal'
  57. },
  58. // 判断是否成功
  59. isSuccess: {
  60. type: Boolean,
  61. default: false,
  62. },
  63. // 判断是否失败
  64. isFail: {
  65. type: Boolean,
  66. default: false,
  67. }
  68. },
  69. data() {
  70. return {
  71. tips: '向右拖动滑块填充拼图',
  72. disabled: false,
  73. dragWidth: 0,
  74. x: 0
  75. };
  76. },
  77. methods: {
  78. // 开始滑动
  79. dragStart(e){
  80. this.dragWidth = e.detail.x
  81. },
  82. // 停止滑动
  83. dragEnd(e){
  84. this.x = this.dragWidth;
  85. this.$emit('finish', this.dragWidth);
  86. },
  87. refresh(){
  88. console.log(1);
  89. this.dragWidth = 0;
  90. this.isFail = false;
  91. this.isSuccess = false;
  92. this.x = 0;
  93. this.disabled = false;
  94. this.$emit('refresh');
  95. }
  96. }
  97. }
  98. </script>
  99. <style lang="scss">
  100. @font-face {
  101. font-family: 'iconfont'; /* project id 2047533 */
  102. src: url('https://at.alicdn.com/t/font_2047533_o8axbabfs3.ttf') format('truetype')
  103. }
  104. .iconfont {
  105. font-family: iconfont !important;
  106. font-size: 16px;
  107. font-style: normal;
  108. -webkit-font-smoothing: antialiased;
  109. -moz-osx-font-smoothing: grayscale;
  110. }
  111. .pt{
  112. width: 300px;
  113. margin: 0 auto;
  114. &-verification-images{
  115. position: relative;
  116. .refresh{
  117. position: absolute;
  118. right: 20rpx;
  119. top: 20rpx;
  120. z-index: 10;
  121. color: #FFF;
  122. font-weight: bold;
  123. }
  124. .bg-img{
  125. width: 100%;
  126. vertical-align: top;
  127. }
  128. .drag-img{
  129. position: absolute;
  130. width: 112rpx;
  131. top: 0;
  132. left: 0;
  133. z-index: 1;
  134. }
  135. .mask {
  136. position: absolute;
  137. top: 0;
  138. left: 0;
  139. width: 100%;
  140. height: 100%;
  141. background: rgba($color: #000000, $alpha: .2);
  142. }
  143. }
  144. &-dragbar{
  145. position: relative;
  146. height: 80rpx;
  147. background-color: #F7F7F7;
  148. border: solid 2rpx #EEE;
  149. margin-top: 20rpx;
  150. .pt-drag-area{
  151. position: absolute;
  152. height: 80rpx;
  153. border: solid 2rpx $uni-color-primary;
  154. background-color: #D1E9F1;
  155. top: -2rpx;
  156. &.fail{
  157. border-color: $uni-color-error;
  158. background-color: #ffdbdb;
  159. }
  160. &.success{
  161. border-color: $uni-color-success;
  162. background-color: #d7ffe1;
  163. }
  164. }
  165. &-area{
  166. position: absolute;
  167. width: 100%;
  168. height: 100%;
  169. left: 0;
  170. top: 0;
  171. .tips{
  172. font-size: 24rpx;
  173. color: #999;
  174. position: absolute;
  175. left: 50%;
  176. top: 50%;
  177. transform: translate(-50%,-50%);
  178. }
  179. }
  180. &-view{
  181. width: 80rpx;
  182. height: 80rpx;
  183. display: flex;
  184. align-items: center;
  185. justify-content: center;
  186. border: solid 2rpx #EEE;
  187. background-color: #FFF;
  188. top: -2rpx;
  189. left: 0;
  190. &.active{
  191. background-color: $uni-color-primary;
  192. border-color: $uni-color-primary;
  193. color: #FFF;
  194. }
  195. &.fail{
  196. background-color: $uni-color-error;
  197. border-color: $uni-color-error;
  198. }
  199. &.success{
  200. border-color: $uni-color-success;
  201. background-color: #00a029;
  202. }
  203. }
  204. }
  205. }
  206. </style>