Logo white

webapp / GreenwayWeb

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • GreenwayWeb
  • merchant-web-master - 副本
  • src
  • api
  • public.js
  • '最新'
    b7023175
    杨鑫 authored
    2025-01-03 18:47:37 +0800  
    Browse Code »
public.js 340 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
import request from '@/utils/request'

// 查询商家优惠券
export function getCoupons(params) {
  return request({
    url: '/canvas/getShopCoupons',
    method: 'get',
    params
  })
}
// 查询商家商品
export function getProducts(params) {
  return request({
    url: '/canvas/getProducts',
    method: 'get',
    params
  })
}