index.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413
  1. <template>
  2. <div class="page tabbar-page">
  3. <manage-nav :shopId="shopId" :title="'菜单'"></manage-nav>
  4. <div class="tips" v-if="shopErr">
  5. 当前店铺没有门店,请后台添加门店后重试
  6. </div>
  7. <div v-if="!shopErr">
  8. <block v-if="showShop && showMenu">
  9. <div class="page__top" v-if="isAdmin">
  10. <div class="name">当前门店:</div>
  11. <div class="shop" v-if="!hideShop" @click="goShopSelect">
  12. <div class="shop__name">
  13. <!-- 最多6字 -->
  14. {{ curShop.name ? curShop.name : "加载中..." }}
  15. <i class="iconfont iconyoujiantou shop__arrow"></i>
  16. </div>
  17. </div>
  18. </div>
  19. <div class="page__top" v-else>
  20. <div class="name">当前门店:</div>
  21. <div class="shop">
  22. <div class="shop__name">
  23. <!-- 最多6字 -->
  24. {{ curShop.name ? curShop.name : "加载中..." }}
  25. <!-- <i class="iconfont iconyoujiantou shop__arrow"></i> -->
  26. </div>
  27. </div>
  28. </div>
  29. </block>
  30. <ul class="menu" v-if="!menuLoading">
  31. <li
  32. class="item"
  33. v-for="item of menuList"
  34. :key="item.id"
  35. @click="jump(item.url)"
  36. >
  37. <my-image class="img" :src="item.icon"></my-image>
  38. <span class="text">{{ item.name }}</span>
  39. </li>
  40. <li
  41. class="item"
  42. v-if="storeConfig.enableYouXuan"
  43. @click="jump('/pages/youxuan/nav')"
  44. >
  45. <my-image
  46. class="img"
  47. src="/static/icon/bd.png"
  48. ></my-image>
  49. <span class="text">直邮管理</span>
  50. </li>
  51. <li
  52. class="item"
  53. v-if="user.bdType ===1"
  54. @click="jump('/pages/bd/nav')"
  55. >
  56. <my-image
  57. class="img"
  58. src="/static/icon/youxuan.png"
  59. ></my-image>
  60. <span class="text">BD管理</span>
  61. </li>
  62. <!-- <block v-if="storeStatus === 0 || storeStatus === 1">
  63. <li
  64. class="item"
  65. @click="jump('/pages/manage/shop/index')"
  66. >
  67. <my-image
  68. class="img"
  69. src="/static/icon/shop.png"
  70. ></my-image>
  71. <span class="text">店铺设置</span>
  72. </li>
  73. </block>
  74. <li class="item" @click="jump('/pages/wallet/index')">
  75. <my-image
  76. class="img"
  77. src="/static/icon/money.png"
  78. ></my-image>
  79. <span class="text">我的钱包</span>
  80. </li> -->
  81. <li class="item" @click="jump('/pages/manage/user/index')">
  82. <my-image
  83. class="img"
  84. src="/static/icon/user.png"
  85. ></my-image>
  86. <span class="text">账号设置</span>
  87. </li>
  88. </ul>
  89. </div>
  90. <!-- <button class="btn" @click="layout">退出登录</button> -->
  91. <div class="ver">0.5.61</div>
  92. <wyg-bottom-tab
  93. ref="tabbar"
  94. :tabIndex="2"
  95. :tabListParent="tabList"
  96. ></wyg-bottom-tab>
  97. </div>
  98. </template>
  99. <script>
  100. import MyImage from "../../components/image/index";
  101. import ManageNav from "../../components/layout/manage-nav";
  102. import wygBottomTab from "../../components/wyg-bottom-tab/wyg-bottom-tab";
  103. export default {
  104. name: "",
  105. components: { MyImage, wygBottomTab, ManageNav },
  106. // 数据
  107. data() {
  108. return {
  109. curShop: {},
  110. shopErr: false,
  111. menuList: [],
  112. menuLoading: true,
  113. loading: false,
  114. showShop: true,
  115. showMenu: true,
  116. storeStatus: -1,
  117. shopId: null,
  118. storeConfig: {},
  119. };
  120. },
  121. onLoad() {
  122. // this.getUserMenu();
  123. },
  124. async onShow() {
  125. this.$refs.tabbar.setIndex(2);
  126. this.showShop = true;
  127. if (this.isAdmin) {
  128. this.curShop = {
  129. name: this.user.storeName,
  130. id: this.user.storeId,
  131. };
  132. this.getShopList();
  133. } else {
  134. if (this.user.storeId) {
  135. this.curShop = {
  136. name: this.user.storeName,
  137. id: this.user.storeId,
  138. };
  139. } else {
  140. // this.fn.showModal({
  141. // content: "当前用户无门店设置,请前往后台设置所属店铺",
  142. // });
  143. // this.getShopList();
  144. this.showShop = false;
  145. }
  146. }
  147. // 判断页面显示
  148. // if (this.user.roleId && this.user.bundleId !== 0) {
  149. // this.showMenu = true;
  150. // } else {
  151. // this.showMenu = false;
  152. // }
  153. this.getUserMenu();
  154. this.checkStatus();
  155. this.api
  156. .get(
  157. "/Store/GetStoreConfig",
  158. { id: this.user.storeId },
  159. { pass: true }
  160. )
  161. .then((infoRes) => {
  162. this.storeConfig = infoRes.data;
  163. });
  164. },
  165. // 函数
  166. methods: {
  167. checkStatus() {
  168. /*
  169. 闭店中 = 0, // 已开通,店铺未营业
  170. 营业中 = 1, // 店铺营业中
  171. 待审核 = 2, // 通过审核后,状态改为闭店中
  172. 待开通 = 3, // 通过审核,等待开通
  173. 未通过审核 = 4 // 未通过审核
  174. */
  175. this.api.get("/Shop/checkStatus").then((res) => {
  176. if (res.data === 1 || res.data === 0) {
  177. this.api
  178. .get("/Shop/GetInfo", {}, { pass: true })
  179. .then((infoRes) => {
  180. this.shopId = infoRes.data.id;
  181. });
  182. }
  183. });
  184. },
  185. getUserMenu() {
  186. uni.showLoading({
  187. title: "加载中...",
  188. });
  189. this.menuLoading = true;
  190. this.api
  191. .get("/User/GetUserMenu", { userId: this.user.id })
  192. .then((res) => {
  193. if (res.data.userMenu) {
  194. let userMenu = res.data.userMenu.mobile;
  195. let mobileMenu = res.data.menu.mobile;
  196. if (userMenu && userMenu.length) {
  197. this.initMenu(mobileMenu, userMenu);
  198. }
  199. }
  200. this.menuLoading = false;
  201. uni.hideLoading();
  202. });
  203. },
  204. initMenu(menu, userMenu) {
  205. let arr = [];
  206. for (let item of menu) {
  207. for (let userItem of userMenu) {
  208. if (userItem.id === item.id && userItem.status === 1) {
  209. let obj = item;
  210. let childArr = [];
  211. if (userItem.children && userItem.children.length) {
  212. for (let userChild of userItem.children) {
  213. for (let child of item.children) {
  214. if (
  215. userChild.id === child.id &&
  216. userChild.status === 1
  217. ) {
  218. childArr.push(child);
  219. }
  220. }
  221. }
  222. }
  223. obj.children = childArr;
  224. arr.push(obj);
  225. }
  226. }
  227. }
  228. this.$store.commit("user/update", {
  229. menuList: arr,
  230. });
  231. let arr2 = [];
  232. for (let item of arr) {
  233. if (item.id !== "mobile_setting") {
  234. arr2.push(item);
  235. }
  236. }
  237. this.menuList = arr2;
  238. },
  239. getShopList() {
  240. uni.showLoading({
  241. title: "加载中...",
  242. });
  243. this.api.get("/Store/GetShopList").then((res) => {
  244. if (res.data.length === 0) {
  245. this.shopErr = true;
  246. }
  247. this.shopList = res.data;
  248. uni.hideLoading();
  249. uni.stopPullDownRefresh();
  250. if (!this.curShop.id) {
  251. this.curShop = res.data[0];
  252. let user = { ...this.$store.state.user.user };
  253. user.storeId = this.curShop.id;
  254. user.storeName = this.curShop.name;
  255. this.$store.commit("user/update", {
  256. user,
  257. });
  258. }
  259. });
  260. },
  261. goShopSelect() {
  262. this.router.push({
  263. path: "/pages/index/select",
  264. query: {
  265. entry: "manage",
  266. },
  267. });
  268. },
  269. layout() {
  270. this.$store.commit("user/logout", null);
  271. this.router.push({
  272. path: "/pages/index/login",
  273. isTabBar: true,
  274. });
  275. },
  276. },
  277. // 数据计算
  278. computed: {
  279. tabList() {
  280. return this.$store.state.common.tabList;
  281. },
  282. user() {
  283. return this.$store.state.user.user;
  284. },
  285. isAdmin() {
  286. //店铺管理员 系统管理员
  287. if (
  288. this.user.roleId === "50c41c5d-b54c-43ed-b587-10dcb60e72e5" ||
  289. this.user.roleId === "75b71b24-25de-40ac-a866-c8f5555b8b92"
  290. ) {
  291. return true;
  292. } else {
  293. return false;
  294. }
  295. },
  296. },
  297. // 数据监听
  298. watch: {},
  299. };
  300. </script>
  301. <style lang="scss" scoped>
  302. .page {
  303. &__top {
  304. display: flex;
  305. align-items: center;
  306. justify-content: space-between;
  307. height: px(145);
  308. padding: 0 px(50);
  309. background-color: #fff;
  310. border-bottom: 1px solid #f1f1f1;
  311. }
  312. .name {
  313. font-size: px(36);
  314. color: #999;
  315. flex-shrink: 0;
  316. margin-right: px(20);
  317. }
  318. }
  319. .shop {
  320. display: flex;
  321. color: #666;
  322. font-size: px(36);
  323. flex-shrink: 0;
  324. margin-right: px(30);
  325. width: 100%;
  326. &__logo {
  327. margin-right: px(20);
  328. width: px(80);
  329. height: px(80);
  330. border-radius: 50%;
  331. box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
  332. overflow: hidden;
  333. /deep/ img {
  334. width: px(80);
  335. height: px(80);
  336. }
  337. }
  338. &__name {
  339. display: flex;
  340. white-space: nowrap;
  341. align-items: center;
  342. }
  343. &__arrow {
  344. margin-left: px(10);
  345. transform: rotate(90deg);
  346. }
  347. }
  348. .menu {
  349. display: flex;
  350. flex-wrap: wrap;
  351. border-top: 1px solid #f1f1f1;
  352. .item {
  353. width: 33.333333%;
  354. height: px(330);
  355. flex-shrink: 0;
  356. display: flex;
  357. flex-direction: column;
  358. justify-content: center;
  359. align-items: center;
  360. font-size: px(44);
  361. background-color: #fff;
  362. border-bottom: 1px solid #f1f1f1;
  363. /deep/ img {
  364. width: px(90);
  365. height: px(90);
  366. margin-bottom: px(30);
  367. }
  368. &:nth-child(3n-1),
  369. &:nth-child(3n) {
  370. border-left: 1px solid #f1f1f1;
  371. }
  372. }
  373. }
  374. .ver {
  375. margin-top: px(30);
  376. font-size: px(30);
  377. text-align: center;
  378. color: #aaa;
  379. }
  380. .btn {
  381. position: fixed;
  382. bottom: 3.6rem;
  383. left: px(30);
  384. right: px(30);
  385. z-index: 10;
  386. color: #333;
  387. background-color: #f3f3f3;
  388. font-size: px(44);
  389. }
  390. .tips {
  391. background-color: #fef9f3;
  392. font-size: px(40);
  393. padding: 0 px(40);
  394. height: px(100);
  395. line-height: px(100);
  396. color: #ec883d;
  397. }
  398. </style>