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=', };