myfamily.vue 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <template>
  2. <view class="flex bg-white flex-direction justify-center align-center">
  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. .wx-btn{
  33. background-color: #2ba246;
  34. color: #FFFFFF;
  35. padding: 40rpx 180rpx;
  36. .icon{
  37. color: #216a21;
  38. font-size: 42rpx;
  39. }
  40. }
  41. </style>