diff --git a/src/app/admin/order/oil-station-order/oil-station-order.component.html b/src/app/admin/order/oil-station-order/oil-station-order.component.html
index 7686ff5..01f2c81 100644
--- a/src/app/admin/order/oil-station-order/oil-station-order.component.html
+++ b/src/app/admin/order/oil-station-order/oil-station-order.component.html
@@ -76,7 +76,7 @@
(nzPageSizeChange)="getRequest(false , searchForm.value)">
- 编号 |
+ 编号 |
订单号 |
油站名称 |
类型 |
@@ -89,8 +89,8 @@
支付金额 |
优惠金额 |
创建时间 |
- 状态 |
- 操作 |
+ 状态 |
+ 操作 |
@@ -117,6 +130,8 @@
团油枪价 |
创建时间 |
支付时间 |
+
订单状态 |
+
退款时间 |
操作 |
@@ -139,6 +154,13 @@
{{data.gasPriceGun}}元 |
{{data.createTime | date : 'yyyy-MM-dd HH:mm:ss'}} |
{{data.payTime | date : 'yyyy-MM-dd HH:mm:ss'}} |
+
+ 已完成
+ 已退款
+ 退款中
+ 退款驳回
+ |
+
{{data.refundTime | date : 'yyyy-MM-dd HH:mm:ss'}} |
操作列表
diff --git a/src/app/admin/tuanyou-agent/order/ty-order-list/ty-order-list.component.ts b/src/app/admin/tuanyou-agent/order/ty-order-list/ty-order-list.component.ts
index 38cd5ec..cbc8d58 100644
--- a/src/app/admin/tuanyou-agent/order/ty-order-list/ty-order-list.component.ts
+++ b/src/app/admin/tuanyou-agent/order/ty-order-list/ty-order-list.component.ts
@@ -53,6 +53,7 @@ export class TyOrderListComponent implements OnInit {
salesmanId: [null],
memPhone: [null],
payTimeArray: [null],
+ orderStatus: [null],
});
this.requestData(1);
diff --git a/src/environments/environment.ts b/src/environments/environment.ts
index 8ebb4f1..c0bc8fa 100644
--- a/src/environments/environment.ts
+++ b/src/environments/environment.ts
@@ -4,10 +4,10 @@
export const environment = {
production: false,
- baseUrl: 'http://localhost:9302/brest/', // 测试环境服务器地址(请求数据地址)
- imageUrl: 'http://localhost:9302/filesystem/',
-/* baseUrl: 'https://hsg.dctpay.com/brest/', // 测试环境服务器地址(请求数据地址)
- imageUrl: 'https://hsg.dctpay.com/filesystem/',*/
+/* baseUrl: 'http://localhost:9302/brest/', // 测试环境服务器地址(请求数据地址)
+ imageUrl: 'http://localhost:9302/filesystem/',*/
+ baseUrl: 'https://hsg.dctpay.com/brest/', // 测试环境服务器地址(请求数据地址)
+ imageUrl: 'https://hsg.dctpay.com/filesystem/',
key: 'https://hsgcs.dctpay.com/phone-recharge-H5/index.html?codeValue=',
inviteUrl: 'https://hsgcs.dctpay.com/wx/?action=ic&id=',
};
|