|
|
|
@ -254,7 +254,7 @@ |
|
|
|
<div v-if="tab == 1" class="kaicang"> |
|
|
|
<div class="d-flex justify-content-between mb-3"> |
|
|
|
<div class="color_7c">{{ $t("contract.e7") }} </div> |
|
|
|
<div>{{ accountInfo.account_equity }}</div> |
|
|
|
<div>{{ accountInfo.openNum }}</div> |
|
|
|
</div> |
|
|
|
<div class="d-flex justify-content-between mb-3"> |
|
|
|
<div class="color_7c">{{ $t("contract.e1") }}</div> |
|
|
|
@ -369,7 +369,7 @@ export default { |
|
|
|
visible: false, |
|
|
|
form: { |
|
|
|
type: 2,//2市价1限价 |
|
|
|
lever_rate: "" |
|
|
|
lever_rate: "50" |
|
|
|
}, |
|
|
|
buyform: { |
|
|
|
entrust_price: undefined, |
|
|
|
@ -539,7 +539,8 @@ export default { |
|
|
|
if (!this.isLogin) return; |
|
|
|
// if (!this.contractOpen) return; |
|
|
|
let data = { |
|
|
|
symbol: this.symbol |
|
|
|
symbol: this.symbol, |
|
|
|
lever_rate: this.form.lever_rate //10 |
|
|
|
}; |
|
|
|
Contract.contractAccount(data).then(res => { |
|
|
|
this.accountInfo = res; |
|
|
|
|