flat: 暂存

This commit is contained in:
Apcallover
2024-04-18 11:49:14 +08:00
15 changed files with 1694 additions and 944 deletions

View File

@@ -39,7 +39,7 @@
</view>
<view class="prolist">
<view class="protype">
学历要求{{info.education || '暂无'}}
学历要求{{education[info.education] || '暂无'}}
</view>
</view>
<view class="prolist">
@@ -422,6 +422,14 @@
if (this.info.skillNames) {
return this.info.skillNames.split(',')
}
},
cityNamed() {
console.log('val', this.info, this.area.dic)
if (this.info && this.info.cityId !== -1 && this.area.dic) {
return this.area.dic[this.info.cityId].label
} else {
return '无'
}
}
}
}