gaoluyang
2026-02-09 792ad8ef7684685544fbf03cc93d4eb2dc605bfa
src/api/salesManagement/opportunityManagement.js
@@ -27,6 +27,14 @@
    data: data,
  });
}
// 添加商机
export function addDescription(data) {
  return request({
    url: "/businessOpportunity/addDescription",
    method: "post",
    data: data,
  });
}
// 删除商机
export function delOpportunity(ids) {
@@ -35,4 +43,19 @@
    method: "delete",
    data: ids,
  });
}
}
// 查询省
export function getProvinceList() {
  return request({
    url: "/businessOpportunity/getProvinceList",
    method: "get",
  });
}
// 查询市
export function getCityList(id) {
  return request({
    url: "/businessOpportunity/getCityList",
    method: "get",
    params: id,
  });
}