25d2a9a4 by 杨炀

no message

1 parent 9c842441
...@@ -31,10 +31,12 @@ ...@@ -31,10 +31,12 @@
31 "katex": "^0.16.6", 31 "katex": "^0.16.6",
32 "lodash": "^4.17.21", 32 "lodash": "^4.17.21",
33 "md5js": "^1.0.7", 33 "md5js": "^1.0.7",
34 "mysql": "^2.18.1",
34 "nprogress": "0.2.0", 35 "nprogress": "0.2.0",
35 "pinia": "2.0.35", 36 "pinia": "2.0.35",
36 "qrcode": "^1.5.3", 37 "qrcode": "^1.5.3",
37 "quill-image-resize-module": "^3.0.0", 38 "quill-image-resize-module": "^3.0.0",
39 "require": "^2.4.20",
38 "swiper": "^8.4.7", 40 "swiper": "^8.4.7",
39 "vant": "^4.0.9", 41 "vant": "^4.0.9",
40 "video.js": "^8.5.2", 42 "video.js": "^8.5.2",
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
3 <div class="pd20"> 3 <div class="pd20">
4 <el-form> 4 <el-form>
5 <el-form-item> 5 <el-form-item>
6 <el-input type="text" size="large" placeholder="请输入证件号查询" 6 <el-input type="text" size="large" :placeholder="language==0?'请输入证件号查询':'Query ID Card'"
7 v-model="query.idCard" clearable @keyup.enter="search" 7 v-model="query.idCard" clearable @keyup.enter="search"
8 @clear="search" 8 @clear="search"
9 /> 9 />
...@@ -11,11 +11,11 @@ ...@@ -11,11 +11,11 @@
11 </el-form> 11 </el-form>
12 <div class="list"> 12 <div class="list">
13 <div class="nowteamItem " v-for="(n,i) in list" :key="i"> 13 <div class="nowteamItem " v-for="(n,i) in list" :key="i">
14 <div class="p9 f12">订单编号{{n.id}}</div> 14 <div class="p9 f12">{{ language==0?'订单编号':'Order Number' }}{{n.id}}</div>
15 <div>{{n.ticketName}} </div> 15 <div>{{n.ticketName}} </div>
16 <div>场次{{n.ticketTypeName}} </div> 16 <div>{{ language==0?'场次':'Session' }}{{n.ticketTypeName}} </div>
17 <div>票型{{language==0? n.typeName:n.typeNameEn }} 17 <div>{{ language==0?'票型':'Ticket Type' }}{{language==0? n.typeName:n.typeNameEn }}
18 <el-tag v-if="n.discount == 1">优惠</el-tag> 18 <el-tag v-if="n.discount == 1">{{ language==0?'优惠':'DISCOUNT' }}</el-tag>
19 </div> 19 </div>
20 <div> 20 <div>
21 <!-- 观看人:--> 21 <!-- 观看人:-->
...@@ -28,9 +28,9 @@ ...@@ -28,9 +28,9 @@
28 <span class="fr fwb text-warning" v-if="language==1&&n.discount == 1">{{n.rebatePriceEn}} </span> 28 <span class="fr fwb text-warning" v-if="language==1&&n.discount == 1">{{n.rebatePriceEn}} </span>
29 </div> 29 </div>
30 <p> 30 <p>
31 <label v-if="n.idcType == 0">身份证</label> 31 <label v-if="n.idcType == 0">{{ language==0?'身份证':'ID Card' }}</label>
32 <label v-if="n.idcType == 1">护照</label> 32 <label v-if="n.idcType == 1">{{ language==0?'护照':'Passport' }}</label>
33 <label v-if="n.idcType == 2">其他</label> 33 <label v-if="n.idcType == 2">{{ language==0?'其他':'Other' }}</label>
34 <span v-html="n.idCard"></span> 34 <span v-html="n.idCard"></span>
35 </p> 35 </p>
36 </div> 36 </div>
...@@ -44,12 +44,15 @@ ...@@ -44,12 +44,15 @@
44 </div> 44 </div>
45 45
46 <div class="fixed-bottom"> 46 <div class="fixed-bottom">
47 <el-button @click="search" v-loading="loading" round type="primary" class="btn-lineG">查询</el-button> 47 <el-button @click="search" v-loading="loading" round type="primary" class="btn-lineG">
48 {{ language==0?'查询':'Search' }}
49 </el-button>
48 </div> 50 </div>
49 </div> 51 </div>
50 </template> 52 </template>
51 53
52 <script setup> 54 <script setup>
55 import {ref, computed, onMounted} from 'vue'
53 import {queryTicket} from "@/apiPc/common"; 56 import {queryTicket} from "@/apiPc/common";
54 import {ElMessage} from "element-plus"; 57 import {ElMessage} from "element-plus";
55 import {useStorage} from "@vueuse/core/index"; 58 import {useStorage} from "@vueuse/core/index";
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!