123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238 |
- <template>
- <view class="cart-pages">
- <view class="cart-bar">
- <view>共25件商品</view>
- <view @click="editCart">
- <text class="edit" v-if="!isEdit">管理</text>
- <text class="save" v-else>完成</text>
- </view>
- </view>
- <view class="goods-list">
- <!-- 按分类显示 -->
- <view class="goods-class-box" v-for="item in 2">
- <view class="goods-class-head">
- <view>
- <u-checkbox shape="circle" active-color="#01c9b2" name='goodsClas' @change="goodsClasChange">
- 人气零食
- </u-checkbox>
- </view>
- <view class="des">
- <view>满<text>300</text></view>
- <u-image mode="scaleToFill" width="30rpx" height="30rpx" src="/static/ledou.png"></u-image>
- <view>才可购买</view>
- </view>
- </view>
- <view class="goods-class-list">
- <!-- 商品列表 -->
- <view class="goods-item" v-for="(item,index) in 3" :key="index">
- <view class="checkbox">
- <u-checkbox v-if="index!=1||isEdit" shape="circle" active-color="#01c9b2" name='goodsItem'></u-checkbox>
- </view>
- <view class="goods-imgs">
- <view v-if="index==1" class="goods-staus">已售罄</view>
- <u-image border-radius="12" width="158rpx" height="140rpx" src="/static/goods.png"></u-image>
- </view>
- <view class="goods-info">
- <view class="good-name">拉就是两地分居拉进来就是两地分居拉进来就是两地分居拉进来进来</view>
- <view class="goods-price">
- <view>
- <text>50</text>
- <u-image mode="scaleToFill" width="35rpx" height="35rpx" src="/static/ledou.png"></u-image>
- </view>
- <view v-if="index!=1">
- <u-number-box :min="1"></u-number-box>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- <view class="cart-submit">
- <view>
- <u-checkbox shape="circle" name='checkAll' active-color="#01c9b2" @change="checkAllChange" v-model="checkAll">全选</u-checkbox>
- </view>
- <view v-if="!isEdit">
- <view class="heji">
- <view>总计:<text>450</text></view>
- <u-image mode="scaleToFill" width="40rpx" height="40rpx" src="/static/ledou.png"></u-image>
- </view>
- <u-button size="mini" :custom-style="toOrderButton" type="error" @click="toOrder()">立即下单</u-button>
- </view>
- <view v-else>
- <u-button size="mini" :custom-style="toOrderButton" type="error">删除</u-button>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- checkAll: false,// 全选
- isEdit: false, // 是否编辑模式
- toOrderButton: {
- borderRadius:'100rpx',
- fontSize:'30rpx',
- width: '180rpx',
- height: '60rpx'
- }
- };
- },
- methods: {
- // 全选
- checkAllChange(e) {
- console.log(e);
- },
- // 每个分类的全选
- goodsClasChange(e){
- console.log(e);
- },
- // 编辑购物车
- editCart(){
- this.isEdit = !this.isEdit
- },
- //立即下单
- toOrder(){
- uni.redirectTo({
- url:"/pages/toOrder/index"
- })
- }
- },
- }
- </script>
- <style lang="scss">
- page{
- height: 100%;
- }
- .cart-pages{
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- .cart-bar{
- display: flex;
- justify-content: space-between;
- padding:20upx;
- .edit{
- color: #666;
- }
- .save{
- color: #00aaff;
- }
- }
- .goods-list{
- flex-grow: 1;
- overflow: auto;
- .goods-class-box{
- background: #FFFFFF;
- box-shadow: 1px 1px 3px #eee;
- margin-bottom: 20upx;
- .goods-class-head{
- display: flex;
- align-items: center;
- padding: 20upx;
- border-bottom: 1px solid #F8F8F8;
- justify-content: space-between;
- .des{
- display: flex;
- align-items: center;
- font-size: 26upx;
- color: #999;
- text{
- color: #FA3534;
- }
- }
- }
- }
-
- .goods-item{
- padding: 20upx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- border-bottom: 1px solid #F8F8F8;
- &:last-child{
- border: 0;
- }
- .checkbox{
- width: 80rpx;
- overflow: hidden;
- }
- .goods-imgs{
- position: relative;
- .goods-staus{
- width: 100%;
- height: 100%;
- position: absolute;
- z-index: 10000;
- border-radius: 15rpx;
- background: rgba($color: #000000, $alpha: 0.4);
- text-align: center;
- line-height: 140rpx;
- left: 0;
- top: 0;
- color: #eee;
- font-size: 24upx;
- font-weight: bold;
- }
- }
- .goods-info{
- padding-left: 20upx;
- .good-name{
- font-weight: bold;
- }
- }
- .goods-price{
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding-top: 20upx;
- >view{
- &:first-child{
- font-size: 22upx;
- display: flex;
- align-items: center;
- text{
- color: red;
- font-size: 32upx;
- margin-right: 6upx;
- font-weight: bold;
- }
- }
- }
- }
- }
- }
- .cart-submit{
- padding: 20upx;
- background: #FFFFFF;
- box-shadow: 1px 1px 3px #eee;
- border-top: 1px solid #eee;
- display: flex;
- align-items: center;
- justify-content: space-between;
- >view{
- &:last-child{
- display: flex;
- align-items: center;
- font-size: 26upx;
- text{
- color: red;
- font-size: 40upx;
- }
- > view{
- padding-right: 50upx;
- }
- .heji{
- display: flex;
- align-items: center;
- font-weight: bold;
- }
- }
- }
- }
- }
- </style>
|