12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <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 main-left cross-center">
- <text>重置桥架会员</text>
- <u-image
- width="35"
- height="35"
- src="@/static/images/vip.png"
- ></u-image>
- </view>
- <view class="price main-center cross-center">
- 推荐奖励:<text>58</text>元
- </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 main-left cross-center">
- <text>重置桥架会员</text>
- <u-image
- width="35"
- height="35"
- src="@/static/images/vip.png"
- ></u-image>
- </view>
- <view class="price main-center cross-center">
- 推荐奖励:<text>58</text>元
- </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;
- text{
- margin-right: 12rpx;
- }
- }
- .price{
- color: #666666;
- font-size: 28rpx;
- }
- }
- </style>
|