123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <template>
- <app-layout>
- <view class="container">
- <view class="cell-box main-left">
- <view class="head-img">
- <u-image
- width="140"
- height="140"
- src="https://xiansin.oss-cn-shenzhen.aliyuncs.com/sange-bridge/images/sample.jpg"
- shape="circle"></u-image>
- </view>
- <view class="nickname dir-top-wrap main-center">
- <view class="title main-left cross-center">
- <text>重置桥架会员</text>
- <u-image
- width="35"
- height="35"
- src="@/static/images/vip.png"
- ></u-image>
- </view>
- <view class="sub-title">
- 绑定时间:2021-8-1 15:02:42
- </view>
- </view>
- </view>
- <u-line></u-line>
- <view class="cell-box main-left">
- <view class="head-img">
- <u-image
- width="140"
- height="140"
- src="https://xiansin.oss-cn-shenzhen.aliyuncs.com/sange-bridge/images/sample.jpg"
- shape="circle"></u-image>
- </view>
- <view class="nickname dir-top-wrap main-center">
- <view class="title main-left">
- <text>重置桥架会员</text>
- </view>
- <view class="sub-title">
- 绑定时间:2021-8-1 15:02:42
- </view>
- </view>
- </view>
- </view>
- </app-layout>
- </template>
- <script>
- import appLayout from "@/components/app-layout"
- export default {
- components:{
- appLayout,
- },
- data() {
- return {
- }
- },
- methods: {
- }
- }
- </script>
- <style lang="scss" scoped>
- .cell-box{
- padding: 30rpx 0;
- .head-img{}
- .nickname{
- flex: 1;
- padding: 0 30rpx;
- color: #333333;
- font-size: 32rpx;
- font-weight: 500;
- .title{
- text{
- margin-right: 12rpx;
- }
- }
- .sub-title{
- color: #666666;
- font-size: 28rpx;
- line-height: 2em;
- }
- }
- }
- </style>
|