weChat-my.vue 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <template>
  2. <view class="content">
  3. <sk-container background="#F2F2F2">
  4. <view class="user-info">
  5. <view style="padding-right: 200rpx;">
  6. <sk-list length="1" ></sk-list>
  7. </view>
  8. </view>
  9. <view class="list-box" style="margin: 20rpx 0;">
  10. <sk-list length="1" :showDescribe="false" showArrows></sk-list>
  11. </view>
  12. <view class="list-box">
  13. <sk-list length="4" :showDescribe="false" showArrows showCrossLine></sk-list>
  14. </view>
  15. <view class="list-box" style="margin: 20rpx 0;">
  16. <sk-list length="1" :showDescribe="false" showArrows></sk-list>
  17. </view>
  18. </sk-container>
  19. </view>
  20. </template>
  21. <script>
  22. //
  23. export default {
  24. data() {
  25. return {
  26. }
  27. },
  28. onLoad() {
  29. },
  30. methods: {
  31. }
  32. }
  33. </script>
  34. <style lang="scss" scoped>
  35. .user-info{
  36. background-color: #fff;
  37. padding: 50rpx 30rpx;
  38. /deep/ .avatar{
  39. width: 100rpx;
  40. height: 100rpx;
  41. }
  42. /deep/ .name{
  43. margin-bottom: 8rpx;
  44. height: 28rpx;
  45. }
  46. }
  47. .list-box{
  48. padding-left: 30rpx;
  49. background-color: #fff;
  50. /deep/ .list-item{
  51. padding-right: 30rpx;
  52. }
  53. /deep/ .name{
  54. width: 100rpx;
  55. }
  56. }
  57. </style>