diff --git a/.env.development b/.env.development index 2ba80cb..3ff803c 100644 --- a/.env.development +++ b/.env.development @@ -2,6 +2,7 @@ VITE_APP_NAME=后台管理系统 #VITE_API_URL=http://localhost:9090/api #VITE_API_URL=http://yxw.wsdns.cn/api #VITE_SOCKET_URL=ws://localhost:9190 -VITE_API_URL=http://127.0.0.1:9090/api +#VITE_API_URL=http://127.0.0.1:9090/api #VITE_API_URL=https://server.gxwebsoft.com/api -VITE_SOCKET_URL=wss://server.gxwebsoft.com +#VITE_SOCKET_URL=wss://server.gxwebsoft.com +VITE_API_URL=http://yxw.wsdns.cn/api diff --git a/src/api/order/model/index.ts b/src/api/order/model/index.ts index 3abf5f9..5ca7b43 100644 --- a/src/api/order/model/index.ts +++ b/src/api/order/model/index.ts @@ -85,6 +85,8 @@ export interface Order { } export interface OrderPay { + // 主键id + id?: number; // 订单id orderId?: number; // 订单类型 @@ -97,9 +99,15 @@ export interface OrderPay { orderSourceData?: string; rentOrderId?: number; //订单金额 - orderPriceInt?:number;//服务端用BigDecimal无法接受,另起一个字段 + orderPriceInt?: number;//服务端用BigDecimal无法接受,另起一个字段 // 订单编号 orderNo?: string; + // 实付款金额 + payPrice?: number; + // 付款状态(10未付款 20已付款) + payStatus?: number; + // 电池型号 + batteryModel?: string; // 创建时间 createTime?: string; startTime?: string; @@ -149,4 +157,6 @@ export interface OrderParam extends PageParam { merchantCode?: string; expireDay?: number; isExpire?: number; + // 仅查询续费单(rentOrderId 不为空) + rentOrderIdNotNull?: boolean; } diff --git a/src/views/apps/equipment/order/components/order-info.vue b/src/views/apps/equipment/order/components/order-info.vue index c97529f..1aa5f09 100644 --- a/src/views/apps/equipment/order/components/order-info.vue +++ b/src/views/apps/equipment/order/components/order-info.vue @@ -521,7 +521,7 @@ key: 'batteryModel' }, { - title: '有效期限', + title: '有效期限2', dataIndex: 'expirationTime', key: 'expirationTime' }, diff --git a/src/views/yunxinwei/renew/index.vue b/src/views/yunxinwei/renew/index.vue index d2c21f9..93df489 100644 --- a/src/views/yunxinwei/renew/index.vue +++ b/src/views/yunxinwei/renew/index.vue @@ -5,12 +5,12 @@ @@ -18,189 +18,50 @@