修复:统一前后端的订单状态

This commit is contained in:
2025-08-10 21:18:08 +08:00
parent 7074da30f4
commit f36d794a2a
10 changed files with 1603 additions and 31 deletions

View File

@@ -1,4 +1,4 @@
import type { PageParam } from '@/api';
import type { PageParam } from '@/api/index';
/**
* 商户
@@ -30,9 +30,9 @@ export interface ShopMerchant {
merchantCategoryTitle?: string;
// 经纬度
lngAndLat?: string;
//
//
lng?: string;
//
//
lat?: string;
// 所在省份
province?: string;
@@ -56,8 +56,16 @@ export interface ShopMerchant {
price?: string;
// 是否自营
ownStore?: number;
// 是否可以快递
canExpress?: string;
// 是否推荐
recommend?: number;
// 是否营业
isOn?: number;
//
startTime?: string;
//
endTime?: string;
// 是否需要审核
goodsReview?: number;
// 管理入口
@@ -83,8 +91,5 @@ export interface ShopMerchant {
*/
export interface ShopMerchantParam extends PageParam {
merchantId?: number;
phone?: string;
userId?: number;
shopType?: string;
keywords?: string;
}