diff --git a/src/components/CoreOrgan/CoreOrgan.vue b/src/components/CoreOrgan/CoreOrgan.vue index 169ca11..e8b5f90 100644 --- a/src/components/CoreOrgan/CoreOrgan.vue +++ b/src/components/CoreOrgan/CoreOrgan.vue @@ -55,7 +55,7 @@ export default { } } catch (error) { // throw new Error(`SignIn.vue method getCode: ${error}`); - console.log(error); + // console.log(error); } }, }, diff --git a/src/components/Introduce/AddShopping.vue b/src/components/Introduce/AddShopping.vue index 9702f44..d670b64 100644 --- a/src/components/Introduce/AddShopping.vue +++ b/src/components/Introduce/AddShopping.vue @@ -93,7 +93,7 @@ export default { this.WinHeight = window.innerHeight; var d = document.getElementById('ddd'); d.style.top = this.pageY - d.offsetHeight * 0.5 + 'px'; - console.log(d.offsetWidth); + // console.log(d.offsetWidth); d.style.right = this.WinWidth - this.pageX - d.offsetWidth * 0.5 + 'px'; d.style.display = 'block'; setTimeout(() => { diff --git a/src/components/Introduce/IntentionModel.vue b/src/components/Introduce/IntentionModel.vue index 2dc3a68..a9d5002 100644 --- a/src/components/Introduce/IntentionModel.vue +++ b/src/components/Introduce/IntentionModel.vue @@ -186,7 +186,7 @@ export default { }, // 获取验证码 async getCode() { - console.log(111); + // console.log(111); try { const params = { phone: this.platform.tel, @@ -197,7 +197,7 @@ export default { this.getCodeInterval(); } catch (error) { // throw new Error(`SignIn.vue method getCode: ${error}`); - console.log(error); + // console.log(error); } }, diff --git a/src/components/Introduce/SettledModel.vue b/src/components/Introduce/SettledModel.vue index 0a41283..7d0691b 100644 --- a/src/components/Introduce/SettledModel.vue +++ b/src/components/Introduce/SettledModel.vue @@ -271,7 +271,7 @@ export default { }, // 获取验证码 async getCode() { - console.log(111); + // console.log(111); try { const params = { phone: this.platform.tel, @@ -282,7 +282,7 @@ export default { this.getCodeInterval(); } catch (error) { // throw new Error(`SignIn.vue method getCode: ${error}`); - console.log(error); + // console.log(error); } }, // 验证码倒计时 @@ -370,9 +370,9 @@ export default { staffCount: this.platform.staffCount, }, }; - console.log(params); + // console.log(params); const res = await Settled(params); - console.log(res); + // console.log(res); const { code, msg, data } = res.data; if (code === 200) { this.$message.success('申请成功'); @@ -386,11 +386,11 @@ export default { this.platform.isIdCard = false; } else { throw msg; - console.log('失败1'); + // console.log('失败1'); this.confirmLoading = false; } } catch (error) { - console.log('失败2'); + // console.log('失败2'); this.$message.error(error); this.confirmLoading = false; } diff --git a/src/components/PlatformList/Fruit.vue b/src/components/PlatformList/Fruit.vue index f987fa0..43896f7 100644 --- a/src/components/PlatformList/Fruit.vue +++ b/src/components/PlatformList/Fruit.vue @@ -82,7 +82,7 @@ export default { this.total = parseInt(data.total); } } catch (error) { - console.log(error); + // console.log(error); } }, // 点击查看详情 diff --git a/src/components/PlatformList/PlatformList.vue b/src/components/PlatformList/PlatformList.vue index 10c1d0a..ab6e728 100644 --- a/src/components/PlatformList/PlatformList.vue +++ b/src/components/PlatformList/PlatformList.vue @@ -45,7 +45,7 @@ export default { computed: mapState('home', ['listState', 'labList', 'LabIpt', 'insList', 'InsIpt', 'shareCurrent', 'productList', 'productIpt']), watch: { shareCurrent(val) { - console.log(val); + // console.log(val); this.monitor(this.listState); }, labList(val) { @@ -99,7 +99,7 @@ export default { }, created() { this.current = this.shareCurrent; - console.log('this.listState: ', this.listState); + // console.log('this.listState: ', this.listState); if (this.listState === 0) { this.getSear(); } else if (this.listState === 1) { @@ -128,7 +128,7 @@ export default { this.total = parseInt(data.total); } } catch (error) { - console.log(error); + // console.log(error); } }, // 查询实验室(研究院)列表 @@ -149,7 +149,7 @@ export default { this.total = parseInt(data.total); } } catch (error) { - console.log(error); + // console.log(error); } }, // 查询孵化平台产品列表 @@ -170,7 +170,7 @@ export default { this.total = parseInt(data.total); } } catch (error) { - console.log(error); + // console.log(error); } }, // 改变单当前页数 diff --git a/src/components/User/MechanismSignUp.vue b/src/components/User/MechanismSignUp.vue index ba1bed8..548ec3f 100644 --- a/src/components/User/MechanismSignUp.vue +++ b/src/components/User/MechanismSignUp.vue @@ -13,12 +13,7 @@ > - + 高校 初中 @@ -42,32 +37,13 @@ > - - + + - - + + - + - +
- - 重新获取 + + 重新获取
- +
- + 重新发送 {{ interval }} - 获取验证码 + 获取验证码
- 绿谷 - +
-->
立即注册
@@ -219,15 +164,15 @@ export default { e.preventDefault(); this.form.validateFields(async (err, values) => { if (!err) { - console.log('Received values of form: ', values); + // console.log('Received values of form: ', values); try { const { account, nature, fullName, code1, password, phone, smsCode, source } = values; this.info = values; - const params = { account, password, phone, smsCode, source }; + const params = { account, password, phone, smsCode, source: 1 }; await this.signUp(params); this.saveUserMes(); } catch (error) { - console.log(`mechanismSignUp.vue methods handleSignUp: ${error}`); + // console.log(`mechanismSignUp.vue methods handleSignUp: ${error}`); } } }); @@ -238,9 +183,9 @@ export default { async saveUserMes() { try { const { account, nature, fullName, code1, password, phone, smsCode, source } = this.info; - console.log('this.info: ', this.info); + // console.log('this.info: ', this.info); const params = { param: { code: code1, companyName: fullName, mold: nature, name: account, nickname: '', phone, type: 2 } }; - console.log('params: ', params); + // console.log('params: ', params); const res = await saveUserMes(params); const { code, msg, data } = res.data; if (code === 200) { @@ -252,7 +197,7 @@ export default { throw msg; } } catch (error) { - console.log(`mechanismSignUp.vue methods saveUserMes: ${error}`); + // console.log(`mechanismSignUp.vue methods saveUserMes: ${error}`); } }, }, diff --git a/src/components/User/PersonalSignUp.vue b/src/components/User/PersonalSignUp.vue index f58b0af..7899adb 100644 --- a/src/components/User/PersonalSignUp.vue +++ b/src/components/User/PersonalSignUp.vue @@ -22,31 +22,13 @@ >
- - + + - - + + - + - +
- - 重新获取 + + 重新获取
- +
- + 重新发送 {{ interval }} - 获取验证码 + 获取验证码
- 绿谷 - +
-->
立即注册
@@ -199,15 +150,15 @@ export default { e.preventDefault(); this.form.validateFields(async (err, values) => { if (!err) { - console.log('Received values of form: ', values); + // console.log('Received values of form: ', values); try { const { account, nickname, password, phone, smsCode, source } = values; this.info = values; - const params = { account, password, phone, smsCode, source }; + const params = { account, password, phone, smsCode, source: 1 }; await this.signUp(params); this.saveUserMes(); } catch (error) { - console.log(`personalSignUp.vue methods handleSignUp: ${error}`); + // console.log(`personalSignUp.vue methods handleSignUp: ${error}`); } } }); @@ -218,9 +169,9 @@ export default { async saveUserMes() { try { const { account, nickname, password, phone, smsCode, source } = this.info; - console.log('this.info: ', this.info); + // console.log('this.info: ', this.info); const params = { param: { name: account, nickname, phone, type: 1 } }; - console.log('params: ', params); + // console.log('params: ', params); const res = await saveUserMes(params); const { code, msg, data } = res.data; if (code === 200) { @@ -232,7 +183,7 @@ export default { throw msg; } } catch (error) { - console.log(`personalSignUp.vue methods saveUserMes: ${error}`); + // console.log(`personalSignUp.vue methods saveUserMes: ${error}`); } }, }, diff --git a/src/views/Activity/ActDetails.vue b/src/views/Activity/ActDetails.vue index 5c5d97d..e4e5c29 100644 --- a/src/views/Activity/ActDetails.vue +++ b/src/views/Activity/ActDetails.vue @@ -17,24 +17,22 @@ + +
+
- - 会议主题: - - {{ actDetail.theme }} - - - - {{ actDetail.organization }} - + 会议主题: + {{ actDetail.theme }}
- 主讲嘉宾: + {{ actDetail.organization }} +
+
+ 主讲嘉宾: {{ actDetail.name }}
+
其他事宜:{{ actDetail.other }}
-
-
其他事宜:{{ actDetail.other }}
报名已结束 @@ -56,7 +54,7 @@ export default { created() { // 获取当前时间 var aData = new Date(); - console.log(aData); //Wed Aug 21 2019 10:00:58 GMT+0800 (中国标准时间) + // console.log(aData); //Wed Aug 21 2019 10:00:58 GMT+0800 (中国标准时间) this.nowData = aData.getFullYear() + '-' + @@ -69,7 +67,7 @@ export default { aData.getMinutes() + ':' + aData.getSeconds(); - console.log(this.nowData); //2019-8-20 + // console.log(this.nowData); //2019-8-20 }, methods: {}, }; @@ -109,10 +107,9 @@ export default { } .policy-info { - height: 150px; - line-height: 50px; + height: 76px; + line-height: 76px; text-align: center; - margin-bottom: 50px; } .policy-content { @@ -156,5 +153,9 @@ export default { .policy-other { margin: 50px 25px; + font-size: 16px; + color: rgba(0, 0, 0, 0.65); + font-weight: 400; + font-family: Microsoft YaHei; } diff --git a/src/views/Activity/Activity.vue b/src/views/Activity/Activity.vue index 5e00029..2d46cf5 100644 --- a/src/views/Activity/Activity.vue +++ b/src/views/Activity/Activity.vue @@ -12,14 +12,7 @@ 讲座 沙龙 - +
@@ -37,10 +30,7 @@ 地点:{{ item.address }}

- 报名已结束 + 报名已结束

@@ -102,7 +92,7 @@ export default { // 获取当前时间 var aData = new Date(); - console.log(aData); //Wed Aug 21 2019 10:00:58 GMT+0800 (中国标准时间) + // console.log(aData); //Wed Aug 21 2019 10:00:58 GMT+0800 (中国标准时间) this.nowData = aData.getFullYear() + '-' + @@ -115,7 +105,7 @@ export default { aData.getMinutes() + ':' + aData.getSeconds(); - console.log(this.nowData); //2019-8-20 + // console.log(this.nowData); //2019-8-20 }, methods: { ...mapMutations('home', ['setActList', 'setActIpCon', 'setActCurrent', 'setActDetail']), @@ -138,7 +128,7 @@ export default { this.total = parseInt(data.total); } } catch (error) { - console.log(error); + // console.log(error); } }, // 改变当前所选类型 @@ -146,10 +136,10 @@ export default { this.aList = []; if (this.sta[index] === 0) { this.sta[index] = 1; - console.log(this.sta); + // console.log(this.sta); } else { this.sta[index] = 0; - console.log(this.sta); + // console.log(this.sta); } if (this.sta.ly === 1) { this.aList = this.aList.concat(0); @@ -183,9 +173,9 @@ export default { var time1 = date.getTime(); var time2 = date.valueOf(); var time3 = Date.parse(date); - console.log(time1); //1586254138000 - console.log(time2); //1586254138000 - console.log(time3); //1586254138000 + // console.log(time1); //1586254138000 + // console.log(time2); //1586254138000 + // console.log(time3); //1586254138000 }, }, }; diff --git a/src/views/Activity/components/Enroll.vue b/src/views/Activity/components/Enroll.vue index 70ab56a..9b12796 100644 --- a/src/views/Activity/components/Enroll.vue +++ b/src/views/Activity/components/Enroll.vue @@ -2,110 +2,44 @@
立即报名 - + - + - + - -
+ +
- +
- + - - + + - +
- + 获取验证码
- +
- 重新发送 {{ interval }} - 获取验证码 + 重新发送 {{ interval }} + 获取验证码
@@ -249,7 +183,7 @@ export default { peoples: people, }, }; - console.log('params: ', params); + // console.log('params: ', params); const res = await apply(params); const { code, msg, data } = res.data; if (code === 200) { @@ -271,7 +205,7 @@ export default { }, // 获取验证码 async getCode() { - console.log(111); + // console.log(111); try { const params = { phone: this.platform.tel, @@ -282,7 +216,7 @@ export default { this.getCodeInterval(); } catch (error) { // throw new Error(`SignIn.vue method getCode: ${error}`); - console.log(error); + // console.log(error); } }, diff --git a/src/views/Cart/Cart.vue b/src/views/Cart/Cart.vue index 26331ae..9d0a31c 100644 --- a/src/views/Cart/Cart.vue +++ b/src/views/Cart/Cart.vue @@ -23,14 +23,8 @@
-

{{ list.type === 0 ? '服务' : list.type === 1 ? '设备' : '成果' }}

-
+

{{ list.type === 0 ? '服务' : list.type === 1 ? '设备' : '成果' }}

+

{{ item.name }}

@@ -40,12 +34,7 @@
提交 - +
@@ -106,7 +95,7 @@ export default { this.cart = data; } } catch (error) { - console.log(error); + // console.log(error); } }, diff --git a/src/views/Community/ComDetails.vue b/src/views/Community/ComDetails.vue index d08a6b0..987978d 100644 --- a/src/views/Community/ComDetails.vue +++ b/src/views/Community/ComDetails.vue @@ -6,17 +6,9 @@
- + {{ postDetail.userName }} - + {{ postDetail.createdTime }} @@ -30,12 +22,7 @@

- + {{ item.userName }} {{ item.creatTime }}

@@ -101,11 +88,11 @@ export default { this.$message.success('评论成功'); this.getData(); } else { - console.log(msg); + // console.log(msg); this.$message.error('评论失败'); } } catch (error) { - console.log(error); + // console.log(error); this.$message.error('评论失败'); } }, diff --git a/src/views/Community/Community.vue b/src/views/Community/Community.vue index b7568d8..89d68cf 100644 --- a/src/views/Community/Community.vue +++ b/src/views/Community/Community.vue @@ -130,14 +130,14 @@ export default { const res = await selComment(params); const { msg, data, code } = res.data; if (code === 200) { - console.log(data); + // console.log(data); this.lists = data.list; this.total = parseInt(data.total); } else { - console.log(msg); + // console.log(msg); } } catch (error) { - console.log(error); + // console.log(error); } }, // 改变单当前页数 diff --git a/src/views/FirstPage/FirstPage.vue b/src/views/FirstPage/FirstPage.vue index 7944274..71039b0 100644 --- a/src/views/FirstPage/FirstPage.vue +++ b/src/views/FirstPage/FirstPage.vue @@ -11,12 +11,7 @@ -
+
{{ platform.firstName }}
@@ -164,9 +159,9 @@ export default { const res = await frontSearchFriend(params); const { data, code, msg } = res.data; if (code === 200) { - console.log(data); + // console.log(data); } else { - console.log(msg); + // console.log(msg); } }, @@ -183,9 +178,9 @@ export default { const res = await frontSearchCompany(params); const { data, code, msg } = res.data; if (code === 200) { - console.log(data); + // console.log(data); } else { - console.log(msg); + // console.log(msg); } }, diff --git a/src/views/IncubationPlatform/Children/Products.vue b/src/views/IncubationPlatform/Children/Products.vue index e01e37b..353c1b2 100644 --- a/src/views/IncubationPlatform/Children/Products.vue +++ b/src/views/IncubationPlatform/Children/Products.vue @@ -16,16 +16,11 @@ @click="choose(index)" class="ins-name" v-for="(item, index) in productLists" - >{{ item.name }} + >{{ item.name }}
- +
@@ -90,7 +85,7 @@ export default { } } } catch (error) { - console.log(error); + // console.log(error); } }, diff --git a/src/views/IncubationPlatform/Children/Services.vue b/src/views/IncubationPlatform/Children/Services.vue index ee8f3ce..1afb5df 100644 --- a/src/views/IncubationPlatform/Children/Services.vue +++ b/src/views/IncubationPlatform/Children/Services.vue @@ -42,94 +42,36 @@ v-show="total > 8" />
- + - + - + - - + + - +
- + 获取验证码
- +
- 重新发送 {{ interval }} - 获取验证码 + 重新发送 {{ interval }} + 获取验证码
- - + + - - - 点击上传附件 - + + 点击上传附件
@@ -257,13 +191,13 @@ export default { this.list = data; } } catch (error) { - console.log(data); + // console.log(data); } }, // 查看 服务 详情 jump(id) { - console.log(id); + // console.log(id); this.setServiceArr([]); this.setServiceArr(this.arr); this.$router.push({ @@ -343,7 +277,7 @@ export default { }, // 获取验证码 async getCode() { - console.log(111); + // console.log(111); try { const params = { phone: this.platform.tel, @@ -354,7 +288,7 @@ export default { this.getCodeInterval(); } catch (error) { // throw new Error(`SignIn.vue method getCode: ${error}`); - console.log(error); + // console.log(error); } }, diff --git a/src/views/IncubationPlatform/components/AddModel.vue b/src/views/IncubationPlatform/components/AddModel.vue index e481408..f465a4d 100644 --- a/src/views/IncubationPlatform/components/AddModel.vue +++ b/src/views/IncubationPlatform/components/AddModel.vue @@ -178,7 +178,7 @@ export default { }, // 获取验证码 async getCode() { - console.log(111); + // console.log(111); try { const params = { phone: this.platform.tel, @@ -189,7 +189,7 @@ export default { this.getCodeInterval(); } catch (error) { // throw new Error(`SignIn.vue method getCode: ${error}`); - console.log(error); + // console.log(error); } }, diff --git a/src/views/Industry/Children/Serve.vue b/src/views/Industry/Children/Serve.vue index 0f1513b..c35b977 100644 --- a/src/views/Industry/Children/Serve.vue +++ b/src/views/Industry/Children/Serve.vue @@ -238,7 +238,7 @@ export default { }, // 获取验证码 async getCode() { - console.log(111); + // console.log(111); try { const params = { phone: this.platform.tel, @@ -249,7 +249,7 @@ export default { this.getCodeInterval(); } catch (error) { // throw new Error(`SignIn.vue method getCode: ${error}`); - console.log(error); + // console.log(error); } }, diff --git a/src/views/ItInformation/ItDetails.vue b/src/views/ItInformation/ItDetails.vue index 755c415..a046a16 100644 --- a/src/views/ItInformation/ItDetails.vue +++ b/src/views/ItInformation/ItDetails.vue @@ -6,11 +6,7 @@
- + {{ actDetail.time }} @@ -34,7 +30,7 @@ export default { created() { // 获取当前时间 var aData = new Date(); - console.log(aData); //Wed Aug 21 2019 10:00:58 GMT+0800 (中国标准时间) + // console.log(aData); //Wed Aug 21 2019 10:00:58 GMT+0800 (中国标准时间) this.nowData = aData.getFullYear() + '-' + @@ -47,7 +43,7 @@ export default { aData.getMinutes() + ':' + aData.getSeconds(); - console.log(this.nowData); //2019-8-20 + // console.log(this.nowData); //2019-8-20 }, methods: {}, }; diff --git a/src/views/ItInformation/ItInformation.vue b/src/views/ItInformation/ItInformation.vue index 4e51463..6679b81 100644 --- a/src/views/ItInformation/ItInformation.vue +++ b/src/views/ItInformation/ItInformation.vue @@ -71,7 +71,7 @@ export default { this.lists[i].time = this.$moment(parseInt(this.lists[i].time) * 1000).format('YYYY-MM-DD'); } } else { - console.log(msg); + // console.log(msg); } } catch (error) { this.$message.error(error); diff --git a/src/views/NewPlatform/Children/AchDet.vue b/src/views/NewPlatform/Children/AchDet.vue index 6b2b6cc..06a8411 100644 --- a/src/views/NewPlatform/Children/AchDet.vue +++ b/src/views/NewPlatform/Children/AchDet.vue @@ -87,11 +87,11 @@ export default { const res = await selResMes(params); const { code, data, msg } = res.data; if (code === 200) { - console.log(data); + // console.log(data); this.obj = data; } } catch (error) { - console.log(error); + // console.log(error); } }, }, diff --git a/src/views/NewPlatform/Children/Service.vue b/src/views/NewPlatform/Children/Service.vue index 2397d56..ca667bc 100644 --- a/src/views/NewPlatform/Children/Service.vue +++ b/src/views/NewPlatform/Children/Service.vue @@ -225,7 +225,7 @@ export default { this.list = data; } } catch (error) { - console.log(data); + // console.log(data); } }, // 查看 服务 详情 @@ -310,7 +310,7 @@ export default { }, // 获取验证码 async getCode() { - console.log(111); + // console.log(111); try { const params = { phone: this.platform.tel, @@ -321,7 +321,7 @@ export default { this.getCodeInterval(); } catch (error) { // throw new Error(`SignIn.vue method getCode: ${error}`); - console.log(error); + // console.log(error); } }, diff --git a/src/views/NewPlatform/Children/ServiceDet.vue b/src/views/NewPlatform/Children/ServiceDet.vue index 7bd4055..9c0fee1 100644 --- a/src/views/NewPlatform/Children/ServiceDet.vue +++ b/src/views/NewPlatform/Children/ServiceDet.vue @@ -3,7 +3,7 @@
绿谷生物 - + {{ item.name }} @@ -63,11 +63,11 @@ export default { const res = await selContent(params); const { code, msg, data } = res.data; if (code === 200) { - console.log(data); + // console.log(data); this.obj = data; } } catch (error) { - console.log(error); + // console.log(error); } }, }, diff --git a/src/views/NewPlatform/Children/Share.vue b/src/views/NewPlatform/Children/Share.vue index fb56997..e72881c 100644 --- a/src/views/NewPlatform/Children/Share.vue +++ b/src/views/NewPlatform/Children/Share.vue @@ -15,16 +15,11 @@ @click="choose(index, 0)" class="ins-name" v-for="(item, index) in laboratory" - >{{ item.name }} + >{{ item.name }}
- +
@@ -36,16 +31,11 @@ @click="choose(index, 1)" class="ins-name" v-for="(item, index) in instrument" - >{{ item.name }} + >{{ item.name }}
- +
@@ -130,7 +120,7 @@ export default { } } } catch (error) { - console.log(error); + // console.log(error); } }, // 选中类型时触发 diff --git a/src/views/NewPlatform/Children/ShareChild/InsDet.vue b/src/views/NewPlatform/Children/ShareChild/InsDet.vue index 83b4126..8a0f3db 100644 --- a/src/views/NewPlatform/Children/ShareChild/InsDet.vue +++ b/src/views/NewPlatform/Children/ShareChild/InsDet.vue @@ -125,7 +125,7 @@ export default { this.obj = data; } } catch (error) { - console.log(error); + // console.log(error); } }, @@ -136,11 +136,11 @@ export default { const res = await selProductMes(params); const { code, data, msg } = res.data; if (code === 200) { - console.log(data); + // console.log(data); this.obj = data; } } catch (error) { - console.log(error); + // console.log(error); } }, }, diff --git a/src/views/NewPlatform/Children/ShareChild/Institute.vue b/src/views/NewPlatform/Children/ShareChild/Institute.vue index c900048..ada0872 100644 --- a/src/views/NewPlatform/Children/ShareChild/Institute.vue +++ b/src/views/NewPlatform/Children/ShareChild/Institute.vue @@ -21,8 +21,8 @@

了解更多→

-

人才团队带头人情况

-
+

人才团队带头人情况

+

姓名

性别

@@ -36,21 +36,21 @@

工作单位

研究方向

-
-

{{ obj.name }}

+
+

{{ teamHead.name }}

- - + +

-

{{ obj.famousFamily }}

-

{{ obj.birthday }}

-

{{ obj.education }}

-

{{ obj.position }}

-

{{ obj.major }}

-

{{ obj.professional }}

-

{{ obj.teamName }}

-

{{ obj.workUnit }}

-

{{ obj.direction }}

+

{{ teamHead.famousFamily }}

+

{{ teamHead.birthday }}

+

{{ teamHead.education }}

+

{{ teamHead.position }}

+

{{ teamHead.major }}

+

{{ teamHead.professional }}

+

{{ teamHead.teamName }}

+

{{ teamHead.workUnit }}

+

{{ teamHead.direction }}

团队成员信息

@@ -65,7 +65,7 @@
-
{{ item.name }}
+
{{ item.tmName }}
@@ -102,6 +102,19 @@ export default { { name: '科技资源开放共享服务平台', url: '/NewPlatform/Share' }, { name: '研究院详情', url: '' }, ], + teamHead: { + name: '', + gender: '', + famousFamily: '', + birthday: '', + education: '', + position: '', + major: '', + professional: '', + teamName: '', + workUnit: '', + direction: '', + }, obj: null, list: [], description: '', @@ -147,7 +160,7 @@ export default { } } } catch (error) { - console.log(error); + // console.log(error); } }, // 获取当前研究院(实验室)下的团队详情 @@ -157,12 +170,23 @@ export default { const res = await teamSearch(params); const { code, msg, data } = res.data; if (code === 200) { + this.teamHead.name = data[0].name; + this.teamHead.gender = data[0].gender; + this.teamHead.famousFamily = data[0].famousFamily; + this.teamHead.birthday = data[0].birthday; + this.teamHead.education = data[0].education; + this.teamHead.position = data[0].position; + this.teamHead.major = data[0].major; + this.teamHead.professional = data[0].professional; + this.teamHead.teamName = data[0].teamName; + this.teamHead.workUnit = data[0].workUnit; + this.teamHead.direction = data[0].direction; if (data && data[0].teamMemberList.length > 0) { this.obj = data[0]; } } } catch (error) { - console.log(error); + // console.log(error); } }, // 查看 研究院/仪器 详情 diff --git a/src/views/NewPlatform/Children/Transfer.vue b/src/views/NewPlatform/Children/Transfer.vue index 59ee754..e8abcb1 100644 --- a/src/views/NewPlatform/Children/Transfer.vue +++ b/src/views/NewPlatform/Children/Transfer.vue @@ -15,16 +15,11 @@ @click="choose(index)" class="ins-name" v-for="(item, index) in list" - >{{ item.name }} + >{{ item.name }}
- +
@@ -83,10 +78,10 @@ export default { for (var i = 0; i < this.list.length; i++) { this.list[i].isActive = false; } - console.log(this.list); + // console.log(this.list); } } catch (error) { - console.log(error); + // console.log(error); } }, // 点击搜索 diff --git a/src/views/NewPlatform/Children/components/DeEnt.vue b/src/views/NewPlatform/Children/components/DeEnt.vue index d3e6795..4c07568 100644 --- a/src/views/NewPlatform/Children/components/DeEnt.vue +++ b/src/views/NewPlatform/Children/components/DeEnt.vue @@ -41,14 +41,12 @@
-->
-
-

{{ item.typeOfTech===0 ? '高校' : item.typeOfTech===1 ? '院所' : '企业' }}

+
+

{{ item.typeOfTech === 0 ? '高校' : item.typeOfTech === 1 ? '院所' : '企业' }}

@@ -100,7 +98,7 @@ export default { arr.push(item); } } - console.log('arr: ', arr); + // console.log('arr: ', arr); return arr; } return arr; diff --git a/src/views/NewPlatform/components/NewModel.vue b/src/views/NewPlatform/components/NewModel.vue index b042f05..6f9212d 100644 --- a/src/views/NewPlatform/components/NewModel.vue +++ b/src/views/NewPlatform/components/NewModel.vue @@ -1,51 +1,20 @@