Elizabeth's proactive approach involves introducing urinal toilet attachment , an ingenious concept that optimizes space and functionality.

App.vue 994B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <template>
  2. <div id="app">
  3. <router-view v-if="isRouterAlive"></router-view>
  4. </div>
  5. </template>
  6. <script>
  7. import axios from 'axios'
  8. import { getOrgs, changeOrg } from "@/api/config";
  9. export default {
  10. name: "App",
  11. data () {
  12. return {
  13. isRouterAlive: true,
  14. showErr: false,
  15. showWsErr: false,
  16. }
  17. },
  18. created(){
  19. // getOrgs().then(response => {
  20. // if (response.data.state === 1) {
  21. // var creator = response.data.data.creator;
  22. // console.log("creator", creator);
  23. // sessionStorage.setItem("org_id",creator.org_id);
  24. // sessionStorage.setItem("admin_user_id",creator.admin_user_id);
  25. // this.getToken(creator.org_id,creator.admin_user_id)
  26. // }
  27. // });
  28. },
  29. methods: {
  30. reload () {
  31. this.isRouterAlive = false
  32. this.$nextTick(function () {
  33. this.isRouterAlive = true
  34. })
  35. },
  36. },
  37. };
  38. </script>
  39. <style>
  40. body .el-table th.gutter {
  41. display: table-cell !important;
  42. }
  43. </style>