删除部分图片,增加超级会员页面功能

This commit is contained in:
2025-12-02 15:56:41 +08:00
parent 4faa482380
commit da321e3afc
81 changed files with 4395 additions and 712 deletions

View File

@@ -2,6 +2,18 @@
import { defineStore } from "pinia";
import * as shopApi from "@/http/api/shop.js";
//判断是否是主店
export const isMainShop = (shopId) => {
const shopInfo=uni.getStorageSync("shopInfo");
if(shopInfo.isHeadShop){
return true
}
if(shopInfo.shopType=='only'){
return true
}
return false
}
// 分销
export const useAccountInfoStore = defineStore("accountInfo", {
state: () => {