| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206 | <template>  <view class="main">    <Nav></Nav>    <view class="main-header">      <!-- <uni-title type="h1" align="center" title="门墩儿猎头"></uni-title> -->      <view>我们深知卓越的领导力是企业业绩增长的关键。我们专注于为企业提供精准的人才洞见,助力企业在人才招聘、培养和晋升方面做出明智选择,从而优化高管团队的整体表现,推动企业持续发展。</view>    </view>    <view class="main-panel">        <view class="box" v-for="item in list" :key="item.title">          <text class="top">{{ item.title }}</text>          {{ item.desc }}        </view>      </view>    <view class="main-nav">      <view class="main-nav-item" v-for="item in service" :key="item.id" @tap="handleToDetails('service', item.id)">{{ item.title }}</view>    </view>    <view class="main-body">      <view>        <view class="title">依托在高管寻聘和领导力咨询方面的深厚专业知识,我们的顾问可进行跨行业、跨部门和跨地区的合作,以便更好地服务我们的客户。 我们帮助组织寻找和培养优秀的领导者,提高团队效力,支持战略或文化转型。</view>        <uni-title type="h1" title="我们的顾问" align="center"></uni-title>        <swiper          class="swiper"          circular          :indicator-dots="true"          :autoplay="true"          :interval="2000"          :duration="500"        >          <swiper-item v-for="item in consultant" :key="item.id" @tap="handleToDetails('consultant', item.id)">            <view class="swiper-item">              <image                :src="item.avatar"                mode="heightFix"              />              <text>{{ item.enName }}</text>            </view>          </swiper-item>        </swiper>      </view>      <view>        <uni-title type="h1" title="我们的办公地点" align="center"></uni-title>        <view class="main-body-office">          <view v-for="item in countryOffice" :key="item.name" class="main-body-office-item">            <image              :src="item.url"              mode="widthFix"            />            <view class="text">{{ item.name }}</view>          </view>        </view>      </view>    </view>    <Footer></Footer>  </view></template><!-- 猎头 --><script setup>import Nav from './components/nav'import Footer from './components/contact.vue'// import { ref }  from 'vue'const consultant = [  { country: '苏州', enName: '田森博士(Simon Tian)', id: 'simon', avatar: 'https://minio.citupro.com/dev/menduner/consultant/simon.png' },  { country: '北京', enName: '潘青海先生(Peter Pan)', id: 'peter', avatar: 'https://minio.citupro.com/dev/menduner/consultant/peter.png' },  { country: '北京', enName: '姚嘉庆女士(Julia Yao)', id: 'julia', avatar: 'https://minio.citupro.com/dev/menduner/consultant/julie.png' }]// 数值示例const list = [  { title: '1500家+', desc: '服务企业' },  { title: '70%', desc: '拥有本科及以上学历人群' },  { title: '12种', desc: '涉及行业' }]// 服务const service = [  { title: '高级管理精英甄选', id: 'selection-senior-management-elite' },  { title: '人才发展储备策略', id: 'talent-development-reserve-strategy' },  { title: '管理者能力提升方案', id: 'manager-capability-enhancement-plan' },  { title: '卓越成长轨迹', id: 'excellent-growth-trajectory' },  { title: '高管信誉与资质验证', id: 'senior-management-elite-verification' },  { title: '多样化的人才网络', id: 'diversified-talent-network' }]// 办公地点const countryOffice = [  { name: '苏州', desc: '苏州识喜识谊信息科技有限公司', url: 'https://minio.menduner.com/dev/menduner/suzhou.png' },  { name: '北京', desc: '苏州识喜识谊信息科技有限公司', url: 'https://minio.menduner.com/dev/menduner/beijin.png' },  { name: '广州', desc: '苏州识喜识谊信息科技有限公司', url: 'https://minio.menduner.com/dev/menduner/guangzhou.png' }]const handleToDetails = (type, id) => {  uni.navigateTo({    url: `/pagesB/headhunting/pages/details?type=${type}&key=${id}`  })}</script><style lang="scss" scoped>$rootColor: #00695c;.main {    &-header {    width: 100%;    height: 300rpx;    background: url('https://minio.menduner.com/dev/menduner/banner.png') no-repeat;    background-position: center;    background-size: 100% 100%;    font-weight: 600;    font-size: 24rpx;    color: #FFF;    text-align: center;    padding: 0 40rpx;    line-height: 46rpx;    box-sizing: border-box;    position: relative;    display: flex;    align-items: center;      }  &-panel {    margin: 20px 0;    height: 80rpx;    width: 100%;    // background: rgba(255, 255, 255, 0.5);    color: $rootColor;    // position: absolute;    // bottom: 0;    // left: 0;    display: flex;    justify-content: space-between;    align-items: center;    font-size: 20rpx;    margin: 20rpx 0;    .box {      flex: 1;      display: flex;      justify-content: center;      flex-direction: column;      font-weight: 600;      align-items: center;      .top {        font-size: 40rpx;      }    }  }  &-nav {    display: flex;    flex-wrap: wrap;    justify-content: space-around;    padding-top: 20rpx;    margin: 20px 0;    &-item {      width: 30%;      font-size: 20rpx;      color: $rootColor;      border: 1px solid $rootColor;      padding: 20rpx 0;      margin-bottom: 20rpx;      display: flex;      align-items: center;      justify-content: center;    }  }  &-body {    margin: 20px 0;    .title {      padding: 40rpx 30rpx;      text-align: center;      font-size: 24rpx;      background: rgba(0,0,0,.1);      color: $rootColor;    }    .swiper {      height: 600rpx;      &-item {        display: flex;        flex-direction: column;        // justify-content: center;        align-items: center;      }    }    &-office {      display: flex;      justify-content: space-around;      &-item {        width: 30%;        position: relative;        image {          width: 100%;        }        .text {          position: absolute;          top: 0;          left: 0;          width: 100%;          height: 100%;          display: flex;          align-items: center;          justify-content: center;          background: rgba(76, 76, 78, 0.6);          font-size: 36rpx;          font-weight: 600;          color: #FFF;        }      }    }  }}</style>
 |