From 75ca0722b86e7751202e7aec2e8d8ef96d68ce98 Mon Sep 17 00:00:00 2001
From: liuyg <376836862@qq.com>
Date: Wed, 22 Dec 2021 16:22:40 +0800
Subject: [PATCH] Merge branch 'master' of http://192.168.0.105:10010/r/school-web

---
 src/components/serviceNavBar/index.vue |   32 ++++++++++++++++++++++++++++----
 1 files changed, 28 insertions(+), 4 deletions(-)

diff --git a/src/components/serviceNavBar/index.vue b/src/components/serviceNavBar/index.vue
index e5cdee1..99f650f 100644
--- a/src/components/serviceNavBar/index.vue
+++ b/src/components/serviceNavBar/index.vue
@@ -46,8 +46,11 @@
 <script>
 import { mapGetters } from 'vuex'
 import {
-    getList, getCanteenList, getSupermarketList, getMedicalList,
-    getExpressList, getShowersList, getCopyList, getBankList, getAedList, getServiceList, getParkList
+    getList, getCanteenList, getSupermarketList,
+    getMedicalList, getExpressList, getShowersList,
+    getTransferList, getCopyList, getBankList,
+    getAedList, getServiceList, getParkList,
+    getAlleywayList
 } from '@/api/pc/service/index'
 
 export default {
@@ -214,6 +217,16 @@
                         })
                     })
                 })
+            } else if (this.arcCode == 6) {
+                getTransferList({ campus: campus }).then(res => {
+                    res.data.data.records.forEach(item => {
+                        this.itemNavList.push({
+                            navTitle: item.mechanismname,
+                            icon: '/img/navicon/tag.png',
+                            details: item
+                        })
+                    })
+                })
             } else if (this.arcCode == 7) {
                 getCopyList({ campus: campus }).then(res => {
                     res.data.data.records.forEach(item => {
@@ -256,6 +269,16 @@
                 })
             } else if (this.arcCode == 11) {
                 getParkList({ campus: campus }).then(res => {
+                    res.data.data.records.forEach(item => {
+                        this.itemNavList.push({
+                            navTitle: item.mechanismname,
+                            icon: '/img/navicon/tag.png',
+                            details: item
+                        })
+                    })
+                })
+            } else if (this.arcCode == 12) {
+                getAlleywayList({ campus: campus }).then(res => {
                     res.data.data.records.forEach(item => {
                         this.itemNavList.push({
                             navTitle: item.mechanismname,
@@ -313,8 +336,8 @@
     width: 322px;
     height: auto;
     border-radius: 8px;
-    top: 24%;
-    left: 20%;
+    top: 16%;
+    left: 5%;
     background-color: transparent;
     z-index: 999;
     font-size: 14px;
@@ -360,6 +383,7 @@
                 margin: auto;
                 width: 14px;
                 height: 14px;
+                cursor: pointer;
             }
         }
         .move {

--
Gitblit v1.9.3