Browse Source

修改

master
ltlzx 4 years ago
parent
commit
e11a553484
  1. 4
      src/i18n/en.json
  2. 2
      src/i18n/tw.json
  3. 20
      src/views/contract/exchange-store.vue

4
src/i18n/en.json

@ -908,7 +908,7 @@
"d8": "Price", "d8": "Price",
"d9": "Market Price", "d9": "Market Price",
"e0": "Limit Price", "e0": "Limit Price",
"e1": "Amount", "e1": "Size",
"e2": "Leaf", "e2": "Leaf",
"e3": "Margin", "e3": "Margin",
"e4": "Multiple positions", "e4": "Multiple positions",
@ -978,7 +978,7 @@
"k8": "Please log in first to apply", "k8": "Please log in first to apply",
"k9":"Please enter the subscription code", "k9":"Please enter the subscription code",
"l1":"Proportion of increase", "l1":"Proportion of increase",
"l2":"Margin", "l2":"Amount",
"l4":"Current valuation" "l4":"Current valuation"
}, },
"otc": { "otc": {

2
src/i18n/tw.json

@ -916,7 +916,7 @@
"k8": "請先登錄進行申購 ", "k8": "請先登錄進行申購 ",
"k9":"請輸入認購碼", "k9":"請輸入認購碼",
"l1":"漲幅比例", "l1":"漲幅比例",
"l2":"保證金" "l2":"數量"
}, },
"otc": { "otc": {
"a0": "請選擇交易類型", "a0": "請選擇交易類型",

20
src/views/contract/exchange-store.vue

@ -88,16 +88,15 @@
</div> </div>
<div class="input-group mb-4 input-group-sm"> <div class="input-group mb-4 input-group-sm">
<div class="input-group-prepend"> <div class="input-group-prepend">
<span class="input-group-text">{{ $t("contract.e1") }}</span> <!-- <span class="input-group-text">{{ $t("contract.e1") }}</span> -->
<!-- <span class="input-group-text">{{ $t("contract.l2") }}</span> --> <span class="input-group-text">{{ $t("contract.l2") }}</span>
</div> </div>
<!-- v-model="form.amount" -->
<!-- :placeholder="tips" -->
<input <input
type="number" type="number"
v-model="form.amount" class="form-control"
class="form-control" v-model="margin"
:placeholder="tips" :placeholder="tips"
/> />
<!-- <div class="input-group-append"> <!-- <div class="input-group-append">
<span class="input-group-text">{{ $t("contract.e2") }}</span> <span class="input-group-text">{{ $t("contract.e2") }}</span>
@ -109,16 +108,15 @@
@input="sliderChange" @input="sliderChange"
:format-tooltip="tooltip" :format-tooltip="tooltip"
:marks="marks" :marks="marks"
></el-slider> ></el-slider>
<!-- :step="25" --> <!-- :step="25" -->
</div> </div>
<!-- 开仓 --> <!-- 开仓 -->
<div v-if="tab == 1" class="kaicang"> <div v-if="tab == 1" class="kaicang">
<div class="d-flex justify-content-between mb-3"> <div class="d-flex justify-content-between mb-3">
<div>{{ $t("contract.e3") }}</div> <div>{{ $t("contract.e1") }}</div>
<!-- {{$t("contract.e2")}} --> <!-- {{$t("contract.e2")}} -->
<div>{{ margin }} USDT</div> <div>{{ amount }} </div>
</div> </div>
<div class="d-flex justify-content-between mb-4"> <div class="d-flex justify-content-between mb-4">
<div>{{ $t("contract.a3") }}:</div> <div>{{ $t("contract.a3") }}:</div>

Loading…
Cancel
Save