|
|
- <template>
- <view class="commission">
- <image src="/static/image/center/10.png" mode=""></image>
- <view class="price">
- <view class="title">
- 总佣金(元)
- </view>
- <view class="num">
- 7890.34元
- </view>
- </view>
- <view class="btn">
- 提现
- </view>
- </view>
- </template>
-
- <script>
- export default {
- name: "userShopCommission",
- data() {
- return {
-
- };
- }
- }
- </script>
-
- <style scoped lang="scss">
- .commission {
- width: 700rpx;
- height: 300rpx;
- position: relative;
- margin: 20rpx auto;
- color: #fff;
-
- image {
- width: 700rpx;
- height: 300rpx;
- position: absolute;
- border-radius: 20rpx;
- }
-
- .price {
- position: absolute;
- left: 50rpx;
- top: 80rpx;
- font-weight: 900;
-
- .title {
- font-size: 32rpx;
- }
-
- .num {
- font-size: 44rpx;
- margin-top: 20rpx;
- }
- }
-
- .btn {
- position: absolute;
- right: 50rpx;
- bottom: 50rpx;
- background-color: #FDC440;
- width: 160rpx;
- height: 60rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- border-radius: 30rpx;
- }
- }
- </style>
|