12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <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="info dir-top-wrap main-center">
- <view class="title">重置桥架会员</view>
- <view class="sub-title">重置时间:2021-07-21 12:23:45</view>
- </view>
- <view class="price main-center cross-center">¥58</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{}
- .info{
- flex: 1;
- padding: 0 30rpx;
- .title{
- color: #333333;
- font-size: 32rpx;
- font-weight: 600;
- }
- .sub-title{
- color: #cccccc;
- font-size: 24rpx;
- line-height: 60rpx;
- }
- }
- .price{
- width: 100rpx;
- color: $main-color;
- font-weight: 600;
- font-size: 36rpx;
- }
- }
- </style>
|