添加达人申请

This commit is contained in:
2020-09-03 11:12:58 +08:00
parent 2da546f193
commit cfda1f7aae
5 changed files with 305 additions and 23 deletions

View File

@@ -467,6 +467,18 @@ export default {
return vm.$u.post("auth/memberUnbindThird", {
third_type: type,
})
},
getIndustryList() {
return vm.$u.post("Expertapply/industryList")
},
getHobbyList() {
return vm.$u.post("Expertapply/hobbyList")
},
// 达人申请
applyExpert({ name, mobile, address, industry, hobby }) {
return vm.$u.post("Expertapply/expertApply", {
name, mobile, address, industry, hobby
})
}
}