face.vue 688 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <view class="facebox">
  3. <view class="flex1">
  4. </view>
  5. <view class='photitp flexccc'>
  6. <view >请把脸移入框内并保持不动</view>
  7. <image :src="phoimg"></image>
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. export default{
  13. data(){
  14. return{
  15. phoimg:require('@/static/images/order/come/phoimg.png'),
  16. }
  17. }
  18. }
  19. </script>
  20. <style lang="scss" scoped>
  21. .facebox{min-height: 100vh;background: #ffffff;padding: 100rpx 0 130rpx; box-sizing: border-box;display: flex;flex-direction: column;}
  22. .photitp{flex: 0 0 auto;margin-top: 40rpx;
  23. image{width: 82rpx;height: 132rpx;}
  24. view{font-weight: 500;font-size: 26rpx;color: #0391FD;margin-bottom: 40rpx;}
  25. }
  26. </style>