b738561d by zhangmeng

购票价格

1 parent 8f27b6b8
......@@ -104,6 +104,21 @@
x {{ customerArr_b.length }}
{{ languageFormat(language, "张", "tickets") }}
</div>
<div v-if="tickType.isCountSale == 1" style="border-top: 1px solid #dcdfe6;margin-top: 20px">
<p>{{
language == 0 ? `满${tickType.counts}人优惠` : `Discount for up to ${tickType.counts} people`
}}</p>
<div class="ticket">
<div v-if="language==0" style="color: orange;font-weight: 600">
{{ tickType.discount }}
</div>
<div v-else style="color: orange;font-weight: 600">
{{ (10 - tickType.discount) * 10 + '%' }}off
</div>
</div>
</div>
</div>
<div class="detail_b">
<div class="sum_txt">
......@@ -195,21 +210,21 @@ const rules = ref({
contacts: [
{
required: true,
message: languageFormat(language, "请输入联系人", "Please enter the contact person"),
message: languageFormat(language.value, "请输入联系人", "Please enter the contact person"),
trigger: "blur"
},
],
phone: [
{
required: true,
message: languageFormat(language, "请输入联系电话", "Please enter the contact phone number"),
message: languageFormat(language.value, "请输入联系电话", "Please enter the contact phone number"),
trigger: "blur"
},
],
message: [
{
required: true,
message: languageFormat(language, "请选择观众", "Please select the audience"),
message: languageFormat(language.value, "请选择观众", "Please select the audience"),
trigger: "blur"
},
],
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!