832059ed by zhangmeng

查询优化

1 parent 9869c60f
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
20 align="center" 20 align="center"
21 prop="serviceTypeStr"> 21 prop="serviceTypeStr">
22 <template #default="{row}"> 22 <template #default="{row}">
23 {{ row.serviceType == 1 ? '接机' : '送机' }} 23 {{ row.serviceType == 1 ? language == 0 ? '接机' : 'Pick-up' : language == 0 ? '送机' : 'Drop-off' }}
24 </template> 24 </template>
25 </el-table-column> 25 </el-table-column>
26 <el-table-column :label="language==0?'联系人':'Contacts'" align="center" prop="name" width="110"> 26 <el-table-column :label="language==0?'联系人':'Contacts'" align="center" prop="name" width="110">
......
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
34 </el-table-column> 34 </el-table-column>
35 <el-table-column :label="language==0?'状态':'State'" align="center" prop="status" width="160"> 35 <el-table-column :label="language==0?'状态':'State'" align="center" prop="status" width="160">
36 <template #default="{row}"> 36 <template #default="{row}">
37 {{ row.status == 1 ? '已预留' : null }} 37 {{ row.status == 1 ? language == 0 ? '已预留' : 'Reserved' : null }}
38 </template> 38 </template>
39 </el-table-column> 39 </el-table-column>
40 </el-table> 40 </el-table>
......
...@@ -23,8 +23,8 @@ import AirportPickupTable from '@/viewsPc/match/components/airportPickupTable.vu ...@@ -23,8 +23,8 @@ import AirportPickupTable from '@/viewsPc/match/components/airportPickupTable.vu
23 const language = useStorage('language', 0) 23 const language = useStorage('language', 0)
24 const active = ref(0) 24 const active = ref(0)
25 const menu = ref([ 25 const menu = ref([
26 {cn: '酒店预订查询', active: 0, en: 'Hotel reservation Enquiries'}, 26 {cn: '酒店预订查询', active: 0, en: 'Hotel Reservation Summary'},
27 {cn: '接送机预订查询', active: 1, en: 'Transfer reservation inquiry'} 27 {cn: '接送机预订查询', active: 1, en: 'Transfer Reservation Summary'}
28 ]) 28 ])
29 29
30 30
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!