832059ed by zhangmeng

查询优化

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