12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <template>
- <view>
- <u-navbar title="设置" title-color="#101010" ></u-navbar>
- <u-cell-group>
- <u-cell-item title="个人信息" ></u-cell-item>
- <u-cell-item title="修改密码" ></u-cell-item>
- <u-cell-item title="修改手机号" value="15014040129" ></u-cell-item>
- <u-cell-item title="修改手机号" ></u-cell-item>
- </u-cell-group>
-
- <view class="exit">
- 退出账号
- </view>
- </view>
-
-
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss" scoped>
- /deep/.u-cell_title{
- color: rgba(51,51,51,1);
- }
- /deep/.u-cell__value{
- color: #777777;
- };
-
- .exit{
- background-color: #fff;
- margin: 24rpx 0 0 0 ;
- text-align: center;
- line-height: 96rpx;
- color: rgba(238,49,56,1);
- font-size: 32rpx;
- }
- </style>
|