seimin 1 year ago
parent
commit
750dc1a442
3 changed files with 3 additions and 2 deletions
  1. 1 0
      src/components/AppHeader.vue
  2. 1 1
      src/components/DeliveryRate.vue
  3. 1 1
      src/main.js

+ 1 - 0
src/components/AppHeader.vue

@@ -109,6 +109,7 @@ export default {
109 109
       .app-header__logo{
110 110
         max-height: .6125rem;
111 111
         max-width: .6125rem;
112
+        margin-right: 0.1rem;
112 113
       }
113 114
     }
114 115
     .app-header__main--left {

+ 1 - 1
src/components/DeliveryRate.vue

@@ -53,7 +53,7 @@ export default {
53 53
         `/largeScreen/getData/getDictionary/${this.hospitalId}`,
54 54
         { key: 'association_types' }
55 55
       )
56
-      this.dictionary = result.dictionary
56
+      this.dictionary = result.dictionary.filter(v => v[0] === 255 || v[0] === 256 || v[0] === 257 || v[0] === 258 || v[0] === 259 || v[0] === 260)
57 57
       this.$emit('dictionaryHandle', JSON.stringify(this.dictionary))
58 58
       this.dictionary.forEach(item => {
59 59
         this.getData(item[0])

+ 1 - 1
src/main.js

@@ -14,7 +14,7 @@ Vue.use(fullScreenContainer)
14 14
 Vue.prototype.$moment = moment
15 15
 
16 16
 Vue.config.productionTip = false
17
-console.info('v2.4.4')
17
+console.info('v2.4.5')
18 18
 
19 19
 new Vue({
20 20
   router,