Files
jobslink-user-clent/pageMy/my/resume/addInd.vue
2024-02-02 10:24:54 +08:00

49 lines
902 B
Vue

<template>
<select-template ref="select" title="请选择行业" slo="请选择行业,帮你定制个性化推荐任务信息" :list="skillLevel" @submit="goAdd"></select-template>
</template>
<script>
import {
getTrade
} from '@/api/resume.js'
import selectTemplate from './selectTemplate.vue'
export default {
components: {
selectTemplate
},
data() {
return {
id: "",
skillLevel: [],
}
},
// 在test.vue页面接受参数
onLoad: function({
id
}) {
this.id = id
},
onShow: function() {
this.getData()
},
mounted() {
this.$refs.select.setActiveId(this.tradeId)
},
methods: {
getData: function() {
getTrade().then(res => {
this.skillLevel = res.data.data
})
},
goAdd(res) {
uni.$emit('setInd', res)
uni.navigateBack()
}
}
}
</script>
<style>
</style>