|
|
|
@ -163,7 +163,7 @@ |
|
|
|
<template slot-scope="scope"> |
|
|
|
<div class="f-flex"> |
|
|
|
<span class="down f-right8">{{ |
|
|
|
scope.row.synthesisScore |
|
|
|
scope.row.synthesisScore ? scope.row.synthesisScore : '--' |
|
|
|
}}</span> |
|
|
|
<div> |
|
|
|
<img |
|
|
|
@ -201,7 +201,7 @@ |
|
|
|
<template slot-scope="scope"> |
|
|
|
<div class="f-flex"> |
|
|
|
<span class="down f-right8">{{ |
|
|
|
scope.row.culturalFacilityScore |
|
|
|
scope.row.culturalFacilityScore ? scope.row.culturalFacilityScore : '--' |
|
|
|
}}</span> |
|
|
|
<div> |
|
|
|
<img |
|
|
|
@ -243,7 +243,7 @@ |
|
|
|
<template slot-scope="scope"> |
|
|
|
<div class="f-flex"> |
|
|
|
<span class="down f-right8">{{ |
|
|
|
scope.row.basicEducationScore |
|
|
|
scope.row.basicEducationScore ? scope.row.basicEducationScore : '--' |
|
|
|
}}</span> |
|
|
|
<div> |
|
|
|
<img |
|
|
|
@ -283,7 +283,7 @@ |
|
|
|
<template slot-scope="scope"> |
|
|
|
<div class="f-flex"> |
|
|
|
<span class="down f-right8">{{ |
|
|
|
scope.row.sportsFacilityScore |
|
|
|
scope.row.sportsFacilityScore ? scope.row.sportsFacilityScore : '--' |
|
|
|
}}</span> |
|
|
|
<div> |
|
|
|
<img |
|
|
|
@ -323,7 +323,7 @@ |
|
|
|
<template slot-scope="scope"> |
|
|
|
<div class="f-flex"> |
|
|
|
<span class="down f-right8">{{ |
|
|
|
scope.row.ecologicalEnvScore |
|
|
|
scope.row.ecologicalEnvScore ? scope.row.ecologicalEnvScore : '--' |
|
|
|
}}</span> |
|
|
|
<div> |
|
|
|
<img |
|
|
|
@ -363,7 +363,7 @@ |
|
|
|
<template slot-scope="scope"> |
|
|
|
<div class="f-flex"> |
|
|
|
<span class="down f-right8">{{ |
|
|
|
scope.row.socialSecurityScore |
|
|
|
scope.row.socialSecurityScore ? scope.row.socialSecurityScore : '--' |
|
|
|
}}</span> |
|
|
|
<div> |
|
|
|
<img |
|
|
|
@ -403,7 +403,7 @@ |
|
|
|
<template slot-scope="scope"> |
|
|
|
<div class="f-flex"> |
|
|
|
<span class="down f-right8">{{ |
|
|
|
scope.row.socialAssistanceScore |
|
|
|
scope.row.socialAssistanceScore ? scope.row.socialAssistanceScore : '--' |
|
|
|
}}</span> |
|
|
|
<div> |
|
|
|
<img |
|
|
|
@ -445,7 +445,7 @@ |
|
|
|
<template slot-scope="scope"> |
|
|
|
<div class="f-flex"> |
|
|
|
<span class="down f-right8">{{ |
|
|
|
scope.row.oldPeopleProvideScore |
|
|
|
scope.row.oldPeopleProvideScore ? scope.row.oldPeopleProvideScore : '--' |
|
|
|
}}</span> |
|
|
|
<div> |
|
|
|
<img |
|
|
|
@ -483,7 +483,7 @@ |
|
|
|
<template slot-scope="scope"> |
|
|
|
<div class="f-flex"> |
|
|
|
<span class="down f-right8">{{ |
|
|
|
scope.row.medicalScore |
|
|
|
scope.row.medicalScore ? scope.row.medicalScore : '--' |
|
|
|
}}</span> |
|
|
|
<div> |
|
|
|
<img |
|
|
|
@ -1162,5 +1162,4 @@ export default { |
|
|
|
color: #999999; |
|
|
|
} |
|
|
|
</style> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|