绿满眶商城微信小程序-uniapp
peng
1 天以前 89efee9a2e20fc04b4537d859917b47cf68a814c
api/store.js
@@ -67,5 +67,37 @@
  });
}
/**
 * 获取物流模板
 *
 */
 export function getFreightTemplate() {
  return http.request({
    url: `/store/store/freightTemplate`,
    method: Method.GET
  });
}
/**
 * 获取计量单位
 *
 */
 export function getGoodsUnit(param) {
  return http.request({
    url: `/store/store/goods/unit`,
    method: Method.GET,
   param: param
  });
}
/**
 * 发布商品
 *
 */
 export function createGoods(data) {
  return http.request({
    url: `/store/store/goods/create`,
    method: Method.POST,
   data: data
  });
}