调整
This commit is contained in:
parent
4575386830
commit
5e50e1d497
@ -6,6 +6,11 @@
|
|||||||
<span class="banner2">实现业务增长和竞争力提升</span>
|
<span class="banner2">实现业务增长和竞争力提升</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="pageroot" style="padding-bottom: 20px">
|
||||||
|
<div class="normalcontentdiv">
|
||||||
|
<div class="normalcontenttext">敬请期待……</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|||||||
@ -5,7 +5,7 @@ import FooterContent from './FooterContent.vue'
|
|||||||
<template>
|
<template>
|
||||||
<div id="mobilebarroot">
|
<div id="mobilebarroot">
|
||||||
<div id="barcontent">
|
<div id="barcontent">
|
||||||
<div class="image-wrapper_2 flex-row justify-between">
|
<div id="weptoplogo" class="image-wrapper_2 flex-row justify-between">
|
||||||
<a href="/">
|
<a href="/">
|
||||||
<img
|
<img
|
||||||
id="image_1"
|
id="image_1"
|
||||||
@ -50,10 +50,27 @@ import FooterContent from './FooterContent.vue'
|
|||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
name: "MobileToolbar",
|
name: "MobileToolbar",
|
||||||
|
mounted() {
|
||||||
|
this.$nextTick(function() {
|
||||||
|
this.contain_toolbartop();
|
||||||
|
});
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
hide_toolbar:function (){
|
hide_toolbar:function (){
|
||||||
document.getElementById('mobilebarroot').style.visibility="collapse";
|
document.getElementById('mobilebarroot').style.visibility="collapse";
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
contain_toolbartop:function (){
|
||||||
|
window.onscroll = function(){
|
||||||
|
if(window.scrollY==0){
|
||||||
|
document.getElementById("weptoplogo")
|
||||||
|
.style.backgroundColor='rgba(0, 0, 0, 0)';
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
document.getElementById("weptoplogo")
|
||||||
|
.style.backgroundColor="black";
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
@ -124,6 +141,9 @@ export default {
|
|||||||
padding-left: 32px;
|
padding-left: 32px;
|
||||||
padding-top: 24px;
|
padding-top: 24px;
|
||||||
padding-right: 32px;
|
padding-right: 32px;
|
||||||
|
position: fixed;
|
||||||
|
top:0px;
|
||||||
|
z-index: 20;
|
||||||
}
|
}
|
||||||
|
|
||||||
#image_1 {
|
#image_1 {
|
||||||
@ -139,7 +159,7 @@ export default {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#barlist{
|
#barlist{
|
||||||
margin-top: 44px;
|
margin-top: 87px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -34,7 +34,7 @@ const { breakpoint } = useBootstrapBreakpoint();
|
|||||||
<strong>请发送简历+作品集至:kdhr@kdesign.top</strong>
|
<strong>请发送简历+作品集至:kdhr@kdesign.top</strong>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div id="moreinfo">
|
||||||
更多招聘信息请关注<a href="https://www.zhipin.com/companys/da5dd8a98c258a0203F50tW6GVs~.html">boss直聘</a>
|
更多招聘信息请关注<a href="https://www.zhipin.com/companys/da5dd8a98c258a0203F50tW6GVs~.html">boss直聘</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -57,12 +57,10 @@ export default {
|
|||||||
fetchjobinfos:function (){
|
fetchjobinfos:function (){
|
||||||
this.isLoading=true;
|
this.isLoading=true;
|
||||||
this.error=null;
|
this.error=null;
|
||||||
axios.get('/api/wanteds') // 替换成你的实际 API 地址
|
axios.get('/api/wanteds')
|
||||||
.then(response =>{
|
.then(response =>{
|
||||||
const resp = response.data;
|
const resp = response.data;
|
||||||
// 检查 resp.data 是否存在且为数组
|
|
||||||
if (resp && Array.isArray(resp.data)) {
|
if (resp && Array.isArray(resp.data)) {
|
||||||
// 直接将后端返回对象的 data 数组赋值给 itemsArray
|
|
||||||
this.jobinfos = resp.data;
|
this.jobinfos = resp.data;
|
||||||
console.log('jobinfos:', this.jobinfos)
|
console.log('jobinfos:', this.jobinfos)
|
||||||
if(this.jobinfos.length==0){
|
if(this.jobinfos.length==0){
|
||||||
@ -90,9 +88,6 @@ export default {
|
|||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
@import "src/publicstyle.scss";
|
@import "src/publicstyle.scss";
|
||||||
#joblistpc{
|
#joblistpc{
|
||||||
// display: grid;
|
|
||||||
// grid-template-columns: repeat(3,minmax(0, 1fr));
|
|
||||||
// gap: 21px;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
@ -125,24 +120,19 @@ export default {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
//margin-left: 10.5px;
|
|
||||||
//margin-right: 10.5px;
|
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
@include media-breakpoint-between(xs, md) {
|
@include media-breakpoint-between(xs, md) {
|
||||||
padding-top: 32px;
|
padding-top: 32px;
|
||||||
}
|
}
|
||||||
@include media-breakpoint-between(md,lg) {
|
@include media-breakpoint-between(md,lg) {
|
||||||
// padding: 11px 11px 11px 11px;
|
|
||||||
padding-top: 11px;
|
padding-top: 11px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@include media-breakpoint-between(lg,xl) {
|
@include media-breakpoint-between(lg,xl) {
|
||||||
// padding: 15px 15px 15px 15px;
|
|
||||||
padding-top: 15px;
|
padding-top: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@include media-breakpoint-up(xl) {
|
@include media-breakpoint-up(xl) {
|
||||||
// padding: 40px 40px 40px 40px;
|
|
||||||
padding-top: 40px;
|
padding-top: 40px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -222,6 +212,20 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#moreinfo{
|
||||||
|
font-family: PingFangSC-Regular;
|
||||||
|
@include media-breakpoint-between(xs, md) {
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
@include media-breakpoint-between(md,lg) {
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@include media-breakpoint-up(lg) {
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.typetitle{
|
.typetitle{
|
||||||
overflow-wrap: break-word;
|
overflow-wrap: break-word;
|
||||||
color: rgba(13, 13, 13, 1);
|
color: rgba(13, 13, 13, 1);
|
||||||
@ -233,7 +237,7 @@ export default {
|
|||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
}
|
}
|
||||||
@include media-breakpoint-between(md,lg) {
|
@include media-breakpoint-between(md,lg) {
|
||||||
|
font-size: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@include media-breakpoint-up(lg) {
|
@include media-breakpoint-up(lg) {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user