12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <template>
- <view class="page">
- <view class="set-top">
- <view class="information">
- <view class="information-lift">
- <image src="http://pic.imeitou.com/uploads/allimg/240522/10-240522162434-50.jpg" class="header-img"
- mode=""></image>
- <view class="name">
- 张三
- </view>
- </view>
- <image class="right-icon" src="../../static/mine/325.png" mode=""></image>
- </view>
- <view class="address">
- <view class="address-manage">
- 地址管理
- </view>
- <AllRight name="新增/修改地址"></AllRight>
- </view>
- </view>
- </view>
- </template>
- <script>
- import AllRight from '../mineComponent/allRight/allRight.vue'
- export default {
- components:{
- AllRight
- },
- data() {
- return {
- }
- },
- methods: {
- }
- }
- </script>
- <style lang="scss" scoped>
- .page {
- padding: 20rpx 24rpx;
- .set-top {
- background-color: #fff;
- border-radius: 16rpx;
- padding: 0 20rpx;
- .information {
- display: flex;
- justify-content: space-between;
- align-items: center;
- width: 100%;
- height: 176rpx;
- .information-lift {
- display: flex;
- align-items: center;
- .header-img {
- border-radius: 50%;
- height: 116rpx;
- width: 116rpx;
- margin-right: 20rpx;
- }
- .name{
- font-size: 36rpx;
-
- }
- }
- .right-icon{
- width: 32rpx;
- height: 32rpx;
- }
- }
- }
- }
- </style>
|