powder-规范
-
不要使用列表接口获取数据进行修改,避免影响他人使用
- 如果确实需要,type 设置为 NO_BATCH
-
都通过 make 调用依赖接口,能够直接拿到返回值 let data = (await infos.getExpressSelect.make()).data.data;
-
严格按照
依赖关系
进行组织调用- 直接依赖最小化原则,eg:确认收货的依赖树(client)
confirmReceipt
scms/dispatch
express-number
notify(支付回调)
create
* client/addAddress
confirm
productList
对应的接口:
/api/product/list
/api/shop-order/confirm
/api/shop-order/create
/api/notify/wx
scmsapi/order/getExpressSelect
scmsapi/order/dispatch