diff --git a/pages/projectInfo/projectInfo.vue b/pages/projectInfo/projectInfo.vue index b484f55..7e2d6b1 100644 --- a/pages/projectInfo/projectInfo.vue +++ b/pages/projectInfo/projectInfo.vue @@ -95,7 +95,7 @@ 公司地址:{{info.companyAddress || '暂无'}} --> - 工作地址:{{cityNamed || '暂无'}} + 工作地址:{{info.jobAddress || cityNamed || '暂无'}} 详细地址:{{info.address || '暂无'}} diff --git a/pages/projectInfo/userrecruitInfo.vue b/pages/projectInfo/userrecruitInfo.vue index 7b6bf67..8bd5bf8 100644 --- a/pages/projectInfo/userrecruitInfo.vue +++ b/pages/projectInfo/userrecruitInfo.vue @@ -95,7 +95,7 @@ 公司地址:{{info.companyAddress || '暂无'}} --> - 工作地址:{{cityNamed || '暂无'}} + 工作地址:{{info.jobAddress || cityNamed || '暂无'}} 详细地址:{{info.address || '暂无'}} diff --git a/pages/projectInfo/userrecruitWorkInfo.vue b/pages/projectInfo/userrecruitWorkInfo.vue index 4f4518a..4ca592a 100644 --- a/pages/projectInfo/userrecruitWorkInfo.vue +++ b/pages/projectInfo/userrecruitWorkInfo.vue @@ -100,7 +100,7 @@ 座机号:{{info.callNumber}} --> - 工作地址:{{`${info.province}${info.city}${info.county}` || '暂无'}} + 工作地址:{{`${info.province}${info.city}${info.county}` || info.jobAddress || '暂无'}} 详细地址:{{info.address || '暂无'}} diff --git a/pages/projectInfo/workInfo.vue b/pages/projectInfo/workInfo.vue index b05008f..6395c42 100644 --- a/pages/projectInfo/workInfo.vue +++ b/pages/projectInfo/workInfo.vue @@ -100,7 +100,7 @@ 座机号:{{info.callNumber}} --> - 工作地址:{{`${info.province}${info.city}${info.county}` || '暂无'}} + 工作地址:{{`${info.province}${info.city}${info.county}` || info.jobAddress || '暂无'}} 详细地址:{{info.address || '暂无'}}