@@ -1 +1 @@ | |||
import{_ as r,r as s,o as d,c as p,a as e,b as a,w as c,d as l,p as i,e as u}from"./index-mfvqjYOH.js";const h={},t=o=>(i("data-v-80d1ee2a"),o=o(),u(),o),m={class:"nopage"},f=t(()=>e("span",{style:{color:"#0074D9"}},"4",-1)),v=t(()=>e("span",{style:{color:"#67C23A"}},"0",-1)),x=t(()=>e("span",{style:{color:"#0074D9"}},"4",-1)),y=t(()=>e("p",null,"你页面走丢了~",-1));function b(o,k){const n=s("a-button"),_=s("router-link");return d(),p("div",m,[f,v,x,e("div",null,[y,e("p",null,[a(_,{to:"/job/home"},{default:c(()=>[a(n,{type:"primary"},{default:c(()=>[l("返回首页")]),_:1})]),_:1})])])])}const w=r(h,[["render",b],["__scopeId","data-v-80d1ee2a"]]);export{w as default}; | |||
import{_ as r,r as s,o as d,c as p,a as e,b as a,w as c,d as l,p as i,e as u}from"./index-XVS5hQ4e.js";const h={},t=o=>(i("data-v-80d1ee2a"),o=o(),u(),o),m={class:"nopage"},f=t(()=>e("span",{style:{color:"#0074D9"}},"4",-1)),v=t(()=>e("span",{style:{color:"#67C23A"}},"0",-1)),x=t(()=>e("span",{style:{color:"#0074D9"}},"4",-1)),y=t(()=>e("p",null,"你页面走丢了~",-1));function b(o,k){const n=s("a-button"),_=s("router-link");return d(),p("div",m,[f,v,x,e("div",null,[y,e("p",null,[a(_,{to:"/job/home"},{default:c(()=>[a(n,{type:"primary"},{default:c(()=>[l("返回首页")]),_:1})]),_:1})])])])}const w=r(h,[["render",b],["__scopeId","data-v-80d1ee2a"]]);export{w as default}; |
@@ -6,8 +6,8 @@ | |||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |||
<script src="https://map.qq.com/api/gljs?v=1.exp&key=MPBBZ-HUICZ-EGRXB-7AHZI-R4GQZ-QWBSO"></script> | |||
<title>菊城人才网</title> | |||
<script type="module" crossorigin src="/assets/index-mfvqjYOH.js"></script> | |||
<link rel="stylesheet" crossorigin href="/assets/index-01I_BFPo.css"> | |||
<script type="module" crossorigin src="/assets/index-XVS5hQ4e.js"></script> | |||
<link rel="stylesheet" crossorigin href="/assets/index-HfhjWLuW.css"> | |||
</head> | |||
<body> | |||
<div id="app"></div> |
@@ -72,5 +72,6 @@ | |||
width: 100%; | |||
padding: 20px; | |||
background-color: #fff; | |||
cursor: pointer; | |||
} | |||
</style> |
@@ -8,7 +8,6 @@ | |||
<div style="display: flex;flex-direction: column;align-items: flex-start;"> | |||
<div>关于我们</div> | |||
<div style="display: flex;flex-direction: column;"> | |||
<div>关于我们</div> | |||
<div>联系方式</div> | |||
<div>公司地图</div> | |||
<div>关于我们</div> |
@@ -79,7 +79,7 @@ | |||
<template v-else> | |||
<a-row :gutter="10"> | |||
<a-col span="6"> | |||
<div style="height: calc(100vh - 100px); overflow: auto;background-color: #ffffff;padding-bottom: 20px; border-radius: 8px;"> | |||
<div style="background-color: #ffffff;padding-bottom: 20px; border-radius: 8px;"> | |||
<job-card :list="jobList" @detail="toDetail"></job-card> | |||
<a-flex justify="center"> | |||
<a-space> | |||
@@ -102,7 +102,7 @@ | |||
</a-col> | |||
<a-col span="18"> | |||
<div v-if="job_id" | |||
style="height: calc(100vh - 100px); overflow: auto;padding: 20px;background-color: #ffffff;border-radius: 8px;"> | |||
style="padding: 20px;background-color: #ffffff;border-radius: 8px;"> | |||
<job-detail :id="job_id"></job-detail> | |||
</div> | |||
</a-col> |
@@ -2,6 +2,13 @@ | |||
<div class="content-padding-inline" style="margin: 30px 0;"> | |||
<a-row :gutter="[20,20]" type="flex" justify="center"> | |||
<a-col span="18"> | |||
<template v-if="!jobList || jobList.length == 0"> | |||
<a-empty style="height: 100vh;"> | |||
<template #description> | |||
无职位信息 | |||
</template> | |||
</a-empty> | |||
</template> | |||
<a-row :gutter="[10,20]"> | |||
<a-col span="8" v-for="(item, index) in jobList"> | |||
<a-flex vertical style="width: 100%;background-color: #fff;border-radius: 10px;padding: 20px;"> |