From e3d612a78a572e226cf8b778ac775df9d7225b92 Mon Sep 17 00:00:00 2001 From: lucky Date: Mon, 21 Jun 2021 18:35:11 +0800 Subject: [PATCH] =?UTF-8?q?=E7=9F=A5=E8=AF=86=E5=9F=B9=E8=AE=AD=E4=B8=8E?= =?UTF-8?q?=E7=A7=91=E6=8A=80=E4=BA=BA=E6=89=8D=E6=9C=8D=E5=8A=A1=E5=B9=B3?= =?UTF-8?q?=E5=8F=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/PlatformList/Tutors.vue | 149 +++++++++++++++++++++ src/config/api.js | 9 +- src/views/NewPlatform/Children/Develop.vue | 133 ++++++++++++++++-- 3 files changed, 279 insertions(+), 12 deletions(-) create mode 100644 src/components/PlatformList/Tutors.vue 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; }