apifm-webapi 26.3.7 → 26.3.12
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 +4 -4
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -1266,16 +1266,16 @@ module.exports = {
|
|
|
1266
1266
|
return request('/userAttendantFav/delete', true, 'post', { token, attendantId })
|
|
1267
1267
|
},
|
|
1268
1268
|
addComment: (data) => {
|
|
1269
|
-
return request('/comment/add',
|
|
1269
|
+
return request(COMMON_BASE_URL + subDomain + '/comment/add', false, 'post', data)
|
|
1270
1270
|
},
|
|
1271
1271
|
commentList: (data) => {
|
|
1272
1272
|
return request('/comment/list', true, 'post', data)
|
|
1273
1273
|
},
|
|
1274
1274
|
commentListV2: (data) => {
|
|
1275
|
-
return request('/comment/list/v2',
|
|
1275
|
+
return request(COMMON_BASE_URL + subDomain + '/comment/list/v2', false, 'post', data)
|
|
1276
1276
|
},
|
|
1277
1277
|
delComment: (data) => {
|
|
1278
|
-
return request('/comment/del',
|
|
1278
|
+
return request(COMMON_BASE_URL + subDomain + '/comment/del', false, 'post', data)
|
|
1279
1279
|
},
|
|
1280
1280
|
modifyUserInfo: (data) => {
|
|
1281
1281
|
return request('/user/modify', true, 'post', data)
|
|
@@ -1453,7 +1453,7 @@ module.exports = {
|
|
|
1453
1453
|
return request('/user/idcard/manualReview/info', true, 'get', { token })
|
|
1454
1454
|
},
|
|
1455
1455
|
userTagList: (data) => {
|
|
1456
|
-
return request('/userTag/list',
|
|
1456
|
+
return request(COMMON_BASE_URL + subDomain + '/userTag/list', false, 'post', data)
|
|
1457
1457
|
},
|
|
1458
1458
|
userTagCertificateQuery: (token) => {
|
|
1459
1459
|
return request('/userTag/certificate/query', true, 'get', { token })
|