123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368 |
- <template>
- <!-- 购物车 -->
- <view>
- <u-navbar :safeAreaInsetTop="true" :placeholder='true'>
- <view class="u-nav-slot" slot="left">
- <view class="">
- <text class="shopcart">{{i18n.Shopping}}</text>
- <text class="sum">(12)</text>
- </view>
- </view>
- <view class="u-nav-slot" slot="right">
- <view class="u-flex">
- <text @click="admin" v-if="success">{{i18n.manage}}</text>
- <text @click="admin" v-else>{{i18n.complete}}</text>
- <view class="" style="width: 200rpx;"></view>
- </view>
- </view>
- </u-navbar>
- <u-checkbox-group v-model="checkboxValue1" placement="column" @change="checkboxChange">
- <view class="box" v-for="(item,idx) in 6" :key="idx">
- <view class="item">
- <view class="shopname u-flex">
- <image src="/static/images/logo.png" style="width: 28rpx;height: 28rpx;" mode=""></image>
- <text>妞妞团🇨🇳进群抢秒杀❗️❗️</text>
- <image src="/static/express/next1.png" style="width: 32rpx;height: 32rpx;" mode=""></image>
- </view>
- <u-swipe-action>
- <view class="u-flex" style="margin-top: 30rpx;width: 100%;" v-for="(chid,index) in 2"
- :key="index">
- <u-swipe-action-item :options="options2">
- <u-checkbox shape='circle' :customStyle="{marginBottom: '8px'}" :name="shopitem">
- </u-checkbox>
- <image src="../../static/images/logo.png" style="width: 172rpx;height: 172rpx;" mode="">
- </image>
- <view class="good" style="flex: 1;">
- <view class="goodname">布兰德超级锁鲜全价主食冻干成</view>
- <view class="goods">兔肉味-提高免疫 主食白金包</view>
- <view class="" style="margin-top: 21rpx;">
- <view class="goodtab">{{i18n.postage}}</view>
- </view>
- <view class="u-flex u-row-between" style="width: 100%;margin-top: 20rpx;">
- <view class="">
- <text class="money">¥</text>
- <text class="money" style="font-size: 30rpx;">179</text>
- <text class="money">.00</text>
- <text class="weight">500g</text>
- </view>
- <view class="">
- <view class="" v-if="num&&success">
- <u-number-box v-model="value" @change="valChange"></u-number-box>
- </view>
- <view class="num" v-if="num==false&&success" @click="num = true">
- x1
- </view>
- </view>
- <view v-if="success==false" class="icon">
- <u-icon name="trash" color="#fff" size="20"></u-icon>
- </view>
- </view>
- </view>
- </u-swipe-action-item>
- </view>
- </u-swipe-action>
- </view>
- </view>
- </u-checkbox-group>
- <view class="" style="height: 140rpx;"></view>
- <view class="bottom u-flex u-row-between" style="position: fixed;left: 0;z-index: 222;"
- :style="{bottom:tabarheight + 'px'}">
- <view class="u-flex">
- <u-checkbox-group v-model="all" placement="column" @change="checkAll">
- <u-checkbox shape="circle" :name="selectall">
- </u-checkbox>
- </u-checkbox-group>
- <text>{{i18n.selectall}}</text>
- </view>
- <view v-if="success==false" class="dle">
- {{i18n.delete}}
- </view>
- <view class="u-flex" v-else>
- <view class="">
- <text class="allweight">{{i18n.Grossweight}} 50kg,</text>
- <text class="sum">{{i18n.total}}:</text>
- <text class='summon'>¥</text>
- <text class='summon' style="font-size: 36rpx;">188</text>
- <text class='summon'>.34</text>
- </view>
- <view class="settle">{{i18n.GotoResult}}</view>
- </view>
- </view>
- <kj-tabbar :value1=3></kj-tabbar>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- success: true,
- shopitem: -1,
- checkboxValue1: [], //商品数组
- value: 0,
- all: [], //全选数组
- selectall: -1,
- num: false,
- options2: [{
- text: '收藏',
- style: {
- backgroundColor: '#3c9cff'
- }
- }, {
- text: '删除',
- style: {
- backgroundColor: '#f56c6c'
- }
- }],
- tabarheight: ''
- };
- },
- computed: {
- i18n() {
- return this.$t('index')
- }
- },
- onLoad() {
- const systemInfo = wx.getSystemInfoSync()
- console.log(systemInfo);
- const tab = systemInfo.screenHeight - systemInfo.safeArea.bottom + systemInfo.statusBarHeight;
- this.tabarheight = tab
- console.log(this.tabarheight);
- },
- methods: {
- admin() {
- this.success = !this.success
- console.log(this.success);
- },
- valChange(e) {
- console.log('当前值为: ' + e.value)
- },
- //全选
- checkAll(e) {
- console.log('all', e);
- },
- checkboxChange(n) {
- console.log('change', n);
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .allweight {
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 22rpx;
- color: #333333;
- line-height: 32rpx;
- text-align: left;
- font-style: normal;
- }
- .sum {
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 22rpx;
- color: #333333;
- line-height: 32rpx;
- text-align: left;
- font-style: normal;
- }
- .summon {
- font-family: JDZhengHT, JDZhengHT;
- font-weight: 400;
- font-size: 24rpx;
- color: #FF1515;
- line-height: 30rpx;
- text-align: left;
- font-style: normal;
- }
- .settle {
- width: 176rpx;
- height: 68rpx;
- background: #F83224;
- border-radius: 38rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 500;
- font-size: 28rpx;
- color: #FFFFFF;
- line-height: 68rpx;
- text-align: center;
- font-style: normal;
- margin-left: 20rpx;
- }
- .icon {
- width: 40rpx;
- height: 40rpx;
- background: #F83224;
- border-radius: 12rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .dle {
- width: 136rpx;
- height: 60rpx;
- border-radius: 38rpx;
- border: 1rpx solid #979797;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 26rpx;
- color: #333333;
- line-height: 60rpx;
- text-align: center;
- font-style: normal;
- }
- ::v-deep .u-swipe-action-item__content {
- flex-direction: row !important;
- }
- ::v-deep .u-swipe-action-item {
- width: 100% !important;
- }
- ::v-deep .u-swipe-action-item__right {
- top: 2rpx !important;
- right: 2rpx !important;
- bottom: 2rpx !important;
- }
- .bottom {
- width: 750rpx;
- height: 100rpx;
- background: #FFFFFF;
- padding: 0 24rpx;
- box-sizing: border-box;
- }
- .num {
- width: 40rpx;
- height: 40rpx;
- border-radius: 20rpx;
- border: 1rpx solid rgba(151, 151, 151, 0.4);
- font-family: HarmonyOS_Sans;
- font-size: 20rpx;
- color: #222222;
- line-height: 40rpx;
- text-align: center;
- font-style: normal;
- }
- .box {
- padding: 0rpx 24rpx 20rpx;
- margin-top: 20rpx;
- box-sizing: border-box;
- .item {
- padding: 36rpx 20rpx;
- box-sizing: border-box;
- width: 702rpx;
- // height: 556rpx;
- background: #FFFFFF;
- border-radius: 16rpx;
- .money {
- font-family: HarmonyOS_Sans_Medium;
- font-size: 20rpx;
- color: #FF1515;
- line-height: 26rpx;
- text-align: left;
- font-style: normal;
- }
- .weight {
- font-family: SFPro, SFPro;
- font-weight: 400;
- font-size: 20rpx;
- color: #333333;
- line-height: 24rpx;
- text-align: left;
- font-style: normal;
- margin-left: 12rpx;
- }
- .goodtab {
- // width: 96rpx;
- height: 32rpx;
- border-radius: 4rpx;
- border: 1rpx solid #FF1515;
- padding: 2rpx 8rpx;
- box-sizing: border-box;
- text-align: center;
- line-height: 32rpx;
- display: inline;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 20rpx;
- color: #FF1515;
- line-height: 28rpx;
- text-align: left;
- font-style: normal;
- }
- .goods {
- // width: 284rpx;
- height: 40rpx;
- background: #F4F4F4;
- border-radius: 8rpx;
- display: inline;
- text-align: center;
- line-height: 40rpx;
- margin-top: 20rpx;
- padding: 6rpx 12rpx;
- box-sizing: border-box;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 20rpx;
- color: #555555;
- line-height: 28rpx;
- text-align: left;
- font-style: normal;
- }
- .goodname {
- font-family: PingFangSC, PingFang SC;
- font-weight: 500;
- font-size: 28rpx;
- color: #333333;
- line-height: 40rpx;
- text-align: left;
- font-style: normal;
- }
- .shopname {
- font-family: PingFangSC, PingFang SC;
- font-weight: 500;
- font-size: 26rpx;
- color: #333333;
- line-height: 36rpx;
- text-align: left;
- font-style: normal;
- }
- }
- }
- .shopcart {
- font-family: PingFangSC, PingFang SC;
- font-weight: 500;
- font-size: 36rpx;
- color: #222222;
- line-height: 50rpx;
- text-align: right;
- font-style: normal;
- }
- .sum {
- font-family: HarmonyOS_Sans;
- font-size: 22rpx;
- color: #333333;
- line-height: 32rpx;
- text-align: left;
- font-style: normal;
- }
- </style>
|