Commit c69b8ab8 by 李嘉林

指定商品换es接口

parent 9140404b
......@@ -12,7 +12,6 @@
"pages/tabBar3/main",
"pages/tabBar4/main",
"pages/wxArticle/main",
"pages/userInfo/main",
"pages/memberCode/main",
"pages/toMini/main",
"pages/order/main"
......
import Vue from 'vue'
import App from './index'
const app = new Vue(App)
app.$mount()
{
"usingComponents": {
"van-popup": "/static/vant/popup/index",
"van-picker": "/static/vant/picker/index",
"van-field": "/static/vant/field/index",
"van-datetime-picker": "/static/vant/datetime-picker/index",
"van-cell": "/static/vant/cell/index",
"van-icon": "/static/vant/icon/index"
},
"backgroundColor": "#f5f5f5"
}
\ No newline at end of file
......@@ -430,10 +430,12 @@ const componentOptions = {
whetherShowGoodsDefaultTagFlag: marketingTag ? 1 : 0, //是否展示营销标签 1是 0否
whetherFindMultiShopFlag: 1, //是否查询多商户 //商城使用
whetherQueryGoodsAttributeFlag: attributeValueList.length>0?1:0,
sortColumn: 0,
};
goodsApi.queryMoreProductInfo(moreQuery).then(res => {
goodsApi.selectProductInfoOnEs(moreQuery).then(res => {
this.setData({ loading: false, queryProductInfoLoading: false });
if (res.data.code == 200) {
goodsList = res.data.data;
goodsList = res.data.data.list;
let pageGoodsList = this.data.pageGoodsList[this.data.goodsListIndex] || [];
this.goodsListVal(goodsList, 1,flag);
} else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment