You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
xuan-pay-cweb/pages/index/business-category/business-category.vue

69 lines
1.2 KiB

<template>
<view>
<jobSelect ref="jobSelect" :listData="listData" @confirem="confiremJob"></jobSelect>
</view>
</template>
<script>
import jobSelect from '../../../components/yunmiao-jobSelect/yunmiao-jobSelect.vue';
export default {
components: {
jobSelect
},
data() {
return {
//行业数据
listData: [{
"id": 1,
"name": "餐饮",
"children": [{
"id": 2,
"name": "服务员",
}, {
"id": 3,
"name": "送餐员",
}, {
"id": 4,
"name": "传菜员",
},
{
"id": 5,
"name": "厨师",
}
]
}, {
"id": 6,
"name": "家政保洁",
"children": [{
"id": 7,
"name": "保洁",
}, {
"id": 8,
"name": "保姆",
}, {
"id": 9,
"name": "月嫂",
}]
}, {
"id": 10,
"name": "美容美发",
"children": [{
"id": 11,
"name": "发型师",
}]
}],
}
},
onLoad() {},
methods: {
confiremJob(e) {
console.log(e);
// uni.navigateBack({})
},
}
}
</script>
<style>
</style>