bundling.js 222 B

123456789101112
  1. import http from "../utils/http"
  2. /**
  3. * 组合套餐列表
  4. * @param {object} params
  5. */
  6. export function bundlingList(params) {
  7. return http({
  8. url: "/bundling/api/bundling/lists",
  9. data: params
  10. })
  11. }