|
|
@@ -74,6 +74,15 @@ class WithdrawList extends \common\libs\dataList\DataList implements DataListInt
|
|
|
},
|
|
|
'headerOther' => ['width' => '190'],
|
|
|
],
|
|
|
+ 'PAID_AT' => [
|
|
|
+ 'header' => \Yii::t('ctx', 'modelListFinancePaidAt'), // 提现时间
|
|
|
+ 'value' => function ($row) {
|
|
|
+ return (new DateTime([
|
|
|
+ 'value' => $row['PAID_AT'],
|
|
|
+ ]))->result();
|
|
|
+ },
|
|
|
+ 'headerOther' => ['width' => '190'],
|
|
|
+ ],
|
|
|
'AUDIT_STATUS' => null,
|
|
|
'AUDIT_STATUS_NAME' => [
|
|
|
'header' => \Yii::t('ctx', 'modelListFinanceWithdrawState'), // 提现状态
|
|
|
@@ -166,7 +175,8 @@ class WithdrawList extends \common\libs\dataList\DataList implements DataListInt
|
|
|
'SN' => ['isUserTable' => false, 'name' => \Yii::t('ctx', 'modelListFinanceWithdrawSn')], // 提现流水号
|
|
|
'USER_NAME' => ['isUserTable' => false, 'name' => \Yii::t('ctx', 'modelListFinanceBalanceAuditListUserName')], // 会员编号
|
|
|
'WITHDRAW_PERIOD_NUM' => ['isUserTable' => false, 'name' => \Yii::t('ctx', 'modelListFinanceWithdrawPeriod')], // 提现期数
|
|
|
- 'CREATED_AT' => ['isUserTable' => false, 'name' => \Yii::t('ctx', 'modelListFinanceWithdrawWithdrawalTime'), 'other' => 'date'], // 申请时间
|
|
|
+ 'CREATED_AT' => ['isUserTable' => false, 'name' => \Yii::t('ctx', 'modelListFinanceWithdrawAt'), 'other' => 'date'], // 申请时间
|
|
|
+ 'PAID_AT' => ['isUserTable' => false, 'name' => \Yii::t('ctx', 'modelListFinancePaidAt'), 'other' => 'date'], // 付款时间
|
|
|
'REAL_AMOUNT' => ['isUserTable' => false, 'name' => \Yii::t('ctx', 'modelListFinanceWithdrawRealAmount')], // 实际到账金额
|
|
|
|
|
|
'USER_REAL_NAME' => ['isUserTable' => false, 'name' => \Yii::t('ctx', 'modelListFinanceBalanceAuditListRealName')],
|