index.vue 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. <template>
  2. <view class="main">
  3. <Nav></Nav>
  4. <view class="main-header">
  5. <!-- <uni-title type="h1" align="center" title="门墩儿猎头"></uni-title> -->
  6. <view>我们深知卓越的领导力是企业业绩增长的关键。我们专注于为企业提供精准的人才洞见,助力企业在人才招聘、培养和晋升方面做出明智选择,从而优化高管团队的整体表现,推动企业持续发展。</view>
  7. </view>
  8. <view class="main-panel">
  9. <view class="box" v-for="item in list" :key="item.title">
  10. <text class="top">{{ item.title }}</text>
  11. {{ item.desc }}
  12. </view>
  13. </view>
  14. <view class="main-nav">
  15. <view class="main-nav-item" v-for="item in service" :key="item.id" @tap="handleToDetails('service', item.id)">{{ item.title }}</view>
  16. </view>
  17. <view class="main-body">
  18. <view>
  19. <view class="title">依托在高管寻聘和领导力咨询方面的深厚专业知识,我们的顾问可进行跨行业、跨部门和跨地区的合作,以便更好地服务我们的客户。 我们帮助组织寻找和培养优秀的领导者,提高团队效力,支持战略或文化转型。</view>
  20. <uni-title type="h1" title="我们的顾问" align="center"></uni-title>
  21. <swiper
  22. class="swiper"
  23. circular
  24. :indicator-dots="true"
  25. :autoplay="true"
  26. :interval="2000"
  27. :duration="500"
  28. >
  29. <swiper-item v-for="item in consultant" :key="item.id" @tap="handleToDetails('consultant', item.id)">
  30. <view class="swiper-item">
  31. <image
  32. :src="item.avatar"
  33. mode="heightFix"
  34. />
  35. <text>{{ item.enName }}</text>
  36. </view>
  37. </swiper-item>
  38. </swiper>
  39. </view>
  40. <view>
  41. <uni-title type="h1" title="我们的办公地点" align="center"></uni-title>
  42. <view class="main-body-office">
  43. <view v-for="item in countryOffice" :key="item.name" class="main-body-office-item">
  44. <image
  45. :src="item.url"
  46. mode="widthFix"
  47. />
  48. <view class="text">{{ item.name }}</view>
  49. </view>
  50. </view>
  51. </view>
  52. </view>
  53. <Footer></Footer>
  54. </view>
  55. </template>
  56. <!-- 猎头 -->
  57. <script setup>
  58. import Nav from './components/nav'
  59. import Footer from './components/contact.vue'
  60. // import { ref } from 'vue'
  61. const consultant = [
  62. { country: '苏州', enName: '田森博士(Simon Tian)', id: 'simon', avatar: 'https://minio.citupro.com/dev/menduner/consultant/simon.png' },
  63. { country: '北京', enName: '潘青海先生(Peter Pan)', id: 'peter', avatar: 'https://minio.citupro.com/dev/menduner/consultant/peter.png' },
  64. { country: '北京', enName: '姚嘉庆女士(Julia Yao)', id: 'julia', avatar: 'https://minio.citupro.com/dev/menduner/consultant/julie.png' }
  65. ]
  66. // 数值示例
  67. const list = [
  68. { title: '1500家+', desc: '服务企业' },
  69. { title: '70%', desc: '拥有本科及以上学历人群' },
  70. { title: '12种', desc: '涉及行业' }
  71. ]
  72. // 服务
  73. const service = [
  74. { title: '高级管理精英甄选', id: 'selection-senior-management-elite' },
  75. { title: '人才发展储备策略', id: 'talent-development-reserve-strategy' },
  76. { title: '管理者能力提升方案', id: 'manager-capability-enhancement-plan' },
  77. { title: '卓越成长轨迹', id: 'excellent-growth-trajectory' },
  78. { title: '高管信誉与资质验证', id: 'senior-management-elite-verification' },
  79. { title: '多样化的人才网络', id: 'diversified-talent-network' }
  80. ]
  81. // 办公地点
  82. const countryOffice = [
  83. { name: '苏州', desc: '苏州识喜识谊信息科技有限公司', url: 'https://minio.menduner.com/dev/menduner/suzhou.png' },
  84. { name: '北京', desc: '苏州识喜识谊信息科技有限公司', url: 'https://minio.menduner.com/dev/menduner/beijin.png' },
  85. { name: '广州', desc: '苏州识喜识谊信息科技有限公司', url: 'https://minio.menduner.com/dev/menduner/guangzhou.png' }
  86. ]
  87. const handleToDetails = (type, id) => {
  88. uni.navigateTo({
  89. url: `/pagesB/headhunting/pages/details?type=${type}&key=${id}`
  90. })
  91. }
  92. </script>
  93. <style lang="scss" scoped>
  94. $rootColor: #00695c;
  95. .main {
  96. &-header {
  97. width: 100%;
  98. height: 300rpx;
  99. background: url('https://minio.menduner.com/dev/menduner/banner.png') no-repeat;
  100. background-position: center;
  101. background-size: 100% 100%;
  102. font-weight: 600;
  103. font-size: 24rpx;
  104. color: #FFF;
  105. text-align: center;
  106. padding: 0 40rpx;
  107. line-height: 46rpx;
  108. box-sizing: border-box;
  109. position: relative;
  110. display: flex;
  111. align-items: center;
  112. }
  113. &-panel {
  114. margin: 20px 0;
  115. height: 80rpx;
  116. width: 100%;
  117. // background: rgba(255, 255, 255, 0.5);
  118. color: $rootColor;
  119. // position: absolute;
  120. // bottom: 0;
  121. // left: 0;
  122. display: flex;
  123. justify-content: space-between;
  124. align-items: center;
  125. font-size: 20rpx;
  126. margin: 20rpx 0;
  127. .box {
  128. flex: 1;
  129. display: flex;
  130. justify-content: center;
  131. flex-direction: column;
  132. font-weight: 600;
  133. align-items: center;
  134. .top {
  135. font-size: 40rpx;
  136. }
  137. }
  138. }
  139. &-nav {
  140. display: flex;
  141. flex-wrap: wrap;
  142. justify-content: space-around;
  143. padding-top: 20rpx;
  144. margin: 20px 0;
  145. &-item {
  146. width: 30%;
  147. font-size: 20rpx;
  148. color: $rootColor;
  149. border: 1px solid $rootColor;
  150. padding: 20rpx 0;
  151. margin-bottom: 20rpx;
  152. display: flex;
  153. align-items: center;
  154. justify-content: center;
  155. }
  156. }
  157. &-body {
  158. margin: 20px 0;
  159. .title {
  160. padding: 40rpx 30rpx;
  161. text-align: center;
  162. font-size: 24rpx;
  163. background: rgba(0,0,0,.1);
  164. color: $rootColor;
  165. }
  166. .swiper {
  167. height: 600rpx;
  168. &-item {
  169. display: flex;
  170. flex-direction: column;
  171. // justify-content: center;
  172. align-items: center;
  173. }
  174. }
  175. &-office {
  176. display: flex;
  177. justify-content: space-around;
  178. &-item {
  179. width: 30%;
  180. position: relative;
  181. image {
  182. width: 100%;
  183. }
  184. .text {
  185. position: absolute;
  186. top: 0;
  187. left: 0;
  188. width: 100%;
  189. height: 100%;
  190. display: flex;
  191. align-items: center;
  192. justify-content: center;
  193. background: rgba(76, 76, 78, 0.6);
  194. font-size: 36rpx;
  195. font-weight: 600;
  196. color: #FFF;
  197. }
  198. }
  199. }
  200. }
  201. }
  202. </style>