- 新增地址类型定义,增强前端地址数据结构 - 新增地址编辑页面,支持地址智能识别和定位选点功能 - 地址编辑支持省市区选择及默认地址设置 - 新增地址列表页面,支持地址展示、删除、编辑和选择功能 - 实现售后申请页面,支持选择售后类型和退款原因 - 售后申请支持商品选择、退款金额计算和凭证上传 - 新增售后详情页面,支持售后状态展示及申请取消 - 优化页面加载和用户交互体验,增加错误提示和权限处理
162 lines
3.6 KiB
TypeScript
162 lines
3.6 KiB
TypeScript
import request from '@/utils/request';
|
|
import type { ApiResult } from '@/api/index';
|
|
import type { Company, CompanyParam } from './model';
|
|
import { PageResult } from '@/api/index';
|
|
import {SERVER_API_URL} from "@/utils/server";
|
|
|
|
/**
|
|
* 查询企业资料
|
|
*/
|
|
export async function getCompany(params?: CompanyParam) {
|
|
const res = await request.get<ApiResult<Company>>(
|
|
SERVER_API_URL + '/system/company/profile',
|
|
{
|
|
params
|
|
}
|
|
);
|
|
if (res.code === 0 && res.data) {
|
|
return res.data;
|
|
}
|
|
return Promise.reject(new Error(res.message));
|
|
}
|
|
|
|
/**
|
|
* 查询企业资料不限租户
|
|
*/
|
|
export async function getCompanyAll(companyId: number) {
|
|
const res = await request.get<ApiResult<Company>>(
|
|
SERVER_API_URL + '/system/company/profileAll/' + companyId
|
|
);
|
|
if (res.code === 0 && res.data) {
|
|
return res.data;
|
|
}
|
|
return Promise.reject(new Error(res.message));
|
|
}
|
|
|
|
/**
|
|
* 查询Company列表
|
|
*/
|
|
export async function pageCompany(params: CompanyParam) {
|
|
const res = await request.get<ApiResult<PageResult<Company>>>(
|
|
SERVER_API_URL + '/system/company/page',
|
|
params
|
|
);
|
|
if (res.code === 0) {
|
|
return res.data;
|
|
}
|
|
return Promise.reject(new Error(res.message));
|
|
}
|
|
|
|
/**
|
|
* 查询Company列表不限租户
|
|
*/
|
|
export async function pageCompanyAll(params: CompanyParam) {
|
|
const res = await request.get<ApiResult<PageResult<Company>>>(
|
|
SERVER_API_URL + '/system/company/pageAll',
|
|
params
|
|
);
|
|
if (res.code === 0) {
|
|
return res.data;
|
|
}
|
|
return Promise.reject(new Error(res.message));
|
|
}
|
|
|
|
/**
|
|
* 添加Company
|
|
*/
|
|
export async function addCompany(data: Company) {
|
|
const res = await request.post<ApiResult<unknown>>(
|
|
SERVER_API_URL + '/system/company',
|
|
data
|
|
);
|
|
if (res.code === 0) {
|
|
return res.message;
|
|
}
|
|
return Promise.reject(new Error(res.message));
|
|
}
|
|
|
|
/**
|
|
* 修改Company
|
|
*/
|
|
export async function updateCompany(data: Company) {
|
|
const res = await request.put<ApiResult<unknown>>(
|
|
SERVER_API_URL + '/system/company',
|
|
data
|
|
);
|
|
if (res.code === 0) {
|
|
return res.message;
|
|
}
|
|
return Promise.reject(new Error(res.message));
|
|
}
|
|
|
|
/**
|
|
* 修改CompanyAll
|
|
*/
|
|
export async function updateCompanyAll(data: Company) {
|
|
const res = await request.put<ApiResult<unknown>>(
|
|
SERVER_API_URL + '/system/company/updateCompanyAll',
|
|
data
|
|
);
|
|
if (res.code === 0) {
|
|
return res.message;
|
|
}
|
|
return Promise.reject(new Error(res.message));
|
|
}
|
|
|
|
/**
|
|
* 删除Company
|
|
*/
|
|
export async function removeCompany(id?: number) {
|
|
const res = await request.del<ApiResult<unknown>>(
|
|
SERVER_API_URL + '/system/company/' + id
|
|
);
|
|
if (res.code === 0) {
|
|
return res.message;
|
|
}
|
|
return Promise.reject(new Error(res.message));
|
|
}
|
|
|
|
// 销毁租户
|
|
export async function destructionTenant(id?: number) {
|
|
const res = await request.del<ApiResult<unknown>>(
|
|
SERVER_API_URL + '/system/company/destruction/' + id
|
|
);
|
|
if (res.code === 0) {
|
|
return res.message;
|
|
}
|
|
return Promise.reject(new Error(res.message));
|
|
}
|
|
|
|
/**
|
|
* 批量删除Company
|
|
*/
|
|
export async function removeBatchCompany(data: (number | undefined)[]) {
|
|
const res = await request.del<ApiResult<unknown>>(
|
|
SERVER_API_URL + '/system/company/batch',
|
|
{
|
|
data
|
|
}
|
|
);
|
|
if (res.code === 0) {
|
|
return res.message;
|
|
}
|
|
return Promise.reject(new Error(res.message));
|
|
}
|
|
|
|
export async function checkExistence(
|
|
field: string,
|
|
value: string,
|
|
id?: number
|
|
) {
|
|
const res = await request.get<ApiResult<unknown>>(
|
|
SERVER_API_URL + '/system/company/existence',
|
|
{
|
|
params: { field, value, id }
|
|
}
|
|
);
|
|
if (res.code === 0) {
|
|
return res.message;
|
|
}
|
|
return Promise.reject(new Error(res.message));
|
|
}
|