相关文章推荐
绅士的凉面  ·  qt ...·  1 年前    · 
多情的葡萄酒  ·  4. Nest :module ...·  2 年前    · 
胡子拉碴的大葱  ·  matlab ...·  2 年前    · 
性感的野马  ·  c - Linux - rtnetlink ...·  2 年前    · 
/* 编辑项目列表 */
export function editProjectList(params) {
  const url = '/support/project/update';
  return request({
    url: url,
    method: 'post',
    data: params // data就是body参数
/* 增加客户列表 */
export function addClientList(params) {
  const url = '/support/company/insert';
  return request({
    url: url,
    method: 'post',