|
|
|
|
@ -16,7 +16,7 @@
|
|
|
|
|
<router-link to="/">
|
|
|
|
|
<a
|
|
|
|
|
href="javascript:;"
|
|
|
|
|
:class="routertitleindex === 0 ? 'titleactive' : ''"
|
|
|
|
|
:class="routertitleindex == 0 ? 'titleactive' : ''"
|
|
|
|
|
>首页</a
|
|
|
|
|
></router-link
|
|
|
|
|
>
|
|
|
|
|
@ -25,7 +25,7 @@
|
|
|
|
|
<router-link to="/list" @click.native="toList"
|
|
|
|
|
><a
|
|
|
|
|
href="javascript:;"
|
|
|
|
|
:class="routertitleindex === 1 ? 'titleactive' : ''"
|
|
|
|
|
:class="routertitleindex == 1 ? 'titleactive' : ''"
|
|
|
|
|
>一手职位</a
|
|
|
|
|
></router-link
|
|
|
|
|
>
|
|
|
|
|
@ -33,7 +33,7 @@
|
|
|
|
|
<li>
|
|
|
|
|
<router-link
|
|
|
|
|
to="/mybill"
|
|
|
|
|
:class="routertitleindex === 5 ? 'titleactiveafter' : ''"
|
|
|
|
|
:class="routertitleindex == 5 ? 'titleactive' : ''"
|
|
|
|
|
>我的报名
|
|
|
|
|
</router-link>
|
|
|
|
|
</li>
|
|
|
|
|
@ -406,11 +406,12 @@ export default {
|
|
|
|
|
if (this.$route.fullPath == "/main") {
|
|
|
|
|
if (
|
|
|
|
|
navigationBar.getBoundingClientRect().top <= 0 &&
|
|
|
|
|
aboutBill.getBoundingClientRect().top < 84
|
|
|
|
|
aboutBill.getBoundingClientRect().top < 85
|
|
|
|
|
) {
|
|
|
|
|
navigationBar.style.position = "fixed";
|
|
|
|
|
navigationBar.style.top = "0px";
|
|
|
|
|
navigationBar.style.boxShadow = "0 0 10px 0 #eee";
|
|
|
|
|
navigationBar.style.width = "1920px";
|
|
|
|
|
} else if (
|
|
|
|
|
navigationBar.getBoundingClientRect().top == 0 &&
|
|
|
|
|
aboutBill.getBoundingClientRect().top >= 84
|
|
|
|
|
@ -420,6 +421,7 @@ export default {
|
|
|
|
|
navigationBar.style.top = "unset";
|
|
|
|
|
navigationBar.style.bottom = "0px";
|
|
|
|
|
navigationBar.style.boxShadow = "none";
|
|
|
|
|
navigationBar.style.width = "1200px";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
@ -456,7 +458,7 @@ export default {
|
|
|
|
|
if (data.status === 200) {
|
|
|
|
|
this.jobMainList = disposeJobListData(data.data.recordList);
|
|
|
|
|
this.formvalue.total = data.data.recordCount;
|
|
|
|
|
// console.log(this.jobMainList);
|
|
|
|
|
console.log(this.jobMainList);
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.info("数据获取失败");
|
|
|
|
|
}
|
|
|
|
|
|