From 81f54040c2cb65537c6c6e1db8358a39a57dea0d Mon Sep 17 00:00:00 2001
From: mayisheng <admin>
Date: Mon, 15 Aug 2022 16:14:01 +0800
Subject: [PATCH] 1

---
 src/pcviews/arc/edifact.vue |   60 ++++++++++++++++++++++++++++++------------------------------
 1 files changed, 30 insertions(+), 30 deletions(-)

diff --git a/src/pcviews/arc/edifact.vue b/src/pcviews/arc/edifact.vue
index bca820e..ce48781 100644
--- a/src/pcviews/arc/edifact.vue
+++ b/src/pcviews/arc/edifact.vue
@@ -1,42 +1,42 @@
 /* * @Author: Morpheus * @Name: 行政办公 * @Date: 2021-11-15 17:14:47 * @Last
 Modified by: Morpheus * @Last Modified time: 2021-12-30 14:23:28 */
 <template>
-  <div></div>
+    <div></div>
 </template>
 
 <script>
-import { mapGetters } from "vuex";
+import { mapGetters } from 'vuex'
 
 export default {
-  data() {
-    return {};
-  },
-  computed: {
-    ...mapGetters([
-      // 校区内导航的显示关闭
-      "orgNavBarFlag",
-      "arcNavBarFlag",
-    ]),
-  },
-  mounted() {
-    if (this.orgNavBarFlag == true) {
-      this.$store.commit("SET_ORGNAVBARTITLE", "");
-      this.$store.commit("SET_ORGNAVBARLIST", []);
-      this.$store.commit("SET_ORGNAVBARFLAG", false);
+    data () {
+        return {}
+    },
+    computed: {
+        ...mapGetters([
+            // 校区内导航的显示关闭
+            'orgNavBarFlag',
+            'arcNavBarFlag'
+        ])
+    },
+    mounted () {
+        if (this.orgNavBarFlag == true) {
+            this.$store.commit('SET_ORGNAVBARTITLE', '')
+            this.$store.commit('SET_ORGNAVBARLIST', [])
+            this.$store.commit('SET_ORGNAVBARFLAG', false)
+        }
+        this.$store.commit('SET_ARCNAVBARTITLE', '行政办公')
+        this.$store.commit('SET_ARCNAVBARCODE', 1)
+        this.$store.commit('SET_ARCNAVBARFLAG', true)
+    },
+    methods: {},
+    beforeDestroy () {
+        if (this.arcNavBarFlag == true) {
+            this.$store.commit('SET_ARCNAVBARTITLE', '')
+            this.$store.commit('SET_ARCNAVBARCODE', '')
+            this.$store.commit('SET_ARCNAVBARFLAG', false)
+        }
     }
-    this.$store.commit("SET_ARCNAVBARTITLE", "行政办公");
-    this.$store.commit("SET_ARCNAVBARCODE", 1);
-    this.$store.commit("SET_ARCNAVBARFLAG", true);
-  },
-  methods: {},
-  beforeDestroy() {
-    if (this.arcNavBarFlag == true) {
-      this.$store.commit("SET_ARCNAVBARTITLE", "");
-      this.$store.commit("SET_ARCNAVBARCODE", "");
-      this.$store.commit("SET_ARCNAVBARFLAG", false);
-    }
-  },
-};
+}
 </script>
 
 <style></style>

--
Gitblit v1.9.3