Toggle navigation
Toggle navigation
This project
Loading...
Sign in
monitor_v3
/
hg-monitor-web
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Plain Diff
Browse Files
Authored by
wangtao
3 years ago
Commit
afa493aae0d7827795a37c6832d9c6f39b3d6960
2 parents
191c2589
a9dced3e
Merge branch 'master-500-dev' of
http://113.200.75.45:82/monitor_v3/hg-monitor-w…
…eb into master-500-dev
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
57 additions
and
8 deletions
website/assets/css/style.css
website/src/views/concat/index.html
website/src/views/concat/index.js
website/assets/css/style.css
View file @
afa493a
...
...
@@ -2443,4 +2443,23 @@ blockquote:before {
.hot-recruit-box
.hotList
>
a
{
font-size
:
14px
;
color
:
#8C8C8C
;
}
/*加入我们 底部*/
.weFooter
{
width
:
100%
;
background
:
#F3F3F3
;
padding
:
20px
0
;
}
.weFooterColor
{
color
:
#ADADAD
;
}
.weFooterList
{
display
:
grid
;
grid-auto-columns
:
15%
25%
25%
35%
;
grid-auto-rows
:
50%
50%
;
grid-template-areas
:
"header header header header"
"header header header header"
;
}
.mainContent
h5
{
color
:
#686868
;
}
\ No newline at end of file
...
...
website/src/views/concat/index.html
View file @
afa493a
...
...
@@ -89,15 +89,34 @@
</section>
<section
class=
"services-section rel text-center mt-100 mb-80"
>
<div
class=
"container"
>
<!--<section class="services-section rel text-center mt-100 mb-80">-->
<!-- <div class="container">-->
<!-- <div class="row">-->
<!-- <div class="col-lg-12 col-md-12">-->
<!-- <!– <h4><a href="#">合作流程</a></h4>-->
<!-- <p>专业技术顾问,提供一对一服务</p>–>-->
<!-- <div class="service-icon mb-25">-->
<!-- <img src="assets/img/concat/gw.png">-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!--</section>-->
<section
class=
"weFooter sps-three"
>
<div
class=
"mainContent container"
>
<div
class=
"row"
>
<div
class=
"col-lg-12 col-md-12"
>
<!-- <h4><a href="#">合作流程</a></h4>
<p>专业技术顾问,提供一对一服务</p>-->
<div
class=
"service-icon mb-25"
>
<img
src=
"assets/img/concat/gw.png"
>
</div>
<div
class=
"col-lg-8 col-md-12"
>
<h5>
加入鸿果
</h5>
<span
class=
"mb-15 weFooterColor"
>
鸿果科技依托"金税三期"、"互联网+智能化AI+行业应用"的变革时机,充分运用智能化、运维大数据思维,引入AI、算法和业务深度理解,共同打造AIOps生态圈
</span>
<h5
class=
"mt-25 mb-15"
>
热门职位
</h5>
<ul
class=
"weFooterList"
>
<li
class=
"weFooterColor cursor-pointer mb-15"
v-for=
"(item,index) in recruitHot.data"
:key=
"index"
>
<span
@
click=
"routerPath(item.url)"
class=
"border-bottom"
>
{{item.text}}
</span>
</li>
</ul>
</div>
<div
class=
"col-lg-2 col-sm-12 ml-auto"
>
<span
@
click=
"routerPath('sale')"
class=
"btn btn-danger d-inline-block min-width-100"
>
查看更多职位
</span>
</div>
</div>
</div>
...
...
website/src/views/concat/index.js
View file @
afa493a
import
pageInit
from
"../../minixs/pageInit.js"
;
import
{
recruit
}
from
"./../../../assets/img/data/serviceSecond.js"
export
default
{
name
:
'home'
,
template
:
''
,
...
...
@@ -6,7 +7,17 @@ export default {
components
:
{},
props
:
[],
setup
(
props
,
{
attrs
,
slots
,
emit
})
{
const
{
proxy
}
=
Vue
.
getCurrentInstance
()
let
recruitHot
=
Vue
.
ref
();
recruitHot
.
value
=
recruit
().
hot
;
let
routerPath
=
(
val
)
=>
{
proxy
.
$router
.
push
(
'/recruit/'
+
val
)
}
return
{
recruitHot
,
routerPath
}
}
}
...
...
Please
register
or
login
to post a comment