gaoluyang
6 天以前 879249b34397ba1dc2be1ff1c7afd158d35ec340
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,
  });
}