绿满眶商城微信小程序-uniapp
zxl
2025-07-30 4b0577ff467ea0ce268148f8d1c1bdea3ba66318
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
  });
}