123456789101112131415161718192021222324252627282930 |
- <template>
- <view class="facebox">
- <view class="flex1">
-
- </view>
- <view class='photitp flexccc'>
- <view >请把脸移入框内并保持不动</view>
- <image :src="phoimg"></image>
- </view>
-
- </view>
- </template>
- <script>
- export default{
- data(){
- return{
- phoimg:require('@/static/images/order/come/phoimg.png'),
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .facebox{min-height: 100vh;background: #ffffff;padding: 100rpx 0 130rpx; box-sizing: border-box;display: flex;flex-direction: column;}
- .photitp{flex: 0 0 auto;margin-top: 40rpx;
- image{width: 82rpx;height: 132rpx;}
- view{font-weight: 500;font-size: 26rpx;color: #0391FD;margin-bottom: 40rpx;}
- }
- </style>
|