1、提货点
2、客服(腾讯云智服)
3、接口权限控制
4、复制第三方商品可配置
4、优化附件上传配置
5、手机端核销订单
6、手机端订单统计、订单管理
7、短信优化
8、订阅消息全自动化
This commit is contained in:
张乐
2020-09-15 16:13:25 +08:00
parent aee9c1d692
commit db2c3b44a6
245 changed files with 19900 additions and 994 deletions

View File

@@ -168,10 +168,11 @@ export function orderRefundVerify(data) {
* 订单确认获取订单详细信息
* @param string cartId
*/
export function orderConfirm(cartId, isNew) {
export function orderConfirm(cartId, isNew, addAgain) {
return request.post('order/confirm', {
cartIds: cartId,
isNew: isNew
isNew: isNew,
addAgain: addAgain
}, {}, 1);
}
@@ -203,3 +204,11 @@ export function orderCreate(key, data) {
export function postOrderComputed(key, data) {
return request.post("order/computed/" + key, data);
}
/**
* 将字符串 转base64
* @param object data
*/
export function qrcodeApi(data) {
return request.post('qrcode/str2base64', data, {}, 1);
}