index.vue 6.7 KB

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