简历更新

This commit is contained in:
dengxin
2024-02-17 14:51:57 +08:00
parent ef2e6dec38
commit bbf1716b18
3 changed files with 164 additions and 67 deletions

View File

@@ -54,7 +54,7 @@
:defaultIds="areaModal.defaultIds" :showToolbar="false" :showBottombar="true"
:labelName="areaModal.labelName"></data-picker>
<!-- 行业 -->
<u-picker :show="industryModal.industryShow" :columns="industryModal.industry"></u-picker>
<u-picker @confirm="pickerIndustryFunc" @cancel="industryModal.industryShow = false" :show="industryModal.industryShow" :columns="industryModal.industry"></u-picker>
</view>
</template>
@@ -283,8 +283,13 @@ export default {
this.areaModal.address = [...new Set(val.value)].join(' / ')
console.log(this.areaModal.address);
this.areaModal.addressShow = false
},
pickerIndustryFunc(val) {
console.log(val);
this.industryModal.industryShow = false
}
}
}
</script>