123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- import request from '@/utils/request'
- // 查询企业列表
- export function listCompany(query) {
- return request({
- url: '/company/company/list',
- method: 'get',
- params: query
- })
- }
- export function allList(query) {
- return request({
- url: '/company/company/allList',
- method: 'get',
- params: query
- })
- }
- // 查询企业详细
- export function getCompany(companyId) {
- return request({
- url: '/company/company/' + companyId,
- method: 'get'
- })
- }
- // 新增企业
- export function addCompany(data) {
- return request({
- url: '/company/company',
- method: 'post',
- data: data
- })
- }
- export function resetPwd(companyId) {
- return request({
- url: '/company/company/resetPwd/'+companyId,
- method: 'post'
- })
- }
- // 修改企业
- export function updateCompany(data) {
- return request({
- url: '/company/company',
- method: 'put',
- data: data
- })
- }
- // 删除企业
- export function delCompany(companyId) {
- return request({
- url: '/company/company/' + companyId,
- method: 'delete'
- })
- }
- // 导出企业
- export function exportCompany(query) {
- return request({
- url: '/company/company/export',
- method: 'get',
- params: query
- })
- }
- export function getCompanyList() {
- return request({
- url: '/company/company/getCompanyList',
- method: 'get'
- })
- }
- export function recharge(data) {
- return request({
- url: '/company/company/recharge',
- method: 'post',
- data: data
- })
- }
- export function deduct(data) {
- return request({
- url: '/company/company/deduct',
- method: 'post',
- data: data
- })
- }
- // 查询企业列表
- export function crmDayCountlist(query) {
- return request({
- url: '/company/company/crmDayCountlist',
- method: 'get',
- params: query
- })
- }
- //查询区域
- export function getCitysArea(query) {
- return request({
- url: '/his/city/getCitysArea',
- method: 'get',
- params: query
- })
- }
|