App.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. <template>
  2. <div id="app">
  3. <el-menu
  4. :default-active="$route.name"
  5. background-color="#545c64"
  6. text-color="#fff"
  7. mode="horizontal"
  8. class="el-menu-demo nav"
  9. active-text-color="#ffd04b"
  10. @select="menuSelect"
  11. >
  12. <template v-for="(item, index) in getterPermission.routes">
  13. <!-- 把:id给截掉 -->
  14. <!-- :index="item.path.split(':')[0]" -->
  15. <el-menu-item
  16. :index="item.name"
  17. v-if="!item.hasOwnProperty('children')"
  18. :key="index"
  19. >{{item.alias}}</el-menu-item>
  20. <el-submenu :index="$route.path" v-else :key="index">
  21. <template slot="title">{{item.alias}}</template>
  22. <!-- :index="item.path+'/'+child.path.split(':')[0]" -->
  23. <el-menu-item
  24. v-for="(child,index_child) in item.children"
  25. :key="index_child"
  26. :index="child.name"
  27. >{{child.alias}}</el-menu-item>
  28. </el-submenu>
  29. </template>
  30. </el-menu>
  31. <router-view />
  32. <hr />
  33. <div class="buttons">
  34. <!-- :disabled="!isLogin" -->
  35. <el-button type="primary" @click="dialogVisible=true" :disabled="!isLogin">登陆</el-button>
  36. <el-button type="primary" @click="logout">登出</el-button>
  37. </div>
  38. <el-dialog :visible.sync="dialogVisible" title="登陆" class="dialog">
  39. <el-row :gutter="20">
  40. <el-col :span="4">账号:</el-col>
  41. <el-col :span="20">
  42. <el-input v-model="user.username"></el-input>
  43. </el-col>
  44. <el-col :span="4">密码:</el-col>
  45. <el-col :span="20">
  46. <el-input type="password" v-model="user.password"></el-input>
  47. </el-col>
  48. </el-row>
  49. <el-row :gutter="20">
  50. <el-button class="button" type="primary" @click="login">登陆</el-button>
  51. </el-row>
  52. </el-dialog>
  53. </div>
  54. </template>
  55. <script>
  56. import router from "./router";
  57. import { login, logout } from "@/Api/user";
  58. import { mapActions, mapGetters } from "vuex";
  59. export default {
  60. data() {
  61. return {
  62. // routers: this.$router.options.routes,
  63. routers: this.getterPermission ? this.getterPermission.routes : [],
  64. dialogVisible: false,
  65. user: {
  66. username: "",
  67. password: ""
  68. }
  69. };
  70. },
  71. computed: {
  72. isLogin() {
  73. console.log("csrftoken", this.$Cookie.get("csrftoken"));
  74. return this.$Cookie.get("csrftoken") === undefined;
  75. },
  76. ...mapGetters(["getterPermission"])
  77. },
  78. created() {
  79. //加载异步路由
  80. let asyncRouters = [
  81. {
  82. path: "/asyncFood",
  83. name: "asyncFood",
  84. alias: "异步菜场",
  85. component: () => import("@/views/food/food.vue")
  86. }
  87. ];
  88. this.asyncAddRouters(asyncRouters);
  89. },
  90. methods: {
  91. login() {
  92. console.log("login");
  93. console.log(document.cookie);
  94. login(this.user)
  95. .then(res => {
  96. console.log(res);
  97. this.$nextTick(() => {
  98. if (document.cookie !== "") {
  99. console.log("刷新界面");
  100. location.reload();
  101. this.dialogVisible = false;
  102. this.isLogin = true;
  103. } else {
  104. this.isLogin = false;
  105. }
  106. });
  107. })
  108. .catch(e => {
  109. this.$message({
  110. type: "error",
  111. message: e
  112. });
  113. console.log(e);
  114. });
  115. },
  116. logout() {
  117. logout().then(res => {
  118. this.$Cookie.remove("csrftoken");
  119. console.log(document.cookie);
  120. console.log(res);
  121. });
  122. this.$Cookie.remove("csrftoken");
  123. console.log("登出");
  124. },
  125. //选择菜单
  126. menuSelect(index, indexPath) {
  127. // console.log(indexPath);
  128. let pathName = indexPath[indexPath.length - 1];
  129. // console.log(this.$route.name, pathName);
  130. if (this.$route.name !== pathName) {
  131. this.$router.push({
  132. name: indexPath[indexPath.length - 1]
  133. });
  134. }
  135. },
  136. ...mapActions(["asyncAddRouters"])
  137. }
  138. };
  139. </script>
  140. <style lang="less">
  141. body,
  142. #app {
  143. // font-family: Avenir, Helvetica, Arial, sans-serif;
  144. // -webkit-font-smoothing: antialiased;
  145. // -moz-osx-font-smoothing: grayscale;
  146. // text-align: center;
  147. // color: #2c3e50;
  148. // margin-top: 60px;
  149. padding: 0px;
  150. margin: 0px;
  151. }
  152. .buttons {
  153. display: flex;
  154. flex-direction: column;
  155. justify-content: center;
  156. position: fixed;
  157. right: 5%;
  158. // top: 3%;
  159. bottom: 5%;
  160. .el-button {
  161. margin-bottom: 5px;
  162. margin-left: 0px !important;
  163. width: 100px;
  164. }
  165. }
  166. .dialog {
  167. .el-row {
  168. margin-bottom: 5px;
  169. }
  170. .el-col {
  171. text-align: right;
  172. line-height: 40px;
  173. }
  174. .el-button {
  175. float: right;
  176. }
  177. }
  178. </style>