Authored by 毕凯

Merge branch 'hotfix/unionData' into 'release/5.4.1'

下单 union data参数



See merge request !306
... ... @@ -223,7 +223,7 @@ exports.orderSub = (req, res, next) => {
unionKey = testQyhUnion.client_id ? encryData : '';
}
} else {
unionKey = '{"client_id":' + req.cookies.mkt_code + '}';
unionKey = '{"client_id":' + req.cookies.mkt_code + (req.cookies.union_data ? ',"union_data":' + req.cookies.union_data : '') + '}';
}
/* 检查联盟参数是否有效 */
... ...