index.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342
  1. <template>
  2. <div class="page">
  3. <div class="tips" v-if="shopErr">
  4. 当前店铺没有门店,请后台添加门店后重试
  5. </div>
  6. <div v-if="!shopErr">
  7. <div class="page__top" v-if="isAdmin">
  8. <div class="name">当前门店:</div>
  9. <div class="shop" v-if="!hideShop" @click="goShopSelect">
  10. <div class="shop__name">
  11. <!-- 最多6字 -->
  12. {{ curShop.name ? curShop.name : "加载中..." }}
  13. <i class="iconfont iconyoujiantou shop__arrow"></i>
  14. </div>
  15. </div>
  16. </div>
  17. <div class="page__top" v-else>
  18. <div class="name">当前门店:</div>
  19. <div class="shop">
  20. <div class="shop__name">
  21. <!-- 最多6字 -->
  22. {{ curShop.name ? curShop.name : "加载中..." }}
  23. <!-- <i class="iconfont iconyoujiantou shop__arrow"></i> -->
  24. </div>
  25. </div>
  26. </div>
  27. <ul class="menu" v-if="!menuLoading">
  28. <li
  29. class="item"
  30. v-for="item of menuList"
  31. :key="item.id"
  32. @click="jump(item.url)"
  33. >
  34. <my-image class="img" :src="item.icon"></my-image>
  35. <span class="text">{{ item.name }}</span>
  36. </li>
  37. <!-- <li class="item" @click="jump('/pages/manage/good-list')">
  38. <my-image
  39. class="img"
  40. src="/static/icon/edit.png"
  41. ></my-image>
  42. <span class="text">编辑商品</span>
  43. </li>
  44. <li class="item" @click="jump('/pages/manage/classify')">
  45. <my-image
  46. class="img"
  47. src="/static/icon/classify.png"
  48. ></my-image>
  49. <span class="text">分类管理</span>
  50. </li>
  51. <li class="item" @click="jump('/pages/manage/statistics/nav')">
  52. <my-image
  53. class="img"
  54. src="/static/icon/statistics.png"
  55. ></my-image>
  56. <span class="text">数据统计</span>
  57. </li>
  58. <li class="item" @click="jump('/pages/manage/coupon/list')">
  59. <my-image
  60. class="img"
  61. src="/static/icon/coupon.png"
  62. ></my-image>
  63. <span class="text">优惠券</span>
  64. </li>
  65. <li class="item" @click="jump('/pages/manage/mina/index')">
  66. <my-image
  67. class="img"
  68. src="/static/icon/mina.png"
  69. ></my-image>
  70. <span class="text">小程序</span>
  71. </li>
  72. <li class="item" @click="jump('/pages/manage/poster/index')">
  73. <my-image
  74. class="img"
  75. src="/static/icon/share.png"
  76. ></my-image>
  77. <span class="text">分享海报</span>
  78. </li> -->
  79. </ul>
  80. </div>
  81. <button class="btn" @click="layout">退出登录</button>
  82. <div class="ver">0.3.7</div>
  83. </div>
  84. </template>
  85. <script>
  86. import MyImage from "../../components/image/index";
  87. export default {
  88. name: "",
  89. components: { MyImage },
  90. // 数据
  91. data() {
  92. return {
  93. curShop: {},
  94. shopErr: false,
  95. menuList: [],
  96. menuLoading: true,
  97. };
  98. },
  99. onLoad() {
  100. this.getUserMenu();
  101. },
  102. async onShow() {
  103. if (this.isAdmin) {
  104. this.curShop = {
  105. name: this.user.storeName,
  106. id: this.user.storeId,
  107. };
  108. this.getShopList();
  109. } else {
  110. if (this.user.storeId) {
  111. this.curShop = {
  112. name: this.user.storeName,
  113. id: this.user.storeId,
  114. };
  115. } else {
  116. this.fn.showModal({
  117. content: "当前用户无门店设置,请前往后台设置所属店铺",
  118. });
  119. // this.getShopList();
  120. }
  121. }
  122. },
  123. // 函数
  124. methods: {
  125. getUserMenu() {
  126. uni.showLoading({
  127. title: "加载中...",
  128. });
  129. this.menuLoading = true;
  130. this.api
  131. .get("/User/GetUserMenu", { userId: this.user.id })
  132. .then((res) => {
  133. if (res.data.userMenu) {
  134. let userMenu = res.data.userMenu.mobile;
  135. let mobileMenu = res.data.menu.mobile;
  136. if (userMenu && userMenu.length) {
  137. this.initMenu(mobileMenu, userMenu);
  138. }
  139. }
  140. this.menuLoading = false;
  141. uni.hideLoading();
  142. });
  143. },
  144. initMenu(menu, userMenu) {
  145. let arr = [];
  146. for (let item of menu) {
  147. for (let userItem of userMenu) {
  148. if (userItem.id === item.id && userItem.status === 1) {
  149. let obj = item;
  150. let childArr = [];
  151. if (userItem.children && userItem.children.length) {
  152. for (let userChild of userItem.children) {
  153. for (let child of item.children) {
  154. if (
  155. userChild.id === child.id &&
  156. userChild.status === 1
  157. ) {
  158. childArr.push(child);
  159. }
  160. }
  161. }
  162. }
  163. obj.children = childArr;
  164. arr.push(obj);
  165. }
  166. }
  167. }
  168. this.$store.commit("user/update", {
  169. menuList: arr,
  170. });
  171. this.menuList = arr;
  172. },
  173. getShopList() {
  174. uni.showLoading({
  175. title: "加载中...",
  176. });
  177. this.api.get("/Store/GetShopList").then((res) => {
  178. if (res.data.length === 0) {
  179. this.shopErr = true;
  180. }
  181. this.shopList = res.data;
  182. uni.hideLoading();
  183. uni.stopPullDownRefresh();
  184. if (!this.curShop.id) {
  185. this.curShop = res.data[0];
  186. let user = { ...this.$store.state.user.user };
  187. user.storeId = this.curShop.id;
  188. user.storeName = this.curShop.name;
  189. this.$store.commit("user/update", {
  190. user,
  191. });
  192. }
  193. });
  194. },
  195. goShopSelect() {
  196. this.router.push({
  197. path: "/pages/index/select",
  198. query: {
  199. entry: "manage",
  200. },
  201. });
  202. },
  203. layout() {
  204. this.$store.commit("user/logout", null);
  205. this.router.replace({
  206. path: "/pages/index/login",
  207. });
  208. },
  209. },
  210. // 数据计算
  211. computed: {
  212. user() {
  213. return this.$store.state.user.user;
  214. },
  215. isAdmin() {
  216. //店铺管理员 系统管理员
  217. if (
  218. this.user.roleId === "50c41c5d-b54c-43ed-b587-10dcb60e72e5" ||
  219. this.user.roleId === "75b71b24-25de-40ac-a866-c8f5555b8b92"
  220. ) {
  221. return true;
  222. } else {
  223. return false;
  224. }
  225. },
  226. },
  227. // 数据监听
  228. watch: {},
  229. };
  230. </script>
  231. <style lang="scss" scoped>
  232. .page {
  233. &__top {
  234. display: flex;
  235. align-items: center;
  236. justify-content: space-between;
  237. height: px(145);
  238. padding: 0 px(50);
  239. background-color: #fff;
  240. border-bottom: 1px solid #f1f1f1;
  241. }
  242. .name {
  243. font-size: px(36);
  244. color: #999;
  245. flex-shrink: 0;
  246. margin-right: px(20);
  247. }
  248. }
  249. .shop {
  250. display: flex;
  251. color: #666;
  252. font-size: px(36);
  253. flex-shrink: 0;
  254. margin-right: px(30);
  255. width: 100%;
  256. &__logo {
  257. margin-right: px(20);
  258. width: px(80);
  259. height: px(80);
  260. border-radius: 50%;
  261. box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
  262. overflow: hidden;
  263. /deep/ img {
  264. width: px(80);
  265. height: px(80);
  266. }
  267. }
  268. &__name {
  269. display: flex;
  270. white-space: nowrap;
  271. align-items: center;
  272. }
  273. &__arrow {
  274. margin-left: px(10);
  275. transform: rotate(90deg);
  276. }
  277. }
  278. .menu {
  279. display: flex;
  280. flex-wrap: wrap;
  281. border-top: 1px solid #f1f1f1;
  282. .item {
  283. width: 33.333333%;
  284. height: px(330);
  285. flex-shrink: 0;
  286. display: flex;
  287. flex-direction: column;
  288. justify-content: center;
  289. align-items: center;
  290. font-size: px(44);
  291. background-color: #fff;
  292. border-bottom: 1px solid #f1f1f1;
  293. /deep/ img {
  294. width: px(90);
  295. height: px(90);
  296. margin-bottom: px(30);
  297. }
  298. &:nth-child(3n-1),
  299. &:nth-child(3n) {
  300. border-left: 1px solid #f1f1f1;
  301. }
  302. }
  303. }
  304. .ver {
  305. margin-top: px(30);
  306. font-size: px(30);
  307. text-align: center;
  308. color: #aaa;
  309. }
  310. .btn {
  311. position: fixed;
  312. bottom: px(50);
  313. left: px(30);
  314. right: px(30);
  315. z-index: 10;
  316. color: #fff;
  317. background-color: #e92e25;
  318. font-size: px(44);
  319. }
  320. .tips {
  321. background-color: #fef9f3;
  322. font-size: px(40);
  323. padding: 0 px(40);
  324. height: px(100);
  325. line-height: px(100);
  326. color: #ec883d;
  327. }
  328. </style>