From 8bd415283c98dcd21de684356c7da7cbf7d9a013 Mon Sep 17 00:00:00 2001 From: Sum1Dream <418471657@qq.com> Date: Tue, 21 Jun 2022 16:56:52 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=88=E5=B9=B6=E8=87=AA=E5=BB=BA=E7=AB=99?= =?UTF-8?q?=E4=BB=A3=E7=A0=81=E5=88=B0=E8=AF=9D=E8=B4=B9=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../order-list/order-list.component.html | 38 +++++++++++++++++++ .../order-list/order-list.component.ts | 1 + src/environments/environment.ts | 8 ++-- 3 files changed, 43 insertions(+), 4 deletions(-) diff --git a/src/app/admin/recharge-order/order-list/order-list.component.html b/src/app/admin/recharge-order/order-list/order-list.component.html index 9c4c87e..b31a206 100644 --- a/src/app/admin/recharge-order/order-list/order-list.component.html +++ b/src/app/admin/recharge-order/order-list/order-list.component.html @@ -250,3 +250,41 @@ + + + + + 序号 + 订单号 + 用户昵称 + 用户联系方式 + 充值类型 + 充值内容 + 支付方式 + 卡号 + 订单金额 + 应付金额 + 订单状态 + 支付时间 + 原因 + + + + + {{ i + 1}} + {{data.orderNo}} + {{data.userName}} + {{data.userPhone}} + {{data.rechargeModelName}} + {{data.rechargeContent}} + {{data.payTypeName}} + {{data.cardNo}} + {{data.orderPrice}} + {{data.payRealPrice}} + {{data.statusName}} + {{data.payTime}} + {{data.errorMessage}} + + + + diff --git a/src/app/admin/recharge-order/order-list/order-list.component.ts b/src/app/admin/recharge-order/order-list/order-list.component.ts index 820e0ac..e0b4885 100644 --- a/src/app/admin/recharge-order/order-list/order-list.component.ts +++ b/src/app/admin/recharge-order/order-list/order-list.component.ts @@ -187,6 +187,7 @@ export class OrderListComponent implements OnInit, OnDestroy { } handleChange(info: NzUploadChangeParam): void { + console.log(info); if (info.file.status === 'done') { if (info.file.response.return_code === '000000') { this.loading = false; diff --git a/src/environments/environment.ts b/src/environments/environment.ts index c29ae5b..5a795b3 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=', };