Files
cashier_wx/pages/test/test.vue
2025-04-29 10:33:10 +08:00

29 lines
422 B
Vue

<template>
<view class="u-p-30">
</view>
</template>
<script setup>
import {
ref
} from 'vue';
import {
useCartsStore
} from '@/stores/carts'
const carts = useCartsStore();
console.log(carts);
const table = ref({
tableCode: '40963902920',
})
carts.init({
table_code: table.value.tableCode,
shop_id:"29",
account:29
}, {});
</script>
<style lang="scss" scoped>
.gap-20 {
gap: 20rpx;
}
</style>