|
@@ -198,7 +198,7 @@ export function useFlightInfo(name: string, dataContent: CommonValue[]) {
|
|
const proxyItem = {
|
|
const proxyItem = {
|
|
label: '机场代理',
|
|
label: '机场代理',
|
|
key: 'proxy',
|
|
key: 'proxy',
|
|
- getter: info => (info.proxy === 1 ? '是' : '否'),
|
|
|
|
|
|
+ getter: info => (String(info.proxy) === '1' ? '是' : '否'),
|
|
}
|
|
}
|
|
if (name.includes('International')) {
|
|
if (name.includes('International')) {
|
|
flightInfoItems.value[0].push(proxyItem)
|
|
flightInfoItems.value[0].push(proxyItem)
|