index.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. <template>
  2. <div class="page">
  3. <div class="page__top" v-if="user.isAdmin">
  4. <div class="name">当前门店:</div>
  5. <div class="shop" v-if="!hideShop" @click="goShopSelect">
  6. <div class="shop__name">
  7. <!-- 最多6字 -->
  8. {{ curShop.name ? curShop.name : "加载中..." }}
  9. <i class="iconfont iconyoujiantou shop__arrow"></i>
  10. </div>
  11. </div>
  12. </div>
  13. <div class="page__top" v-else>
  14. <div class="name">当前门店:</div>
  15. <div class="shop">
  16. <div class="shop__name">
  17. <!-- 最多6字 -->
  18. {{ curShop.name ? curShop.name : "加载中..." }}
  19. <!-- <i class="iconfont iconyoujiantou shop__arrow"></i> -->
  20. </div>
  21. </div>
  22. </div>
  23. <ul class="menu">
  24. <!-- <li class="item">
  25. <my-image
  26. class="img"
  27. src="/static/tabBar/icon_green_1.png"
  28. ></my-image>
  29. <span class="text">订单管理</span>
  30. </li> -->
  31. <li class="item" @click="jump('/pages/manage/add-good-form')">
  32. <my-image class="img" src="/static/icon/add.png"></my-image>
  33. <span class="text">新增商品</span>
  34. </li>
  35. <li class="item" @click="jump('/pages/manage/good-list')">
  36. <my-image class="img" src="/static/icon/edit.png"></my-image>
  37. <span class="text">编辑商品</span>
  38. </li>
  39. <li class="item" @click="jump('/pages/manage/classify')">
  40. <my-image
  41. class="img"
  42. src="/static/icon/classify.png"
  43. ></my-image>
  44. <span class="text">分类管理</span>
  45. </li>
  46. </ul>
  47. <button class="btn" @click="layout">退出登录</button>
  48. <div class="ver">0.2.4</div>
  49. </div>
  50. </template>
  51. <script>
  52. import MyImage from "../../components/image/index";
  53. export default {
  54. name: "",
  55. components: { MyImage },
  56. // 数据
  57. data() {
  58. return {
  59. curShop: {},
  60. };
  61. },
  62. onLoad() {},
  63. async onShow() {
  64. console.log(this.user);
  65. if (!this.user.isAdmin) {
  66. if (!this.user.storeId) {
  67. this.fn.showModal({
  68. content: "当前用户无门店设置,请前往后台设置",
  69. });
  70. this.getShopList();
  71. } else {
  72. this.curShop = {
  73. name: this.user.storeName,
  74. id: this.user.storeId,
  75. };
  76. }
  77. } else {
  78. this.curShop = this.manageShop;
  79. this.getShopList();
  80. }
  81. },
  82. // 函数
  83. methods: {
  84. getShopList() {
  85. uni.showLoading({
  86. title: "加载中...",
  87. });
  88. this.api.get("/Store/GetShopList").then((res) => {
  89. this.shopList = res.data;
  90. uni.hideLoading();
  91. uni.stopPullDownRefresh();
  92. if (this.curShop.id) {
  93. } else {
  94. this.curShop = res.data[0];
  95. this.$store.commit("common/update", {
  96. manageShop: this.curShop,
  97. });
  98. }
  99. });
  100. },
  101. goShopSelect() {
  102. this.router.push({
  103. path: "/pages/index/select",
  104. query: {
  105. entry: "manage",
  106. },
  107. });
  108. },
  109. layout() {
  110. this.$store.commit("user/logout", null);
  111. this.router.replace({
  112. path: "/pages/index/login",
  113. });
  114. },
  115. },
  116. // 数据计算
  117. computed: {
  118. user() {
  119. return this.$store.state.user.user;
  120. },
  121. manageShop() {
  122. return this.$store.state.common.manageShop;
  123. },
  124. },
  125. // 数据监听
  126. watch: {},
  127. };
  128. </script>
  129. <style lang="scss" scoped>
  130. .page {
  131. &__top {
  132. display: flex;
  133. align-items: center;
  134. justify-content: space-between;
  135. height: px(145);
  136. padding: 0 px(50);
  137. background-color: #fff;
  138. border-bottom: 1px solid #f1f1f1;
  139. }
  140. .name {
  141. font-size: px(36);
  142. color: #999;
  143. flex-shrink: 0;
  144. margin-right: px(20);
  145. }
  146. }
  147. .shop {
  148. display: flex;
  149. color: #666;
  150. font-size: px(36);
  151. flex-shrink: 0;
  152. margin-right: px(30);
  153. width: 100%;
  154. &__logo {
  155. margin-right: px(20);
  156. width: px(80);
  157. height: px(80);
  158. border-radius: 50%;
  159. box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
  160. overflow: hidden;
  161. /deep/ img {
  162. width: px(80);
  163. height: px(80);
  164. }
  165. }
  166. &__name {
  167. display: flex;
  168. white-space: nowrap;
  169. align-items: center;
  170. }
  171. &__arrow {
  172. margin-left: px(10);
  173. transform: rotate(90deg);
  174. }
  175. }
  176. .menu {
  177. display: flex;
  178. border-top: 1px solid #f1f1f1;
  179. .item {
  180. width: 33.333333%;
  181. height: px(330);
  182. display: flex;
  183. flex-direction: column;
  184. justify-content: center;
  185. align-items: center;
  186. font-size: px(44);
  187. background-color: #fff;
  188. border-bottom: 1px solid #f1f1f1;
  189. /deep/ img {
  190. width: px(90);
  191. height: px(90);
  192. margin-bottom: px(30);
  193. }
  194. &:nth-child(3n-1),
  195. &:nth-child(3n) {
  196. border-left: 1px solid #f1f1f1;
  197. }
  198. }
  199. }
  200. .ver {
  201. margin-top: px(30);
  202. font-size: px(30);
  203. text-align: center;
  204. color: #aaa;
  205. }
  206. .btn {
  207. position: fixed;
  208. bottom: px(50);
  209. left: px(30);
  210. right: px(30);
  211. z-index: 10;
  212. color: #fff;
  213. background-color: #e92e25;
  214. font-size: px(44);
  215. }
  216. </style>