import { param } from '@/utils' import request from '@/utils/request' // const suffix = '.dspy'// 匹配所有url后缀 //* *********分销商信息管理************** // 获取分销商配置 export function getresellerAPI(id) { return request({ url: `/reseller/resellerConfigSearch.dspy`, method: 'get', params: { id: id } }) } // 添加分销商 export function addresellerAPI(data) { console.log(data); return request({ url: `/reseller/resellerOrgAdd.dspy`, method: 'get', params: data }) }