login1.vue 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <template>
  2. <view class="flex bg-white flex-direction justify-center align-center " style="padding-top: 100rpx;">
  3. <u-avatar size="130" src="http://pic2.sc.chinaz.com/Files/pic/pic9/202002/hpic2119_s.jpg"></u-avatar>
  4. <text style="margin:30rpx 0 100rpx 0rpx;color: #333333;font-size: 26rpx;font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;">Hi~登陆玩转新邻园区吧</text>
  5. <view class="cu-btn round wx-btn ">
  6. <view class="text-center" style="position: relative;left: -100rpx;">
  7. <text class="cuIcon-weixin icon"></text>
  8. </view>
  9. <view style="position: relative;left: -16rpx;">
  10. <text class="text-center text-lg">微信快速登陆</text>
  11. </view>
  12. </view>
  13. <view class="cu-btn round line-gray " style="width: 200rpx;margin-top: 80rpx;">
  14. 暂不登陆
  15. </view>
  16. </view>
  17. </template>
  18. <script>
  19. export default {
  20. name: '',
  21. data() {
  22. return {
  23. };
  24. },
  25. onLoad() {
  26. },
  27. methods:{
  28. }
  29. };
  30. </script>
  31. <style lang="scss" scoped>
  32. page{
  33. background-color: #FFFFFF;
  34. }
  35. .wx-btn{
  36. background-color: #2ba246;
  37. color: #FFFFFF;
  38. padding: 40rpx 180rpx;
  39. .icon{
  40. color: #216a21;
  41. font-size: 42rpx;
  42. }
  43. }
  44. </style>