c02847f9 by zhangmeng

开票

1 parent e834e848
...@@ -298,7 +298,9 @@ ...@@ -298,7 +298,9 @@
298 </el-col> 298 </el-col>
299 <el-col :lg="8" :md="12" :sm="12" :xs="24"> 299 <el-col :lg="8" :md="12" :sm="12" :xs="24">
300 {{ 300 {{
301 v.discount ? form?.extJson?.ticketDate?.price : form?.extJson?.ticketDate?.rebatePrice 301 !v.discount ? language.value == 0 ? form?.extJson?.ticketDate?.price : form?.extJson?.ticketDate
302 ?.priceEn : language.value == 0 ? form?.extJson?.ticketDate?.rebatePrice :
303 form?.extJson?.ticketDate?.rebatePriceEn
302 }}{{ language == 0 ? '¥' : '€' }}/{{ language == 0 ? '张' : 'Tickets' }} 304 }}{{ language == 0 ? '¥' : '€' }}/{{ language == 0 ? '张' : 'Tickets' }}
303 </el-col> 305 </el-col>
304 </el-row> 306 </el-row>
......
...@@ -52,7 +52,7 @@ ...@@ -52,7 +52,7 @@
52 </div> 52 </div>
53 <div class="idcard">{{ it.idCard }}</div> 53 <div class="idcard">{{ it.idCard }}</div>
54 </div> 54 </div>
55 <el-checkbox :value="it"/> 55 <el-checkbox :disabled="!it.pay" :value="it"/>
56 </div> 56 </div>
57 </el-checkbox-group> 57 </el-checkbox-group>
58 </div> 58 </div>
......
...@@ -114,12 +114,13 @@ function submit() { ...@@ -114,12 +114,13 @@ function submit() {
114 if (valid) { 114 if (valid) {
115 aadCustomer(form.value).then(res => { 115 aadCustomer(form.value).then(res => {
116 if (res.data == -100) { 116 if (res.data == -100) {
117 return ElMessageBox.confirm(language.value == 0 ? '该观影人已存在' : "The viewer already exists", language.value == 0 ? '提示' : 'Reminder', { 117 ElMessageBox.confirm(language.value == 0 ? '该观影人已存在' : "The viewer already exists", language.value == 0 ? '提示' : 'Reminder', {
118 confirmButtonText: language.value == 0 ? '确认' : 'confirm', 118 confirmButtonText: language.value == 0 ? '确认' : 'confirm',
119 cancelButtonText: language.value == 0 ? '取消' : 'cancel', 119 cancelButtonText: language.value == 0 ? '取消' : 'cancel',
120 type: "warning", 120 type: "warning",
121 draggable: true, 121 draggable: true,
122 }) 122 })
123
123 } else if (res.data == -101) { 124 } else if (res.data == -101) {
124 return ElMessageBox.confirm(language.value == 0 ? '该观影人实名认证未通过' : 'The real name authentication of the moviegoer failed', language.value == 0 ? '提示' : 'Reminder', { 125 return ElMessageBox.confirm(language.value == 0 ? '该观影人实名认证未通过' : 'The real name authentication of the moviegoer failed', language.value == 0 ? '提示' : 'Reminder', {
125 confirmButtonText: language.value == 0 ? '确认' : "confirm", 126 confirmButtonText: language.value == 0 ? '确认' : "confirm",
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!