Commit 080c1af4 authored by wxk's avatar wxk

充值记录查询状态修改0-成功,1-失败

parent 4eee9eb0
...@@ -560,7 +560,7 @@ ...@@ -560,7 +560,7 @@
isIndeterminate3: true, isIndeterminate3: true,
checkAll3: false, checkAll3: false,
checkedStates1: [], checkedStates1: [],
states1: ["失败", "成功"], states1: ["成功", "失败"],
} }
}, },
props: ['robotDetailInfo','robotBankList'], props: ['robotDetailInfo','robotBankList'],
...@@ -733,7 +733,7 @@ ...@@ -733,7 +733,7 @@
this.list1 = result.list.map(item => { this.list1 = result.list.map(item => {
item.fee = item.fee + item.coin; item.fee = item.fee + item.coin;
item.opt = item.opt==="0" ? "充币" : "提币"; item.opt = item.opt==="0" ? "充币" : "提币";
item.status = item.status==="0" ? "失败" : "成功"; item.status = item.status==="0" ? "成功" : "失败";
return item; return item;
}) })
}else { }else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment