|
|
@ -409,7 +409,7 @@ export default { |
|
|
|
let target = {}; |
|
|
|
target.name = data[i].CountryName; |
|
|
|
target.id = data[i].CountryID; |
|
|
|
target.url = "/"; |
|
|
|
target.url = "/exhibition" + data[i].CountryID; |
|
|
|
arr.push(target); |
|
|
|
} |
|
|
|
this.countries = arr; |
|
|
@ -432,7 +432,7 @@ export default { |
|
|
|
let target = {}; |
|
|
|
target.name = data[i].ExhibitionName; |
|
|
|
target.id = data[i].ExhibitionID; |
|
|
|
target.url = "/"; |
|
|
|
target.url = "/exhibition" + data[i].ExhibitionID; |
|
|
|
arr.push(target); |
|
|
|
} |
|
|
|
this.cards = arr; |
|
|
@ -493,9 +493,9 @@ export default { |
|
|
|
let target = {}; |
|
|
|
target.name = data[i].ExhibitionName; |
|
|
|
target.id = data[i].ExhibitionID; |
|
|
|
target.url = "/"; |
|
|
|
target.url = "/exhibition" + data[i].ExhibitionID; |
|
|
|
arr.push(target); |
|
|
|
} |
|
|
|
} |
|
|
|
this.categories = arr; |
|
|
|
} |
|
|
|
} |
|
|
|