member-record.vue 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <template>
  2. <app-layout>
  3. <view class="container">
  4. <view class="cell-box main-left">
  5. <view class="head-img">
  6. <u-image
  7. width="140"
  8. height="140"
  9. src="https://xiansin.oss-cn-shenzhen.aliyuncs.com/sange-bridge/images/sample.jpg"
  10. shape="circle"></u-image>
  11. </view>
  12. <view class="info dir-top-wrap main-center">
  13. <view class="title">重置桥架会员</view>
  14. <view class="sub-title">重置时间:2021-07-21 12:23:45</view>
  15. </view>
  16. <view class="price main-center cross-center">¥58</view>
  17. </view>
  18. </view>
  19. </app-layout>
  20. </template>
  21. <script>
  22. import appLayout from "@/components/app-layout"
  23. export default {
  24. components:{
  25. appLayout,
  26. },
  27. data() {
  28. return {
  29. }
  30. },
  31. methods: {
  32. }
  33. }
  34. </script>
  35. <style lang="scss" scoped>
  36. .cell-box{
  37. padding: 30rpx 0;
  38. .head-img{}
  39. .info{
  40. flex: 1;
  41. padding: 0 30rpx;
  42. .title{
  43. color: #333333;
  44. font-size: 32rpx;
  45. font-weight: 600;
  46. }
  47. .sub-title{
  48. color: #cccccc;
  49. font-size: 24rpx;
  50. line-height: 60rpx;
  51. }
  52. }
  53. .price{
  54. width: 100rpx;
  55. color: $main-color;
  56. font-weight: 600;
  57. font-size: 36rpx;
  58. }
  59. }
  60. </style>