apifm-webapi 3.67.0 → 3.68.1
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 +108 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -266,6 +266,12 @@ module.exports = {
|
|
|
266
266
|
alipayQrcode2: (data) => {
|
|
267
267
|
return request('/pay/alipay/gate/paymentCode', true, 'post', data)
|
|
268
268
|
},
|
|
269
|
+
alipayH5: (data) => {
|
|
270
|
+
return request('/pay/alipay/gate/h5', true, 'post', data)
|
|
271
|
+
},
|
|
272
|
+
alipayPC: (data) => {
|
|
273
|
+
return request('/pay/alipay/gate/pc', true, 'post', data)
|
|
274
|
+
},
|
|
269
275
|
kasipayH5: (data) => {
|
|
270
276
|
return request('/pay/kasipay/h5', true, 'post', data)
|
|
271
277
|
},
|
|
@@ -632,6 +638,12 @@ module.exports = {
|
|
|
632
638
|
orderReputationList: (data) => {
|
|
633
639
|
return request('/order/listReputation', true, 'post', data)
|
|
634
640
|
},
|
|
641
|
+
orderReputationDelete: (data) => {
|
|
642
|
+
return request('/order/reputation/delete', true, 'post', data)
|
|
643
|
+
},
|
|
644
|
+
orderReputationModify: (data) => {
|
|
645
|
+
return request('/order/reputation/modify', true, 'post', data)
|
|
646
|
+
},
|
|
635
647
|
orderClose: (token, orderId) => {
|
|
636
648
|
return request('/order/close', true, 'post', {
|
|
637
649
|
orderId,
|
|
@@ -650,6 +662,9 @@ module.exports = {
|
|
|
650
662
|
token
|
|
651
663
|
})
|
|
652
664
|
},
|
|
665
|
+
orderPayV2: data => {
|
|
666
|
+
return request('/order/pay', true, 'post', data)
|
|
667
|
+
},
|
|
653
668
|
orderHX: (hxNumber) => {
|
|
654
669
|
return request('/order/hx', true, 'post', {
|
|
655
670
|
hxNumber
|
|
@@ -957,6 +972,9 @@ module.exports = {
|
|
|
957
972
|
shopReputationList: (data) => {
|
|
958
973
|
return request('/shop/subshop/listReputation', true, 'post', data)
|
|
959
974
|
},
|
|
975
|
+
shopPicList: (data) => {
|
|
976
|
+
return request('/shop/subshop/shopPics', true, 'post', data)
|
|
977
|
+
},
|
|
960
978
|
shopFavPut: (token, shopId) => {
|
|
961
979
|
return request('/shop/fav/add', true, 'post', { token, shopId })
|
|
962
980
|
},
|
|
@@ -1165,6 +1183,9 @@ module.exports = {
|
|
|
1165
1183
|
scoreDeductionRules: () => {
|
|
1166
1184
|
return request('/score/deduction/rules', true, 'get', {})
|
|
1167
1185
|
},
|
|
1186
|
+
scoreDailyFixedNum: token => {
|
|
1187
|
+
return request('/score/dailyFixedNum', true, 'post', { token })
|
|
1188
|
+
},
|
|
1168
1189
|
voteItems: (data) => {
|
|
1169
1190
|
return request('/vote/items', true, 'post', data)
|
|
1170
1191
|
},
|
|
@@ -1940,6 +1961,33 @@ module.exports = {
|
|
|
1940
1961
|
organizeMembers: data => {
|
|
1941
1962
|
return request('/organizeInfo/members', true, 'post', data)
|
|
1942
1963
|
},
|
|
1964
|
+
organizeNoticeList: data => {
|
|
1965
|
+
return request('/organizeNotice/list', true, 'post', data)
|
|
1966
|
+
},
|
|
1967
|
+
organizeNoticeDetail: data => {
|
|
1968
|
+
return request('/organizeNotice/detail', true, 'get', data)
|
|
1969
|
+
},
|
|
1970
|
+
organizeNoticeSave: data => {
|
|
1971
|
+
return request('/organizeNotice/save', true, 'post', data)
|
|
1972
|
+
},
|
|
1973
|
+
organizeNoticeDelete: data => {
|
|
1974
|
+
return request('/organizeNotice/del', true, 'post', data)
|
|
1975
|
+
},
|
|
1976
|
+
organizePanUpload: data => {
|
|
1977
|
+
return request('/organizePan/upload', true, 'post', data)
|
|
1978
|
+
},
|
|
1979
|
+
organizePanDownload: data => {
|
|
1980
|
+
return request('/organizePan/download', true, 'get', data)
|
|
1981
|
+
},
|
|
1982
|
+
organizePanFiles: data => {
|
|
1983
|
+
return request('/organizePan/files', true, 'post', data)
|
|
1984
|
+
},
|
|
1985
|
+
organizePanModify: data => {
|
|
1986
|
+
return request('/organizePan/modify', true, 'post', data)
|
|
1987
|
+
},
|
|
1988
|
+
organizePanDelete: data => {
|
|
1989
|
+
return request('/organizePan/del', true, 'post', data)
|
|
1990
|
+
},
|
|
1943
1991
|
newsExtFieldList: (token, organizeId, newsId) => {
|
|
1944
1992
|
return request('/newsExtField/extFields', true, 'get', { token, organizeId, newsId })
|
|
1945
1993
|
},
|
|
@@ -2051,4 +2099,64 @@ module.exports = {
|
|
|
2051
2099
|
listingJoinList: data => {
|
|
2052
2100
|
return request('/listingInfo/joinList', true, 'post', data)
|
|
2053
2101
|
},
|
|
2102
|
+
attendantAcceptOrder: data => {
|
|
2103
|
+
return request('/order/acceptOrder', true, 'post', data)
|
|
2104
|
+
},
|
|
2105
|
+
orderCancelOrderPeriod: data => {
|
|
2106
|
+
return request('/order/cancelOrderPeriod', true, 'post', data)
|
|
2107
|
+
},
|
|
2108
|
+
orderStartOrderPeriod: data => {
|
|
2109
|
+
return request('/order/startOrderPeriod', true, 'post', data)
|
|
2110
|
+
},
|
|
2111
|
+
userAttendantOrderRejectOrder: (token, orderId) => {
|
|
2112
|
+
return request('/order/rejectOrder', true, 'post', { token, orderId })
|
|
2113
|
+
},
|
|
2114
|
+
userAttendantOrderServing: (token, orderId) => {
|
|
2115
|
+
return request('/order/serving', true, 'post', { token, orderId })
|
|
2116
|
+
},
|
|
2117
|
+
shansongCourierInfo: data => {
|
|
2118
|
+
return request('/order/shansongCourierInfo', true, 'get', data)
|
|
2119
|
+
},
|
|
2120
|
+
shansongOrderInfo: data => {
|
|
2121
|
+
return request('/order/shansongOrderInfo', true, 'get', data)
|
|
2122
|
+
},
|
|
2123
|
+
userAttendantOrderStatistics: data => {
|
|
2124
|
+
return request('/order/statisticsJishi', true, 'get', data)
|
|
2125
|
+
},
|
|
2126
|
+
keloopOrderLogs: data => {
|
|
2127
|
+
return request('/order/keloop/orderLogs', true, 'get', data)
|
|
2128
|
+
},
|
|
2129
|
+
keloopCourierTag: data => {
|
|
2130
|
+
return request('/order/keloop/courierTag', true, 'get', data)
|
|
2131
|
+
},
|
|
2132
|
+
workingHoursMySubmitLogs: data => {
|
|
2133
|
+
return request('/workingHours/mySubmitLogs', true, 'post', data)
|
|
2134
|
+
},
|
|
2135
|
+
workingHoursSubmit: data => {
|
|
2136
|
+
return request('/workingHours/submit', true, 'post', data)
|
|
2137
|
+
},
|
|
2138
|
+
workingHoursBossReport: data => {
|
|
2139
|
+
return request('/workingHours/bossReport', true, 'post', data)
|
|
2140
|
+
},
|
|
2141
|
+
workingHoursMyProject: data => {
|
|
2142
|
+
return request('/workingHours/myProject', true, 'post', data)
|
|
2143
|
+
},
|
|
2144
|
+
workingHoursProjectInfo: code => {
|
|
2145
|
+
return request('/workingHours/project', true, 'get', { code })
|
|
2146
|
+
},
|
|
2147
|
+
bestpayProCreateOrder: data => {
|
|
2148
|
+
return request('/pay/bestpay/proCreateOrder', true, 'post', data)
|
|
2149
|
+
},
|
|
2150
|
+
bestpayH5: data => {
|
|
2151
|
+
return request('/pay/bestpay/h5', true, 'get', data)
|
|
2152
|
+
},
|
|
2153
|
+
shopIotDevices: data => {
|
|
2154
|
+
return request('/shopIot/devices', true, 'get', data)
|
|
2155
|
+
},
|
|
2156
|
+
shopIotCmds: data => {
|
|
2157
|
+
return request('/shopIot/cmds', true, 'get', data)
|
|
2158
|
+
},
|
|
2159
|
+
shopIotExecute: data => {
|
|
2160
|
+
return request('/shopIot/execute', true, 'post', data)
|
|
2161
|
+
},
|
|
2054
2162
|
}
|