apifm-webapi 26.6.9 → 26.6.13

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.
Files changed (2) hide show
  1. package/index.js +14 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -1837,10 +1837,10 @@ module.exports = {
1837
1837
  return request('/shop/goods/times/items', true, 'post', { day, goodsId, propertyChildIds })
1838
1838
  },
1839
1839
  goodsBrandList: data => {
1840
- return request('/shop/goods/brand/list', true, 'post', data)
1840
+ return request(COMMON_BASE_URL + subDomain + '/shop/goods/brand/list', false, 'post', data)
1841
1841
  },
1842
1842
  goodsBrandDetail: id => {
1843
- return request('/shop/goods/brand/detail', true, 'get', { id })
1843
+ return request(COMMON_BASE_URL + subDomain + '/shop/goods/brand/detail', false, 'get', { id })
1844
1844
  },
1845
1845
  wxappServiceLogin: data => {
1846
1846
  return request('/user/wxappService/login', true, 'post', data)
@@ -3089,4 +3089,16 @@ module.exports = {
3089
3089
  gameNumberBombLogs: (data) => {
3090
3090
  return request(COMMON_BASE_URL + subDomain + '/gameNumberBomb/logs', false, 'post', data)
3091
3091
  },
3092
+ goodsBrandFavList: data => {
3093
+ return request(COMMON_BASE_URL + subDomain + '/shop/goods/brand/fav/list', false, 'post', data)
3094
+ },
3095
+ goodsBrandFavAdd: data => {
3096
+ return request(COMMON_BASE_URL + subDomain + '/shop/goods/brand/fav/add', false, 'post', data)
3097
+ },
3098
+ goodsBrandFavCheck: data => {
3099
+ return request(COMMON_BASE_URL + subDomain + '/shop/goods/brand/fav/check', false, 'get', data)
3100
+ },
3101
+ goodsBrandFavDelete: data => {
3102
+ return request(COMMON_BASE_URL + subDomain + '/shop/goods/brand/fav/delete', false, 'post', data)
3103
+ },
3092
3104
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apifm-webapi",
3
- "version": "26.6.9",
3
+ "version": "26.6.13",
4
4
  "description": "接口升级",
5
5
  "main": "index.js",
6
6
  "scripts": {