酒店桌布为微信小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

72 lines
1.1 KiB

  1. <template>
  2. <view class="commission">
  3. <image src="/static/image/center/10.png" mode=""></image>
  4. <view class="price">
  5. <view class="title">
  6. 总佣金
  7. </view>
  8. <view class="num">
  9. 7890.34
  10. </view>
  11. </view>
  12. <view class="btn">
  13. 提现
  14. </view>
  15. </view>
  16. </template>
  17. <script>
  18. export default {
  19. name: "userShopCommission",
  20. data() {
  21. return {
  22. };
  23. }
  24. }
  25. </script>
  26. <style scoped lang="scss">
  27. .commission {
  28. width: 700rpx;
  29. height: 300rpx;
  30. position: relative;
  31. margin: 20rpx auto;
  32. color: #fff;
  33. image {
  34. width: 700rpx;
  35. height: 300rpx;
  36. position: absolute;
  37. border-radius: 20rpx;
  38. }
  39. .price {
  40. position: absolute;
  41. left: 50rpx;
  42. top: 80rpx;
  43. font-weight: 900;
  44. .title {
  45. font-size: 32rpx;
  46. }
  47. .num {
  48. font-size: 44rpx;
  49. margin-top: 20rpx;
  50. }
  51. }
  52. .btn {
  53. position: absolute;
  54. right: 50rpx;
  55. bottom: 50rpx;
  56. background-color: #FDC440;
  57. width: 160rpx;
  58. height: 60rpx;
  59. display: flex;
  60. justify-content: center;
  61. align-items: center;
  62. border-radius: 30rpx;
  63. }
  64. }
  65. </style>