648fec78 by yyx

欧元单位

1 parent aef4fc73
......@@ -167,7 +167,9 @@ order.fetchData();
<div class="form">
<el-form>
<el-form-item :label="language == 0 ? '联系人电话' : 'contact phone'">
<el-form-item
:label="language == 0 ? '联系人电话' : 'contact phone'"
>
<el-input
v-model="payment.form.phone"
:placeholder="
......@@ -250,7 +252,8 @@ order.fetchData();
{{ languageFormat(language, "共计", "Total") }}
</div>
<div class="price_num">
<span v-if="language == 0">¥</span>{{ order.data?.paymentAmount }}
<span>{{ language == 0 ? "¥" : "€" }}</span>
{{ order.data?.paymentAmount }}
</div>
</div>
</div>
......@@ -258,9 +261,13 @@ order.fetchData();
</div>
<div class="footer">
<div>
<span class="label"
>{{ languageFormat(language, "共计金额", "Subtotal") }}</span
><span class="value">¥{{ order.data?.paymentAmount }}</span>
<span class="label">
{{ languageFormat(language, "共计金额", "Subtotal") }}
</span>
<span class="value">
<span>{{ language == 0 ? "¥" : "€" }}</span>
{{ order.data?.paymentAmount }}
</span>
</div>
<div class="pay" @click="payment.paymentHandle()">
{{ languageFormat(language, "立即支付", "Pay Now") }}
......
......@@ -257,13 +257,15 @@ detail.fetchData();
<div style="width: 30%" class="td">{{ detail.data?.name }}</div>
<div style="width: 25%" class="td">{{ detail.data?.placeName }}</div>
<div style="width: 20%" class="td">
¥{{ detail.data?.singlePrice }}
<span>{{ language == 0 ? "¥" : "€" }}</span>
{{ detail.data?.singlePrice }}
</div>
<div style="width: 12%" class="td">
x{{ detail.data?.seatList?.length }}
</div>
<div style="width: 13%; text-align: right" class="td">
¥{{ detail.data?.payAmount }}
<span>{{ language == 0 ? "¥" : "€" }}</span>
{{ detail.data?.payAmount }}
</div>
</div>
</div>
......@@ -367,7 +369,8 @@ detail.fetchData();
class="value"
:style="{ color: status[detail.data?.state]?.color }"
>
<span v-if="language == 0">¥</span>{{ detail.data?.payAmount }}
<span>{{ language == 0 ? "¥" : "€" }}</span>
{{ detail.data?.payAmount }}
</div>
</div>
<!-- button -->
......
......@@ -318,9 +318,10 @@ price.fetchData();
@click="price.onClickPrice(it)"
>
<img class="seat" :src="it.unSelectIcon" />
<span class="price"
>{{ it.price }}<span v-if="language == 0">¥</span></span
>
<span class="price">
{{ it.price }}
<span>{{ language == 0 ? "¥" : "€" }}</span>
</span>
</div>
</div>
</div>
......@@ -346,7 +347,10 @@ price.fetchData();
</div>
</div>
<div class="pay">
<div class="sum">¥{{ sumPrice?.toFixed(2) }}</div>
<div class="sum">
<span>{{ language == 0 ? "¥" : "€" }}</span>
{{ sumPrice?.toFixed(2) }}
</div>
<div class="pay_btn" @click="toConfirmOrder()">
{{ languageFormat(language, "立即购买", "Continue") }}
</div>
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!