4c9bc4b1 by zhangmeng

开票

1 parent 5303514a
......@@ -48,7 +48,9 @@
v-for="(it, index) in personnelList" :key="index" class="prople_item">
<div>
<div class="name">{{ it.name }}
<span v-if="it.discount" class="tag_t p-right">优惠</span>
<span v-if="it.discount" class="tag_t p-right">{{
language == 0 ? '优惠' : 'Discounts'
}}</span>
</div>
<div class="idcard">{{ it.idCard }}</div>
</div>
......@@ -89,7 +91,7 @@
{{ language == 0 ? tickType.price : tickType.priceEn }}
<span> {{ language == 0 ? '元' : 'Euro' }}</span>
{{ languageFormat(language, "票档", "Ticket file") }}
x 1
x {{ customerArr_q.length }}
{{ languageFormat(language, "张", "tickets") }}
</div>
<p>{{ language == 0 ? '优惠票' : 'Concession Ticket' }}</p>
......@@ -97,7 +99,7 @@
{{ language == 0 ? tickType.rebatePrice : tickType.rebatePriceEn }}
<span> {{ language == 0 ? '元' : 'Euro' }}</span>
{{ languageFormat(language, "票档", "Ticket file") }}
x 1
x {{ customerArr_b.length }}
{{ languageFormat(language, "张", "tickets") }}
</div>
</div>
......
......@@ -21,14 +21,14 @@
}}
{{
matchForm.beginTime
? dayjs(matchForm.beginTime).format("YYYY.MM.DD")
matchForm.endTime
? dayjs(matchForm.endTime).format("YYYY.MM.DD")
: ""
}}
{{
matchForm.beginTime
matchForm.endTime
? getDayName(
new Date(matchForm.beginTime),
new Date(matchForm.endTime),
language == 1 ? "en-US" : "zh-CN"
)
: ""
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!