29 lines
422 B
Vue
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> |