| | |
| | | cValue: {}, |
| | | dValue: {}, |
| | | usM: {}, // 账户金额 us |
| | | twM: {}, // 账户金额 tw |
| | | inM: {}, // 账户金额 in |
| | | hkM: {}, // 账户金额 hk |
| | | jpM: {}, // 账户金额 in |
| | | arrRate: [], // 汇率 |
| | | sxf: 0.01 // 手续费比例 |
| | | }; |
| | |
| | | this.moneyRevise = this.usM.availableBalance; |
| | | break; |
| | | case "JPY": |
| | | this.moneyRevise = this.inM.availableBalance; |
| | | this.moneyRevise = this.jpM.availableBalance; |
| | | break; |
| | | // case "HKD": |
| | | // this.moneyRevise = this.hkM.availableBalance; |
| | | // break; |
| | | // case "TWD": |
| | | // this.moneyRevise = this.twM.availableBalance; |
| | | // break; |
| | | default: |
| | | break; |
| | | } |
| | |
| | | if (data.status === 0) { |
| | | data.data.forEach(item => { |
| | | if (item.accectType == "US") this.usM = item; |
| | | else if (item.accectType == "JP") this.inM = item; |
| | | // else if (item.accectType == "TW") this.twM = item; |
| | | // else if (item.accectType == "HK") this.hkM = item; |
| | | else if (item.accectType == "JP") this.jpM = item; |
| | | }); |
| | | } |
| | | }, |
| | |
| | | margin-top: 40px; |
| | | height: 60px; |
| | | border-radius: 8px; |
| | | background: #c4d600; |
| | | background: #00f0ff; |
| | | border: none; |
| | | } |
| | | .butn2 { |
| | | border-radius: 8px; |
| | | background: #c4d600; |
| | | background: #00f0ff; |
| | | border: none; |
| | | } |
| | | |
| | |
| | | border: none; |
| | | |
| | | .lv { |
| | | color: #c4d600; |
| | | color: #00f0ff; |
| | | } |
| | | } |
| | | |