|
@@ -7,13 +7,13 @@ Page({
|
|
|
hidePrice: wx.getStorageSync('hidePrice'),
|
|
|
CustomBar: getApp().globalData.CustomBar,
|
|
|
filtratelist: [{
|
|
|
- label: "品牌",
|
|
|
+ label: "订单类型",
|
|
|
index: null,
|
|
|
- showName: "brandname", //显示字段
|
|
|
- valueKey: "brandname", //返回Key
|
|
|
- selectKey: "brandname", //传参 代表选着字段 不传参返回整个选择对象
|
|
|
+ showName: "value", //显示字段
|
|
|
+ valueKey: "type", //返回Key
|
|
|
+ selectKey: "value", //传参 代表选着字段 不传参返回整个选择对象
|
|
|
value: "", //选中值
|
|
|
- list: []
|
|
|
+ list: [{value:"标准订单"},{value:"促销订单"},{value:"特殊订单"}]
|
|
|
}, {
|
|
|
label: "领域",
|
|
|
index: null,
|
|
@@ -39,7 +39,7 @@ Page({
|
|
|
}
|
|
|
};
|
|
|
this.getList()
|
|
|
- this.getBrand()
|
|
|
+ // this.getBrand()
|
|
|
this.getDomain()
|
|
|
},
|
|
|
/* 获取产品 */
|
|
@@ -176,7 +176,7 @@ Page({
|
|
|
handleFiltrate({
|
|
|
detail
|
|
|
}) {
|
|
|
- content.where.brandname = detail.brandname;
|
|
|
+ content.where.type = detail.type;
|
|
|
content.where.tradefield = detail.tradefield;
|
|
|
downCount = setTimeout(() => {
|
|
|
this.getList(true);
|