下单页面调整,确认订单页面调整

This commit is contained in:
2025-04-28 11:29:32 +08:00
parent 94cc918357
commit 7c182023a5
39 changed files with 5725 additions and 275 deletions

16
App.vue
View File

@@ -1,4 +1,7 @@
<script setup>
import {
useCartsStore
} from '@/stores/carts.js';
import {
useNavbarStore
} from '@/stores/navbarStore';
@@ -16,6 +19,12 @@
import {
Storelogin
} from '@/stores/user.js';
import {
useCartStore
} from '@/stores/order.js';
// websocket
const {
proxy
} = getCurrentInstance()
@@ -26,7 +35,9 @@
await nextTick()
const store = useNavbarStore();
await store.initNavbarHeight();
getApp().globalData.websocket=null;
const cartsStore=useCartsStore()
cartsStore.isloading=false;
});
onShow(async () => {
try {
@@ -75,6 +86,7 @@
// console.log(error)
// }
// #endif
})
// onHide: function() {}
// }
@@ -84,5 +96,5 @@
/*每个页面公共css */
@import "@/uni_modules/uview-plus/index.scss";
@import '@/common/css/flex.css';
@import "@/common/css/common.css";
@import "@/common/css/common.scss";
</style>