123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- <template>
- <view style="height: 100vh;background-color: #F5F5F5;">
- <view style="height:50upx"></view>
- <uniNavBar
- left-icon="back" title="购物车"
- @clickLeft="goback"
- @clickRight = "deleteShop"
- />
- <view class="titleright">编辑</view>
- <view class="cart-list">
- <view style="display: flex;align-items: center;padding: 20upx 36upx;
- border-bottom: 1px solid #F5F5F5;">
- <image src="" style="width: 50upx;height: 50upx;"></image>
- <span style="padding-left: 8upx;">华南酒店</span>
- </view>
-
- <view v-for="(item,index) in list" :key="index" class="shoplist" style="background-color: #fff;">
- <view style="flex: 1;">
- <van-checkbox-group :value="checkboxList" @change="changeBox(index)">
- <van-checkbox :name="index">{{index}}</van-checkbox>
- </van-checkbox-group>
- </view>
- <view style="flex: 15;">
- <van-card
- title-class="changewidth"
- price-class ="priceClass"
- :price="item.price"
- :desc="item.titleDesc"
- :title="item.title"
- thumb="https://gd3.alicdn.com/imgextra/i3/0/O1CN01IiyFQI1UGShoFKt1O_!!0-item_pic.jpg_400x400.jpg"
- >
- <view slot="footer">
- <uninumberbox :min="1" @change="bindChange"/>
- </view>
- </van-card>
- </view>
- </view>
- </view>
-
- <view style="position: fixed;bottom: 0;">
- <van-submit-bar
- :price="3050"
- button-text="结算"
- bind:submit="onClickButton"
- :tip="true"
- >
- <van-checkbox checked-color="#D9332E" :value="isAll" shape="round" @change="onChange">
- 全选
- </van-checkbox>
- </van-submit-bar>
- </view>
-
- </view>
- </template>
- <script>
- import uniNavBar from '@/component/uni-nav-bar/uni-nav-bar.vue'
- import uninumberbox from '@/component/uinNumber.vue'
- export default {
- components: {
- uniNavBar,
- uninumberbox
- },
- data() {
- return {
- isAll: false,
- checkboxList:[],
- list:[
- {title:'洗澡拖鞋dddd一次性', titleDesc:'一次性亚述拖鞋dddd不ww要错过x2', price:'0.5'},
- {title:'洗澡拖鞋dsssss一次性', titleDesc:'一次性亚述拖dddddd鞋不要33错过x2', price:'0.5'},
- {title:'洗澡拖鞋一dddddd次性', titleDesc:'一次性亚述拖ddddd鞋不要错过wx2', price:'0.5'},
- {title:'洗澡拖鞋一次性', titleDesc:'一次性亚述拖dddddddddddddd鞋不要错过wwx3', price:'0.5'},
- {title:'洗澡拖鞋一次性', titleDesc:'一次性亚述拖ddddd鞋不要错ee过x2', price:'0.5'},
- {title:'洗澡拖鞋一次性', titleDesc:'一次性亚述拖鞋不要错过x2', price:'0.5'},
- {title:'洗澡拖鞋一次性', titleDesc:'一次性亚述拖鞋不要错过x2', price:'0.5'},
- {title:'洗澡拖鞋一次性', titleDesc:'一次性亚述拖鞋不要错过x2', price:'0.5'},
- {title:'洗澡拖鞋一次性', titleDesc:'一次性亚述拖鞋不要错过x2', price:'0.5'},
- {title:'洗澡拖鞋一次性', titleDesc:'一次性亚述拖鞋不要错过x2', price:'0.5'},
- {title:'洗澡拖鞋一次性', titleDesc:'一次性亚述拖鞋不要错过x2', price:'0.5'}
- ]
- }
- },
- // 隐藏分享菜单
- onLoad: function () {
- uni.hideShareMenu({
- success(res) {
- console.log(res)
-
- },
- fail(res){
- console.log(res)
-
- }
- });
- },
- methods: {
- // 返回上层
- goback() {
- uni.navigateBack();
- },
- // 编辑
- deleteShop() {
-
- },
- // 数量累加
- bindChange(e) {
- console.log(e)
- },
- // 单选
- changeBox(e) {
- if(this.checkboxList.length ===0 || this.checkboxList.length ===1 ) {
- this.checkboxList.push(e)
- }else {
- this.checkboxList.push(e);
- const array = this.checkboxList;
- const uniqueSet = new Set(array);
- const newArray = [...uniqueSet]
- this.$set(this.items, newArray);
- // this.checkboxList.filter(item => {
- // if(item === e) {
-
-
- // }else {
- // this.checkboxList.push(e)
-
- // }
- // })
- }
-
-
- console.log(this.checkboxList)
- },
- // 全选
- onChange() {
-
- }
- }
- }
- </script>
- <stle>
-
- .uniNavBar {
- height: 100%;
- }
- .cart-list {
- background-color: #fff;
- /* padding: 0 36upx; */
- }
- .titleright {
- text-align: right;
- padding: 10upx 30upx;
- background: #fff;
- border-bottom: 1px solid #eee;
-
- }
- .changewidth {
- color: #303133;
- font-size: 32upx;
- font-weight: 100!important;
- }
- .priceClass {
- color:#303133!important;
- font-weight: 100!important;
- font-size: 36upx;
- }
- .van-card {
- background-color: #fff!important;
- }
- .shoplist {
- display: flex;
- padding: 0 35upx;
- justify-content: space-between;
- align-items: center;
- }
- </style>
|