accountSetup.vue 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <template>
  2. <view class="page">
  3. <view class="set-top">
  4. <view class="information">
  5. <view class="information-lift">
  6. <image src="http://pic.imeitou.com/uploads/allimg/240522/10-240522162434-50.jpg" class="header-img"
  7. mode=""></image>
  8. <view class="name">
  9. 张三
  10. </view>
  11. </view>
  12. <image class="right-icon" src="../../static/mine/325.png" mode=""></image>
  13. </view>
  14. <view class="address">
  15. <view class="address-manage">
  16. 地址管理
  17. </view>
  18. <AllRight name="新增/修改地址"></AllRight>
  19. </view>
  20. </view>
  21. </view>
  22. </template>
  23. <script>
  24. import AllRight from '../mineComponent/allRight/allRight.vue'
  25. export default {
  26. components:{
  27. AllRight
  28. },
  29. data() {
  30. return {
  31. }
  32. },
  33. methods: {
  34. }
  35. }
  36. </script>
  37. <style lang="scss" scoped>
  38. .page {
  39. padding: 20rpx 24rpx;
  40. .set-top {
  41. background-color: #fff;
  42. border-radius: 16rpx;
  43. padding: 0 20rpx;
  44. .information {
  45. display: flex;
  46. justify-content: space-between;
  47. align-items: center;
  48. width: 100%;
  49. height: 176rpx;
  50. .information-lift {
  51. display: flex;
  52. align-items: center;
  53. .header-img {
  54. border-radius: 50%;
  55. height: 116rpx;
  56. width: 116rpx;
  57. margin-right: 20rpx;
  58. }
  59. .name{
  60. font-size: 36rpx;
  61. }
  62. }
  63. .right-icon{
  64. width: 32rpx;
  65. height: 32rpx;
  66. }
  67. }
  68. }
  69. }
  70. </style>