apifm-webapi 3.60.2 → 3.60.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +8 -0
- package/package.json +2 -2
package/index.js
CHANGED
|
@@ -577,6 +577,11 @@ module.exports = {
|
|
|
577
577
|
token
|
|
578
578
|
})
|
|
579
579
|
},
|
|
580
|
+
userDetailSpreadUser: (token, uid) => {
|
|
581
|
+
return request('/user/detail/spreadUser', true, 'get', {
|
|
582
|
+
token, uid
|
|
583
|
+
})
|
|
584
|
+
},
|
|
580
585
|
userWxinfo: (token) => {
|
|
581
586
|
return request('/user/wxinfo', true, 'get', {
|
|
582
587
|
token
|
|
@@ -644,6 +649,9 @@ module.exports = {
|
|
|
644
649
|
token
|
|
645
650
|
})
|
|
646
651
|
},
|
|
652
|
+
orderStatisticsv2: data => {
|
|
653
|
+
return request('/order/statistics', true, 'get', data);
|
|
654
|
+
},
|
|
647
655
|
siteStatisticsSaleroom: (data) => {
|
|
648
656
|
return request('/site/statistics/saleroom', true, 'get', data)
|
|
649
657
|
},
|
package/package.json
CHANGED