diff --git a/pages/add-record/index.vue b/pages/add-record/index.vue index e5d0f9b..d96a409 100644 --- a/pages/add-record/index.vue +++ b/pages/add-record/index.vue @@ -79,6 +79,7 @@ export default { address: '', content: '', customerEnterpriseId: this.$store.state.supplierInfo.id || null, + mallSupplierId: this.$store.state.supplierInfo.supplierId || null, remark: '', respondent: '' } diff --git a/pages/follow-up-records/index.vue b/pages/follow-up-records/index.vue index 3c4de64..cde4003 100644 --- a/pages/follow-up-records/index.vue +++ b/pages/follow-up-records/index.vue @@ -78,7 +78,7 @@ export default { params: { asc: '', desc: '', - customerEnterpriseId: null, + customerEnterpriseId: this.$store.state.supplierInfo.id || null, mallSupplierId: this.$store.state.supplierInfo.supplierId || null // enterpriseIds : ['651107734133018624'], // mallSupplierId : '670334117090562048', @@ -103,9 +103,9 @@ export default { this.downCallback() }, onLoad(option) { - if (option.customerEnterpriseId) { - this.params.customerEnterpriseId = option.customerEnterpriseId - } + // if (option.customerEnterpriseId) { + // this.params.customerEnterpriseId = option.customerEnterpriseId + // } }, methods: { back,