diff --git a/src/views/img/withdraw/index.vue b/src/views/img/withdraw/index.vue
index 492daf5..83b838e 100644
--- a/src/views/img/withdraw/index.vue
+++ b/src/views/img/withdraw/index.vue
@@ -10,6 +10,9 @@
+
+
+
-
-
+
+
+
- {{scope.row.channel == '0' ? "微信" : scope.row.channel == '1' ? "银行卡": ''}}
+ {{scope.row.channel == '0' ? "微信" : scope.row.channel == '1' ? "银行卡": scope.row.channel == '2' ? "支付宝" : ''}}
-
+
{{scope.row.status == '0' ? "待审核" : scope.row.status == '1' ? "提现中": scope.row.status == '2' ? "提现成功": scope.row.status == '3' ? "提现失败": scope.row.status == '4' ? "审核拒绝": ''}}
-
-
+
+
{{ parseTime(scope.row.createTime) }}
-
+
{{ parseTime(scope.row.updateTime) }}
@@ -149,6 +153,11 @@
+
+
+
+
+
@@ -214,7 +223,8 @@ export default {
//渠道
channel: [
{ value: '0', label: '微信'},
- { value: '1', label: '银行卡'}
+ { value: '1', label: '银行卡'},
+ { value: '2', label: '支付宝'}
],
//状态
status: [
@@ -231,6 +241,7 @@ export default {
channel: undefined,
orderId: undefined,
bankNo: undefined,
+ phone: undefined
},
// 列信息
columns: [
@@ -239,12 +250,13 @@ export default {
{ key: 2, label: `艺术家id`, visible: true },
{ key: 3, label: `提现金额`, visible: true },
{ key: 4, label: `银行卡`, visible: true },
- { key: 5, label: `审核理由`, visible: true },
- { key: 6, label: `渠道`, visible: true },
- { key: 7, label: `状态`, visible: true },
- { key: 8, label: `排序`, visible: true },
- { key: 9, label: `创建时间`, visible: true },
- { key: 10, label: `更新时间`, visible: true }
+ { key: 5, label: `支付宝手机号`, visible: true },
+ { key: 6, label: `审核理由`, visible: true },
+ { key: 7, label: `渠道`, visible: true },
+ { key: 8, label: `状态`, visible: true },
+ { key: 9, label: `排序`, visible: true },
+ { key: 10, label: `创建时间`, visible: true },
+ { key: 11, label: `更新时间`, visible: true }
],
// 表单校验
rules: {