diff --git a/src/components/PlatformList/Tutors.vue b/src/components/PlatformList/Tutors.vue new file mode 100644 index 0000000..b9b97b8 --- /dev/null +++ b/src/components/PlatformList/Tutors.vue @@ -0,0 +1,149 @@ + + + + + diff --git a/src/config/api.js b/src/config/api.js index e61913e..d960535 100644 --- a/src/config/api.js +++ b/src/config/api.js @@ -119,11 +119,14 @@ export const selProduct = params => axios.post(`${product}/selProduct`, params); // 查询 产品列表 详情 export const selProductMes = params => axios.post(`${product}/selProductMes`, params); -// 查询 创业导师 -export const selTeacher = () => axios.post(`${tutorRelated}/selTeacher`); - // 入驻企业申请 export const Settled = params => axios.post(`${greenvalley}/place/apply`, params); // 入驻企业名录查询 export const searchEnt = params => axios.post(`${greenvalley}/place/searchFront`, params); + +// 查询 创业导师 +export const selTeacher = params => axios.post(`${tutorRelated}/selTeacher`, params); + +// 查询 导师分类 +export const selTutor = params => axios.post(`${tutorRelated}/selTutor`, params); diff --git a/src/views/NewPlatform/Children/Develop.vue b/src/views/NewPlatform/Children/Develop.vue index fb4a324..a63acc1 100644 --- a/src/views/NewPlatform/Children/Develop.vue +++ b/src/views/NewPlatform/Children/Develop.vue @@ -4,30 +4,121 @@
-
- +
+
+
+
+ 导师分类: + {{ item.categoryName }} +
+
+ +
+
+
+
@@ -36,11 +127,35 @@ export default { margin: 20px auto; } -.dev-box { +.search-background { + background: rgba(0, 0, 0, 0.02); + border: 1px solid rgba(0, 0, 0, 0.06); + height: auto; + padding: 0 20px; + width: 82%; + margin: 40px auto; + line-height: 44px; +} + +.item-search { width: 100%; + height: 32px; +} + +.ins-title { + font-size: 16px; + font-weight: bold; + color: rgba(0, 0, 0, 0.65); +} + +.ins-name { + font-size: 16px; + color: rgba(0, 0, 0, 0.65); + padding: 0 10px; + cursor: pointer; +} - img { - width: 100%; - } +.act-color { + color: #13ACC4 !important; }