修改字典获取方式,type--》dictType
diff --git a/leave-school-vue/src/views/procedures/node/index.vue b/leave-school-vue/src/views/procedures/node/index.vue
index ba3cc1c..6a0a266 100644
--- a/leave-school-vue/src/views/procedures/node/index.vue
+++ b/leave-school-vue/src/views/procedures/node/index.vue
@@ -295,17 +295,17 @@
       })
     },
     getAuditTypeList() {
-      getDicList({ type: 'auditType' }).then(response => {
+      getDicList({ dicType: 'auditType' }).then(response => {
         this.auditTypeList = response.items
       })
     },
     getScopeList() {
-      getDicList({ type: 'scope' }).then(response => {
+      getDicList({ dicType: 'scope' }).then(response => {
         this.scopeList = response.items
       })
     },
     getStatusList() {
-      getDicList({ type: 'defaultAuditStatus' }).then(response => {
+      getDicList({ dicType: 'defaultAuditStatus' }).then(response => {
         this.statusList = response.items
       })
     },