|
@@ -161,6 +161,8 @@ func (m *MyOrder) QueryMyOrder() error {
|
|
|
} else {
|
|
|
queryM["order_status"] = map[string]interface{}{"ne": orderStatus_deleted}
|
|
|
}
|
|
|
+ //2.8.5 app暂时不显示 vip订单
|
|
|
+ queryM["product_type"] = map[string]interface{}{"ne": "VIP订阅"}
|
|
|
//总数
|
|
|
haveNextPage, res, _ := m.Datas(queryM, 1)
|
|
|
count := len(res)
|
|
@@ -222,6 +224,8 @@ func (m *MyOrder) MyOrderPaging() error {
|
|
|
} else {
|
|
|
queryM["order_status"] = map[string]interface{}{"ne": orderStatus_deleted}
|
|
|
}
|
|
|
+ //2.8.5 app暂时不显示 vip订单
|
|
|
+ queryM["product_type"] = map[string]interface{}{"ne": "VIP订阅"}
|
|
|
haveNextPage, res, _ := m.Datas(queryM, pageNum)
|
|
|
if res != nil {
|
|
|
for _, v := range res {
|