selectionCenter.js 227 B

1234567891011
  1. import request from '@/utils/request'
  2. // 查询选品中心的数据
  3. export function getSelectionData(data) {
  4. return request({
  5. url: '/platformProduct/getClaasifyProducts',
  6. method: 'post',
  7. data
  8. })
  9. }