Browse Source

细节修改

master
lucky 5 years ago
parent
commit
d43c123ea0
  1. 2
      src/views/About/About.vue
  2. 2
      src/views/Challenge/Challenge.vue
  3. 2
      src/views/Develop/Develop.vue
  4. 2
      src/views/Hatch/Hatch.vue
  5. 59
      src/views/ServiceMarket/Children/Institute.vue

2
src/views/About/About.vue

@ -8,7 +8,7 @@
<template>
<div>
<banner :show-page="showPage" />
<div class="inner" style="margin-top: 50px; margin-bottom: 100px">
<div class="inner" style="margin-top: 15px; margin-bottom: 100px">
<left-nav style="float: left" />
<div style="width: 83%; float: right">
<router-view></router-view>

2
src/views/Challenge/Challenge.vue

@ -8,7 +8,7 @@
<template>
<div>
<banner :show-page="61" v-show="showBanner === 1" />
<div class="inner" style="margin-top: 50px; margin-bottom: 100px">
<div class="inner" style="margin-top: 15px; margin-bottom: 100px">
<left-nav style="float: left" />
<div style="width: 83%; float: right">
<router-view></router-view>

2
src/views/Develop/Develop.vue

@ -12,7 +12,7 @@
<banner :show-page="41" />
<div class="inner" style="padding: 0 25px; padding-bottom: 50px">
<!-- <p class="dev-title">维基数智</p> -->
<div class="dev-content line-height-30">
<div class="dev-content line-height-30 mt-8">
<div>
传控科技成立于2015年8月由资深电子产品工程师携自动化和计算机专业相关同仁创立
围绕时物链条构建软硬件开放平台致力于成为智能传感器控制系统解决方案和关键设备供应商

2
src/views/Hatch/Hatch.vue

@ -8,7 +8,7 @@
<template>
<div>
<banner :show-page="showPage" />
<div class="inner" style="margin-top: 50px; margin-bottom: 100px">
<div class="inner" style="margin-top: 15px; margin-bottom: 100px">
<left-nav style="float: left" />
<div style="width: 83%; float: right">
<router-view></router-view>

59
src/views/ServiceMarket/Children/Institute.vue

@ -51,18 +51,27 @@
</div>
</div>
<div class="inner pb-10">
<div class="d-flex flex-row flex-wrap">
<div
:class="(index + 1) % 3 === 0 ? 'mr0' : ''"
:key="index"
class="pic-box pb-10"
v-for="(item,index) in partners"
>
<div class="pic d-flex align-center justify-center">
<img :src="item.url" class="fill-width fill-height" />
<span class="font-bold-18 white--text">{{ item.title }}</span>
<div v-if="partners && partners.length > 0">
<div :key="i" v-for="(list,i) in partners">
<div
class="d-flex flex-row flex-wrap"
v-if="list.backendSearchList && list.backendSearchList.length > 0"
>
<div
:class="(index + 1) % 3 === 0 ? 'mr0' : ''"
:key="index"
class="pic-box pb-10"
v-for="(item,index) in list.backendSearchList"
>
<div class="pic d-flex align-center justify-center">
<img :src="item.logoUrl" class="fill-width fill-height" />
<span class="font-bold-18 white--text">{{ item.name }}</span>
</div>
<div
class="pic-introduce d-flex justify-start flex-column pa-3 px-5"
>{{ item.description }}</div>
</div>
</div>
<div class="pic-introduce d-flex justify-center flex-column px-5">{{ item.introduce }}</div>
</div>
</div>
</div>
@ -81,32 +90,6 @@ export default {
return {
title: '中心介绍',
typeOfPlatform: '研究院',
list: [
{
id: 1,
title: '服务1',
introduce: '研究院的介绍包含研究院,公司架构,和各中心的介绍。各中心介绍包含科创体系',
url: 'https://www.sxwikionline.com/gateway/greenvalley/uploads/upload/20210104/86d502b304944e0c849bff8dcf55ac08.jpg',
},
{
id: 2,
title: '服务1',
introduce: '研究院的介绍包含研究院,公司架构,和各中心的介绍。各中心介绍包含科创体系',
url: 'https://www.sxwikionline.com/gateway/greenvalley/uploads/upload/20210104/86d502b304944e0c849bff8dcf55ac08.jpg',
},
{
id: 3,
title: '服务1',
introduce: '研究院的介绍包含研究院,公司架构,和各中心的介绍。各中心介绍包含科创体系',
url: 'https://www.sxwikionline.com/gateway/greenvalley/uploads/upload/20210104/86d502b304944e0c849bff8dcf55ac08.jpg',
},
{
id: 4,
title: '服务1',
introduce: '研究院的介绍包含研究院,公司架构,和各中心的介绍。各中心介绍包含科创体系',
url: 'https://www.sxwikionline.com/gateway/greenvalley/uploads/upload/20210104/86d502b304944e0c849bff8dcf55ac08.jpg',
},
],
treedata: [
{
//[]
@ -214,7 +197,7 @@ export default {
.pic-introduce {
width: 100%;
height: 94px;
height: 110px;
background: #EBEBEB;
}
}

Loading…
Cancel
Save