123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- <template>
- <view class="jpmain ">
-
- <view class="body">
- <view class="page">
-
- <view class="page-content">
- <view class="item">
- <view class="title">
- 头像
- </view>
- <view class="goto ">
- <view class="photo">
-
- <img class="img" src="@/assets/img/center/icon1.png" alt="">
- </view>
-
-
- <u-icon name="arrow-right" style="margin-left: 8rpx;" size="24" color="#BBBBBB"></u-icon>
- </view>
- </view>
-
- </view>
- </view>
-
- <view class="page">
- <view class="page-content">
- <view class="item">
- <view class="title">
- 用户昵称
- </view>
- <view class="goto">
- 未设置
- <u-icon name="arrow-right" style="margin-left: 8rpx;" size="24" color="#BBBBBB"></u-icon>
- </view>
- </view>
- <view class="item">
- <view class="title">
- 手机号码
- </view>
- <view class="goto">
- 13111111111
- </view>
- </view>
- </view>
- </view>
-
- <view class="page">
-
- <view class="button">
- 退出账号
-
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import * as API from '@/apis/pagejs/index.js'
-
- export default {
- data() {
- return {
- }
- },
- methods: {
- }
- }
- </script>
- <style>
- page {
- background-color: rgba(242, 244, 246, 1);
- }
- </style>
- <style scoped lang="scss">
- /* styles.css */
-
- .body {
- padding: 32rpx;
- }
-
- .page {
- border-radius: 16rpx;
- background-color: rgba(255, 255, 255, 1);
- color: rgba(16, 16, 16, 1);
- padding:0 32rpx;
- margin-bottom: 32rpx;
- font-size: 32rpx;
- color: rgb(16, 16, 16);
-
- .page-content {
- .item:not(:last-child) {
- border-bottom:1px solid rgba(232,232,232,1);
- }
- .item {
- padding: 32rpx 0;
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-size: 32rpx;
- .title {
- display: flex;
- justify-content: space-between;
- display: flex;
- align-items: center;
- color: rgba(51,51,51,1);
-
-
- }
- .goto{
- display: flex;
- align-items: center;
- color: rgba(119,119,119,1);
-
- }
- .photo {
- border-radius: 50px;
- background-color: rgba(229, 229, 229, 1);
- height: 80rpx;
- width: 80rpx;
- overflow: hidden;
-
- .img {
- width: 100%;
- height: 100%;
- }
- }
- }
- }
- .button{
- text-align: center;
- color: red;
- padding: 32rpx 0;
- }
- }
- </style>
|