|
|
- <template>
- <view class="page">
- <navbar/>
-
- <view class="user">
- <uv-swipe-action>
- <view
- v-for="(item, index) in 3"
- :key="index">
- <view style="margin-top: 20rpx;"></view>
- <uv-swipe-action-item
- :options="options">
- <view class="item">
- <image
- class="image"
- src="https://img95.699pic.com/photo/50058/1378.jpg_wh860.jpg"
- mode=""></image>
-
- <view class="info">
- <view class="title">
- <view class="">
- 桌布租赁
- </view>
- <view class="">
- <uv-number-box v-model="value" @change="valChange"></uv-number-box>
- </view>
- </view>
- <view class="unit">
- 规格:120*40*75【桌子尺寸】
- <uv-icon name="arrow-down"></uv-icon>
- </view>
- <view class="price">
- ¥<text>299</text>元
- </view>
- </view>
- </view>
- </uv-swipe-action-item>
- </view>
- </uv-swipe-action>
-
-
- <view class="action">
- <view class="icon">
- <image src="/static/image/cart/1.png" mode=""></image>
- <view class="num">
- 4
- </view>
- </view>
- <view class="price">
- <view class="count">
- 合计
- <view class="">
- ¥<text>218.00</text>
- </view>
- </view>
- <view class="text">
- 共4件,已享受更低优惠
- </view>
- </view>
- <view class="btn">
- 去结算
- </view>
- </view>
- </view>
-
- <tabber select="3" />
- </view>
- </template>
-
- <script>
- import tabber from '@/components/base/tabbar.vue'
- export default {
- components: {
- tabber,
- },
- data() {
- return {
- value : 0,
- options: [
- {
- text: '删除',
- style: {
- backgroundColor: '#f56c6c'
- }
- },
- ],
- }
- },
- computed: {},
- methods: {
- valChange(){
-
- },
- }
- }
- </script>
-
- <style scoped lang="scss">
- .page {
- padding-bottom: 200rpx;
- }
-
- .user {
- .item{
- background-color: #fff;
- display: flex;
- padding: 30rpx;
- .image{
- width: 200rpx;
- height: 200rpx;
- border-radius: 20rpx;
- }
- .info{
- flex: 1;
- .title{
- display: flex;
- padding: 10rpx 20rpx;
- justify-content: space-between;
-
- }
- .unit{
- font-size: 24rpx;
- padding: 10rpx 20rpx;
- color: #717171;
- display: flex;
- align-items: center;
- }
- .price{
- color: $uni-color;
- font-size: 28rpx;
- padding: 10rpx 20rpx;
- text{
- font-size: 36rpx;
- font-weight: 900;
- }
- }
- }
- }
- .action{
- width: 700rpx;
- position: fixed;
- bottom: 220rpx;
- left: 25rpx;
- background-color: #fff;
- height: 100rpx;
- border-radius: 50rpx;
- box-shadow: 0 0 6rpx 6rpx #00000010;
- display: flex;
- justify-content: center;
- align-items: center;
- overflow: hidden;
- .icon{
- position: relative;
- width: 80rpx;
- height: 80rpx;
- margin: 0 20rpx;
- image{
- width: 80rpx;
- height: 80rpx;
- }
- .num{
- position: absolute;
- right: 10rpx;
- top: 0rpx;
- background-color: $uni-color;
- color: #fff;
- font-size: 18rpx;
- border-radius: 50%;
- height: 30rpx;
- width: 30rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- }
- .price{
- .count{
- display: flex;
- font-size: 26rpx;
- align-items: center;
- view{
- color: $uni-color;
- margin-left: 10rpx;
- text{
- font-size: 32rpx;
- font-weight: 900;
- }
- }
- }
- .text{
- font-size: 20rpx;
- color: #717171;
- }
- }
- .btn{
- margin-left: auto;
- background-color: $uni-color;
- height: 100%;
- padding: 0 50rpx;
- color: #fff;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- }
- }
- </style>
|