Authored by 李奇

fixed:新品到着参数

... ... @@ -8,6 +8,7 @@
</div>
</template>
<script>
import _ from 'lodash';
import $ from 'jquery';
import yoho from 'yoho';
import Vue from 'vue';
... ... @@ -102,6 +103,13 @@
if (res.code === 200) {
this.page = res.data.page;
this.totalPage = res.data.page_total;
// yas report param injection
_.each(res.data.product_list, item => {
item.from_page_name = this.pageName;
item.from_page_param = this.query;
});
this.productList = this.productList.concat(res.data.product_list);
if (!this.filterConfig) {
... ...