|
@@ -249,7 +249,7 @@ class SummaryModel extends BaseModel {
|
|
|
const pArea = baseInfo?.area || ''
|
|
|
const pCity = baseInfo?.city || ''
|
|
|
const pDistrict = baseInfo?.district|| ''
|
|
|
- const projectArea = `${pArea}${pCity}${pDistrict}` || "交付地点交付地点交付地点交付地点"
|
|
|
+ const projectArea = `${pArea}${pCity}${pDistrict}` || ''
|
|
|
list.push(
|
|
|
new SummaryItem('jfArea', '项目地区', projectArea)
|
|
|
)
|
|
@@ -258,7 +258,7 @@ class SummaryModel extends BaseModel {
|
|
|
const jArea = summary?.deliverArea || ''
|
|
|
const jCity = summary?.deliverCity || ''
|
|
|
const jDistrict = summary?.deliverDistrict|| ''
|
|
|
- const jfArea = `${jArea}${jCity}${jDistrict}` || "交付地点交付地点交付地点交付地点"
|
|
|
+ const jfArea = `${jArea}${jCity}${jDistrict}` || ''
|
|
|
list.push(
|
|
|
new SummaryItem('jfArea', '交付地点', jfArea)
|
|
|
)
|