Merge branch 'master-500-dev' of http://113.200.75.45:82/monitor_v3/hg-monitor-w…
…eb into master-500-dev-xwx
Showing
3 changed files
with
57 additions
and
8 deletions
@@ -2443,4 +2443,23 @@ blockquote:before { | @@ -2443,4 +2443,23 @@ blockquote:before { | ||
2443 | .hot-recruit-box .hotList>a{ | 2443 | .hot-recruit-box .hotList>a{ |
2444 | font-size: 14px; | 2444 | font-size: 14px; |
2445 | color: #8C8C8C; | 2445 | color: #8C8C8C; |
2446 | +} | ||
2447 | +/*加入我们 底部*/ | ||
2448 | +.weFooter{ | ||
2449 | + width: 100%; | ||
2450 | + background: #F3F3F3; | ||
2451 | + padding: 20px 0; | ||
2452 | +} | ||
2453 | +.weFooterColor{ | ||
2454 | + color: #ADADAD; | ||
2455 | +} | ||
2456 | +.weFooterList{ | ||
2457 | + display: grid; | ||
2458 | + grid-auto-columns: 15% 25% 25% 35%; | ||
2459 | + grid-auto-rows: 50% 50%; | ||
2460 | + grid-template-areas: "header header header header" | ||
2461 | + "header header header header"; | ||
2462 | +} | ||
2463 | +.mainContent h5{ | ||
2464 | + color: #686868; | ||
2446 | } | 2465 | } |
@@ -89,15 +89,34 @@ | @@ -89,15 +89,34 @@ | ||
89 | </section> | 89 | </section> |
90 | 90 | ||
91 | 91 | ||
92 | -<section class="services-section rel text-center mt-100 mb-80"> | ||
93 | - <div class="container"> | 92 | +<!--<section class="services-section rel text-center mt-100 mb-80">--> |
93 | +<!-- <div class="container">--> | ||
94 | +<!-- <div class="row">--> | ||
95 | +<!-- <div class="col-lg-12 col-md-12">--> | ||
96 | +<!-- <!– <h4><a href="#">合作流程</a></h4>--> | ||
97 | +<!-- <p>专业技术顾问,提供一对一服务</p>–>--> | ||
98 | +<!-- <div class="service-icon mb-25">--> | ||
99 | +<!-- <img src="assets/img/concat/gw.png">--> | ||
100 | +<!-- </div>--> | ||
101 | +<!-- </div>--> | ||
102 | +<!-- </div>--> | ||
103 | +<!-- </div>--> | ||
104 | +<!--</section>--> | ||
105 | +<section class="weFooter sps-three"> | ||
106 | + <div class="mainContent container"> | ||
94 | <div class="row"> | 107 | <div class="row"> |
95 | - <div class="col-lg-12 col-md-12"> | ||
96 | - <!-- <h4><a href="#">合作流程</a></h4> | ||
97 | - <p>专业技术顾问,提供一对一服务</p>--> | ||
98 | - <div class="service-icon mb-25"> | ||
99 | - <img src="assets/img/concat/gw.png"> | ||
100 | - </div> | 108 | + <div class="col-lg-8 col-md-12"> |
109 | + <h5>加入鸿果</h5> | ||
110 | + <span class="mb-15 weFooterColor">鸿果科技依托"金税三期"、"互联网+智能化AI+行业应用"的变革时机,充分运用智能化、运维大数据思维,引入AI、算法和业务深度理解,共同打造AIOps生态圈</span> | ||
111 | + <h5 class="mt-25 mb-15">热门职位</h5> | ||
112 | + <ul class="weFooterList"> | ||
113 | + <li class="weFooterColor cursor-pointer mb-15" v-for="(item,index) in recruitHot.data" :key="index"> | ||
114 | + <span @click="routerPath(item.url)" class="border-bottom">{{item.text}}</span> | ||
115 | + </li> | ||
116 | + </ul> | ||
117 | + </div> | ||
118 | + <div class="col-lg-2 col-sm-12 ml-auto"> | ||
119 | + <span @click="routerPath('sale')" class="btn btn-danger d-inline-block min-width-100">查看更多职位</span> | ||
101 | </div> | 120 | </div> |
102 | </div> | 121 | </div> |
103 | </div> | 122 | </div> |
1 | import pageInit from "../../minixs/pageInit.js"; | 1 | import pageInit from "../../minixs/pageInit.js"; |
2 | +import {recruit} from "./../../../assets/img/data/serviceSecond.js" | ||
2 | export default { | 3 | export default { |
3 | name: 'home', | 4 | name: 'home', |
4 | template: '', | 5 | template: '', |
@@ -6,7 +7,17 @@ export default { | @@ -6,7 +7,17 @@ export default { | ||
6 | components: {}, | 7 | components: {}, |
7 | props: [], | 8 | props: [], |
8 | setup(props, {attrs, slots, emit}) { | 9 | setup(props, {attrs, slots, emit}) { |
10 | + const {proxy} = Vue.getCurrentInstance() | ||
11 | + let recruitHot = Vue.ref(); | ||
12 | + recruitHot.value = recruit().hot; | ||
9 | 13 | ||
14 | + let routerPath=(val)=>{ | ||
15 | + proxy.$router.push('/recruit/'+val) | ||
16 | + } | ||
17 | + return{ | ||
18 | + recruitHot, | ||
19 | + routerPath | ||
20 | + } | ||
10 | } | 21 | } |
11 | 22 | ||
12 | } | 23 | } |
-
Please register or login to post a comment