123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267 |
- <template>
- <Navbar v-if="props.showNavbar" />
- <v-card class="card-box mb-5 pa-5 resume-box mt-3" :class="props.defaultWidth ? 'default-width' : '100%'" :elevation="props.elevation">
- <div class="resume-header">
- <div class="resume-title" style="cursor: pointer;" @click="getCartList">我的购物车</div>
- <div>
- <v-btn color="primary" size="small" variant="text" class="ml-2" @click="getCartList"><v-icon>mdi-refresh</v-icon>刷新购物车</v-btn>
- <v-btn v-if="props.showOrder" color="primary" size="small" variant="text" class="ml-2" to="/recruit/personal/personalCenter/tradeOrder?key=1"><v-icon>mdi-account-circle-outline</v-icon>我的订单</v-btn>
- </div>
- </div>
- <div v-if="cartList.length" class="mt-3">
- <v-data-table
- v-model="selectedData"
- :items="cartList"
- :headers="headers"
- :loading="false"
- :elevation="0"
- :show-select="true"
- select-strategy="all"
- >
- <template v-slot:[`header.data-table-select`]>
- <v-checkbox v-model="selectAll" hide-details color="primary" @update:modelValue="handleSelectAll"></v-checkbox>
- </template>
- <template v-slot:[`item.data-table-select`]="{ item }">
- <v-checkbox v-model="item.selected" hide-details color="primary" @update:modelValue="val => handleSelect(val, item.id)"></v-checkbox>
- </template>
- <template v-slot:[`item.spuName`]="{ item }">
- <GoodsItem :item="{ ...item.sku, ...item.spu, spuName: item.spu.name, picUrl: item.sku?.picUrl || item.spu?.picUrl }" :showLine="false" :showPriceCount="false" class="mb-1" />
- </template>
- <template v-slot:[`item.count`]="{ item }">
- <v-number-input
- v-model="item.count"
- color="primary"
- :min="1" :max="item.sku.stock"
- hide-details
- control-variant="split"
- inset density="compact"
- style="width: 170px;"
- @update:modelValue="val => handleChangeCount(val, item.id)"
- />
- </template>
- <template v-slot:[`item.actions`]="{ item }">
- <v-btn color="error" @click.stop="handleDelete(false, item.id)" variant="text">删除</v-btn>
- </template>
- <template #bottom></template>
- </v-data-table>
- <v-divider></v-divider>
- <div class="d-flex align-center justify-space-between py-4">
- <div class="d-flex align-center">
- <!-- <v-checkbox v-model="selectAll" hide-details color="primary" @update:modelValue="handleSelectAll"></v-checkbox>
- <span class="mr-5" style="color: #777;">全选</span> -->
- <v-btn :disabled="!selectedData.length" color="error" variant="outlined" @click.stop="handleDelete(true)">删除选中的商品</v-btn>
- </div>
- <div class="d-flex align-center">
- <div class="color-666 mr-8">共{{ totalCount }}件商品,合计:¥{{ fen2yuan(totalPrice) }}</div>
- <v-btn :disabled="!totalCount" color="primary" @click.stop="handleSettlement">结算<span v-if="totalCount > 0">({{ totalCount }})</span></v-btn>
- </div>
- </div>
- </div>
- <div v-else class="text-center">
- <Empty :elevation="false" message="购物车空空如也,去首页逛逛吧" />
- <v-btn elevation="5" color="primary" @click.stop="router.push('/mall')" size="x-large" width="200">去逛逛</v-btn>
- </div>
- </v-card>
- <!-- 结算 -->
- <!-- <CtDialog :visible="showSettlement" titleClass="text-h6" :widthType="3" title="订单信息" @submit="handleSubmit" @close="handleClose">
- <confirm ref="confirmRef" :data="skuInfo" @orderCreated="orderCreated"></confirm>
- </CtDialog> -->
- <!-- 支付 -->
- <!-- <CtDialog :visible="showPay" titleClass="text-h6" :widthType="3" title="收银台" :footer="false" @close="payCancel">
- <pay ref="payRef" :id="payOrderId" @paySuccess="paySuccess"></pay>
- </CtDialog> -->
- </template>
- <script setup>
- defineOptions({ name: 'mall-cart'})
- import { ref, computed, onMounted, nextTick } from 'vue'
- import Navbar from '../components/navbar.vue'
- import { useRouter } from 'vue-router'
- import { getMallUserCartList } from '@/api/mall/cart'
- import { fen2yuan } from '@/hooks/web/useGoods'
- import GoodsItem from '../components/GoodsItem'
- import { updateCartSelected, updateCartCount, deleteCartGoods } from '@/api/mall/cart'
- import Snackbar from '@/plugins/snackbar'
- // import confirm from '@/views/mall/components/details/order/confirm.vue'
- // import pay from '@/views/mall/components/details/order/pay.vue'
- import Confirm from '@/plugins/confirm'
- import { useI18n } from '@/hooks/web/useI18n'; const { t } = useI18n()
- const props = defineProps({
- showNavbar: {
- type: Boolean,
- default: true
- },
- defaultWidth: {
- type: Boolean,
- default: true
- },
- showOrder: {
- type: Boolean,
- default: true
- },
- elevation: {
- type: [Number, String],
- default: '3'
- }
- })
- const router = useRouter()
- const cartList = ref([])
- const selectAll = ref(false)
- const headers = [
- { title: '商品信息', key: 'spuName', sortable: false },
- { title: '单价', key: 'sku.price', sortable: false, value: item => '¥' + fen2yuan(item.sku.price) },
- { title: '数量', key: 'count', sortable: false },
- { title: '合计', key: 'totalCount', sortable: false, value: item => '¥' + fen2yuan(item.sku.price * item.count) },
- { title: '操作', key: 'actions', align: 'center', sortable: false }
- ]
- // 获取购物车列表
- const getCartList = async () => {
- const data = await getMallUserCartList()
- if (!data?.validList?.length) return
- cartList.value = data.validList || []
- selectAll.value = cartList.value.every(e => e.selected)
- }
- onMounted(async () => {
- getCartList()
- })
- // 全选
- const handleSelectAll = async (selected) => {
- const ids = cartList.value.map(item => item.id)
- await updateCartSelected({ ids, selected })
- getCartList()
- }
- // 单选
- const handleSelect = async (selected, id) => {
- await updateCartSelected({ ids: [id], selected })
- getCartList()
- }
- // 选中的商品列表
- const selectedData = computed(() => {
- return cartList.value.map(item => {
- if (item.selected) return item.id
- }).filter(Boolean)
- })
- // 总结算金额
- const totalPrice = computed(() => {
- return cartList.value.reduce((total, item) => {
- if (item.selected) {
- return total + item.sku.price * item.count
- }
- return total
- }, 0)
- })
- // 总商品件数
- const totalCount = computed(() => {
- return cartList.value.reduce((total, item) => {
- if (item.selected) {
- return total + item.count
- }
- return total
- }, 0)
- })
- // 删除购物车中的商品
- const handleDelete = async (isAll, id) => {
- Confirm(t('common.confirmTitle'), `是否确定删除${isAll? '选中的' : ''}商品?`).then(async () => {
- const ids = isAll ? selectedData.value.join(',') : id
- await deleteCartGoods(ids)
- await getCartList()
- })
- }
- // 商品数量更新
- const handleChangeCount = async (count, id) => {
- await updateCartCount({ count, id })
- await getCartList()
- }
- // 结算
- // const showSettlement = ref(false)
- const selectedList = ref([])
- // const skuInfo = ref(null) // 购买商品规格信息
- const handleSettlement = () => {
- let items = []
- let goods_list = [];
- selectedList.value = cartList.value.filter((item) => selectedData.value.includes(item.id));
- selectedList.value.map((item) => {
- // 此处前端做出修改
- items.push({
- skuId: item.sku.id,
- count: item.count,
- cartId: item.id,
- categoryId: item.spu.categoryId
- })
- goods_list.push({
- goods_id: item.spu.id,
- goods_num: item.count,
- });
- });
- // return;
- if (goods_list.length === 0) {
- Snackbar.warning('请选择商品')
- return
- }
-
- // skuInfo.value = JSON.stringify({
- // items
- // })
- // showSettlement.value = true
- localStorage.setItem('confirm_order_data', JSON.stringify({ items }))
- nextTick(() => {
- router.push('/mall/confirm_order')
- })
- }
- // const confirmRef = ref()
- // const handleSubmit = () => {
- // if (confirmRef.value) confirmRef.value.onConfirm()
- // }
- // const handleClose = () => {
- // showSettlement.value = false
- // }
- // 创建订单完成
- // const payRef = ref()
- // const showPay = ref(false)
- // const payOrderId = ref('')
- // const orderCreated = (id) => {
- // showSettlement.value = false
- // payOrderId.value = id
- // showPay.value = true
- // // 更新购物车列表
- // getCartList()
- // }
- // const payCancel = () => {
- // Snackbar.warning('您已取消支付!')
- // showPay.value = false
- // // window.open('/recruit/personal/personalCenter/tradeOrder?key=1')
- // setTimeout(() => { router.push('/recruit/personal/personalCenter/tradeOrder?key=1') }, 500);
- // }
- // const paySuccess = (e) => {
- // // Snackbar.success('支付成功!')
- // // showPay.value = false
- // // setTimeout(() => { router.push('/recruit/personal/personalCenter/tradeOrder?key=1') }, 500);
- // router.push({ path: '/mall/payOver', query: { price: e.price }})
- // }
- </script>
- <style scoped lang="scss">
- :deep(.v-table.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th) {
- text-wrap: nowrap !important;
- background-color: #f7f8fa !important;
- }
- :deep(.v-selection-control__input) {
- color: var(--v-primary-base) !important;
- }
- :deep(.v-table.v-table--hover > .v-table__wrapper > table > tbody > tr > td) {
- white-space: nowrap !important;
- }
- </style>
|