Browse Source

客户管理

panhui 5 years ago
parent
commit
c10ac0f0c7

+ 2 - 1
src/main/vue/src/views/PartnerList.vue

@@ -140,7 +140,8 @@ export default {
             this.$router.push({
                 path: '/partnerEdit',
                 query: {
-                    id: row.id
+                    id: row.id,
+                    type: 'CLIENT'
                 }
             });
         },

+ 2 - 1
src/main/vue/src/views/PartnerListSupplier.vue

@@ -132,7 +132,8 @@ export default {
             this.$router.push({
                 path: '/partnerEdit',
                 query: {
-                    ...this.$route.query
+                    ...this.$route.query,
+                    type: 'SUPPLIER'
                 }
             });
         },