flat: 暂存

This commit is contained in:
史典卓
2025-03-29 11:51:48 +08:00
parent b8ee5e7c17
commit 09d9603f04
101 changed files with 93 additions and 57 deletions

BIN
.DS_Store vendored

Binary file not shown.

View File

@@ -10,19 +10,15 @@
(coverSupport ? ', viewport-fit=cover' : '') + '" />')
</script>
<title></title>
<!--preload-links-->
<!--app-context-->
<!-- <script src="https://unpkg.com/vconsole@latest/dist/vconsole.min.js"></script>
<!-- vconsole -->
<!--<script src="https://unpkg.com/vconsole@latest/dist/vconsole.min.js"></script>
<script>
var vConsole = new window.VConsole();
vConsole.destroy();
</script -->
<script type="text/javascript" src="./lib/jweixin-1.4.0.js"></script>
</head>
<body>
<!-- <script src="https://unpkg.com/vconsole/dist/vconsole.min.js"></script>
<script>
var vConsole = new window.VConsole();
</script> -->
<div id="app"><!--app-html--></div>
<script type="module" src="/main.js"></script>
</body>

BIN
lib/.DS_Store vendored

Binary file not shown.

1
lib/jweixin-1.4.0.js Normal file

File diff suppressed because one or more lines are too long

View File

@@ -4,6 +4,7 @@ import globalFunction from '@/common/globalFunction'
import '@/lib/string-similarity.min.js'
import similarityJobs from '@/utils/similarity_Job.js';
import NoBouncePage from '@/components/NoBouncePage/NoBouncePage.vue'
import {
createSSRApp,
} from 'vue'

View File

@@ -3,7 +3,7 @@
<view class="careerfair-AI">AI+就业服务程序</view>
<view class="careerfair-tab">
<view class="careerfair-tab-options actived">现场招聘</view>
<view class="careerfair-tab-options">VR虚拟招聘会</view>
<view class="careerfair-tab-options" @click="textXcx">VR虚拟招聘会</view>
</view>
<scroll-view :scroll-x="true" :show-scrollbar="false" class="careerfair-scroll">
<view class="careerfair-date">
@@ -48,6 +48,16 @@ const state = reactive({
onLoad(() => {
state.dateList = getNextMonthDates();
});
document.addEventListener('UniAppJSBridgeReady', function () {
console.log(123);
});
function textXcx() {
jWeixin.miniProgram.postMessage({
data: {
pathUrl: '你好,小程序', //传递的参数
},
});
}
// 获取往后三十天日期
function getNextMonthDates() {

View File

@@ -7,17 +7,17 @@
<view class="drawer" :class="{ open: isDrawerOpen }">
<view class="drawer-content">
<view class="drawer-title">AI+</view>
<view class="drawer-input-content">
<input
class="drawer-input"
type="text"
v-model="searchText"
placeholder-class="input-placeholder"
placeholder="请输入搜索历史对话"
/>
<uni-icons class="input-search" type="search" size="20"></uni-icons>
</view>
<scroll-view scroll-y :show-scrollbar="false" class="chat-scroll">
<view class="drawer-input-content">
<input
class="drawer-input"
type="text"
v-model="searchText"
placeholder-class="input-placeholder"
placeholder="请输入搜索历史对话"
/>
<uni-icons class="input-search" type="search" size="20"></uni-icons>
</view>
<view
class="drawer-rows"
@click="changeDialogue(item)"
@@ -36,6 +36,11 @@
</view>
</view>
</scroll-view>
<view class="drawer-user">
<image class="drawer-user-img" src="/static/icon/boy.png"></image>
<text>用户123</text>
<image class="drawer-user-setting" src="/static/icon/setting.png" mode=""></image>
</view>
</view>
</view>
@@ -115,6 +120,7 @@ const changeDialogue = (item) => {
/* 页面容器 */
.container {
position: fixed;
z-index: 1000;
width: 100vw;
height: calc(100vh - var(--window-top) - var(--status-bar-height) - var(--window-bottom));
overflow: hidden;
@@ -173,6 +179,28 @@ const changeDialogue = (item) => {
.drawer-content
height: 100%
background: #FFFFFF;
display: flex
flex-direction: column
.drawer-user
border-top: 1rpx solid rgba(0,0,0,.1);
padding: 20rpx 28rpx
display: flex
font-weight: 500;
align-items: center
position: relative
margin-bottom: constant(safe-area-inset-bottom); /*兼容 IOS<11.2*/
margin-bottom: env(safe-area-inset-bottom); /*兼容 IOS>11.2*/
.drawer-user-img
width: 57.2rpx;
height: 57.2rpx
margin-right: 20rpx
.drawer-user-setting
width: 57.2rpx;
height: 57.2rpx
position: absolute
top: 50%
right: 28rpx
transform: translate(0,-50%)
.drawer-title
height: calc(88rpx + env(safe-area-inset-top));
line-height: calc(88rpx + env(safe-area-inset-top));
@@ -181,7 +209,8 @@ const changeDialogue = (item) => {
font-size: 32rpx
font-weight: bold
.chat-scroll
height: calc(100% - 88rpx + env(safe-area-inset-top));
flex: 1
overflow: hidden
.drawer-rows
padding: 0 28rpx;
// border-bottom: 2rpx dashed #e8e8e8

View File

@@ -13,7 +13,7 @@
</view>
</FadeView>
<scroll-view class="chat-list scrollView" :scroll-top="scrollTop" :scroll-y="true" scroll-with-animation>
<FadeView :show="messages.length" :duration="600">
<FadeView :show="messages.length >= 1" :duration="600">
<view class="chat-list list-content">
<view
v-for="(msg, index) in messages"
@@ -22,7 +22,7 @@
class="chat-item"
:class="{ self: msg.self }"
>
<text class="message" v-if="msg.self">
<view class="message" v-if="msg.self">
<view class="msg-filecontent" v-if="msg.files.length">
<view
class="msg-files"
@@ -35,8 +35,8 @@
</view>
</view>
{{ msg.displayText }}
</text>
<text class="message" :class="{ messageNull: !msg.displayText }" v-else>
</view>
<view class="message" :class="{ messageNull: !msg.displayText }" v-else>
<!-- {{ msg.displayText }} -->
<md-render :content="msg.displayText"></md-render>
<!-- guess -->
@@ -59,7 +59,7 @@
</view>
</view>
</view>
</text>
</view>
</view>
<view v-if="isTyping" :class="{ self: true }">
<text class="message msg-loading">
@@ -290,7 +290,7 @@ const scrollToBottom = throttle(function () {
scrollTop.value = scrolldistance;
}
});
}, 100);
}, 500);
} catch (err) {
console.warn(err);
}

BIN
static/icon/.DS_Store vendored

Binary file not shown.

BIN
static/icon/setting.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 468 B

View File

@@ -270,7 +270,6 @@ const useChatGroupDBStore = defineStore("messageGroup", () => {
addMessage,
tabeList,
init,
initMessage,
toggleTyping,
addTabel,
addNewDialogue,

Binary file not shown.

Binary file not shown.

BIN
unpackage/dist/build/web/.DS_Store vendored Normal file

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.0 KiB

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1 +1 @@
import{_ as e,am as t,o as i,a as n,w as o,f as s,j as a,k as d,n as h,l as p}from"./index-BoIbtAZO.js";const l=e({name:"custom-popup",data:()=>({winWidth:0,winHeight:0,winTop:0,contentHeight:30}),props:{visible:{type:Boolean,require:!0,default:!1},hide:{type:Number,default:0},header:{type:Boolean,default:!0},contentH:{type:Number,default:30}},created(){var e=this;this.contentH&&(this.contentHeight=this.contentH),t({success:function(t){0===e.hide?(e.winWidth=t.screenWidth,e.winHeight=t.screenHeight,e.winTop=0):(e.winWidth=t.windowWidth,e.winHeight=t.windowHeight,e.winTop=t.windowTop)}})},methods:{close(e){this.$emit("onClose")}}},[["render",function(e,t,l,c,r,u){const w=p;return l.visible?(i(),n(w,{key:0,class:"tianditu-popop",style:h({height:r.winHeight+"px",width:r.winWidth+"px",top:r.winTop+"px"})},{default:o((()=>[l.header?(i(),n(w,{key:0,class:"popup-header",onClick:u.close},{default:o((()=>[s(e.$slots,"header",{},void 0,!0)])),_:3},8,["onClick"])):a("",!0),d(w,{style:h({minHeight:r.contentHeight+"vh"}),class:"popup-content fadeInUp animated"},{default:o((()=>[s(e.$slots,"default",{},void 0,!0)])),_:3},8,["style"])])),_:3},8,["style"])):a("",!0)}],["__scopeId","data-v-ad9fd3a8"]]);export{l as _};
import{_ as e,an as t,o as i,a as n,w as o,f as s,j as a,k as d,n as h,l as p}from"./index-DdiBakOJ.js";const l=e({name:"custom-popup",data:()=>({winWidth:0,winHeight:0,winTop:0,contentHeight:30}),props:{visible:{type:Boolean,require:!0,default:!1},hide:{type:Number,default:0},header:{type:Boolean,default:!0},contentH:{type:Number,default:30}},created(){var e=this;this.contentH&&(this.contentHeight=this.contentH),t({success:function(t){0===e.hide?(e.winWidth=t.screenWidth,e.winHeight=t.screenHeight,e.winTop=0):(e.winWidth=t.windowWidth,e.winHeight=t.windowHeight,e.winTop=t.windowTop)}})},methods:{close(e){this.$emit("onClose")}}},[["render",function(e,t,l,c,r,u){const w=p;return l.visible?(i(),n(w,{key:0,class:"tianditu-popop",style:h({height:r.winHeight+"px",width:r.winWidth+"px",top:r.winTop+"px"})},{default:o((()=>[l.header?(i(),n(w,{key:0,class:"popup-header",onClick:u.close},{default:o((()=>[s(e.$slots,"header",{},void 0,!0)])),_:3},8,["onClick"])):a("",!0),d(w,{style:h({minHeight:r.contentHeight+"vh"}),class:"popup-content fadeInUp animated"},{default:o((()=>[s(e.$slots,"default",{},void 0,!0)])),_:3},8,["style"])])),_:3},8,["style"])):a("",!0)}],["__scopeId","data-v-ad9fd3a8"]]);export{l as _};

View File

@@ -1 +1 @@
import{D as e,o as a,b as s,z as t,H as p}from"./index-BoIbtAZO.js";const o={__name:"dict-Label",props:["value","dictType"],setup(o){const{complete:c,dictLabel:l}=e();return(e,c)=>(a(),s("span",null,t(p(l)(o.dictType,o.value)),1))}};export{o as _};
import{D as e,o as a,b as s,z as t,H as p}from"./index-DdiBakOJ.js";const o={__name:"dict-Label",props:["value","dictType"],setup(o){const{complete:c,dictLabel:l}=e();return(e,c)=>(a(),s("span",null,t(p(l)(o.dictType,o.value)),1))}};export{o as _};

View File

@@ -1 +1 @@
import{_ as e,a0 as t,v as s,x as a,o as c,a as l,w as i,k as o,j as n,b as r,F as h,r as d,d as u,y as f,z as p,I as y,J as k,K as g,l as m,S as b}from"./index-BoIbtAZO.js";import{_}from"./uni-icons.SM4XIXQc.js";const x=e({name:"expected-station",data:()=>({leftValue:{},rightValue:[],stationCateLog:0,copyTree:[]}),props:{station:{type:Array,default:[]},search:{type:Boolean,default:!0},max:{type:Number,default:5}},created(){this.copyTree=this.station,this.copyTree.length&&(this.leftValue=this.copyTree[0],this.rightValue=this.copyTree[0].children)},watch:{station(e){this.copyTree=this.station,this.copyTree.length&&(this.leftValue=this.copyTree[0],this.rightValue=this.copyTree[0].children)}},methods:{changeStationLog(e){this.leftValue=e,this.rightValue=e.children},addItem(e){let s=[],a=0;for(const t of this.copyTree)for(const e of t.children)for(const t of e.children)t.checked&&a++;for(const c of this.copyTree){c.checkednumber=0;for(const l of c.children)for(const i of l.children){if(i.id===e.id){if(!i.checked&&a>=5){t({title:"最多选择5个职位",icon:"none"});continue}i.checked=!i.checked}i.checked&&(s.push(`${i.id}`),c.checkednumber++)}}s=s.join(","),this.$emit("onChange",s)}}},[["render",function(e,t,x,T,V,C){const j=s(a("uni-icons"),_),w=g,I=m,L=b;return c(),l(I,{class:"expected-station"},{default:i((()=>[x.search?(c(),l(I,{key:0,class:"sex-search"},{default:i((()=>[o(j,{class:"iconsearch",type:"search",size:"20"}),o(w,{class:"uni-input searchinput","confirm-type":"search"})])),_:1})):n("",!0),o(I,{class:"sex-content"},{default:i((()=>[o(L,{"show-scrollbar":!1,"scroll-y":!0,class:"sex-content-left"},{default:i((()=>[(c(!0),r(h,null,d(V.copyTree,(e=>(c(),l(I,{key:e.id,class:u(["left-list-btn",{"left-list-btned":e.id===V.leftValue.id}]),onClick:t=>C.changeStationLog(e)},{default:i((()=>[f(p(e.label)+" ",1),y(o(I,{class:"positionNum"},{default:i((()=>[f(p(e.checkednumber),1)])),_:2},1536),[[k,e.checkednumber]])])),_:2},1032,["class","onClick"])))),128))])),_:1}),o(L,{"show-scrollbar":!1,"scroll-y":!0,class:"sex-content-right"},{default:i((()=>[(c(!0),r(h,null,d(V.rightValue,(e=>(c(),l(I,{key:e.id},{default:i((()=>[o(I,{class:"secondary-title"},{default:i((()=>[f(p(e.label),1)])),_:2},1024),o(I,{class:"grid-sex"},{default:i((()=>[(c(!0),r(h,null,d(e.children,(e=>(c(),l(I,{key:e.id,class:u([{"sex-right-btned":e.checked},"sex-right-btn"]),onClick:t=>C.addItem(e)},{default:i((()=>[f(p(e.label),1)])),_:2},1032,["class","onClick"])))),128))])),_:2},1024)])),_:2},1024)))),128))])),_:1})])),_:1})])),_:1})}],["__scopeId","data-v-efd19bad"]]);export{x as _};
import{_ as e,a0 as t,v as s,x as a,o as c,a as l,w as i,k as o,j as n,b as r,F as h,r as d,d as u,y as f,z as p,I as y,J as k,K as g,l as m,S as b}from"./index-DdiBakOJ.js";import{_}from"./uni-icons.OqqMV__G.js";const x=e({name:"expected-station",data:()=>({leftValue:{},rightValue:[],stationCateLog:0,copyTree:[]}),props:{station:{type:Array,default:[]},search:{type:Boolean,default:!0},max:{type:Number,default:5}},created(){this.copyTree=this.station,this.copyTree.length&&(this.leftValue=this.copyTree[0],this.rightValue=this.copyTree[0].children)},watch:{station(e){this.copyTree=this.station,this.copyTree.length&&(this.leftValue=this.copyTree[0],this.rightValue=this.copyTree[0].children)}},methods:{changeStationLog(e){this.leftValue=e,this.rightValue=e.children},addItem(e){let s=[],a=0;for(const t of this.copyTree)for(const e of t.children)for(const t of e.children)t.checked&&a++;for(const c of this.copyTree){c.checkednumber=0;for(const l of c.children)for(const i of l.children){if(i.id===e.id){if(!i.checked&&a>=5){t({title:"最多选择5个职位",icon:"none"});continue}i.checked=!i.checked}i.checked&&(s.push(`${i.id}`),c.checkednumber++)}}s=s.join(","),this.$emit("onChange",s)}}},[["render",function(e,t,x,T,V,C){const j=s(a("uni-icons"),_),w=g,I=m,L=b;return c(),l(I,{class:"expected-station"},{default:i((()=>[x.search?(c(),l(I,{key:0,class:"sex-search"},{default:i((()=>[o(j,{class:"iconsearch",type:"search",size:"20"}),o(w,{class:"uni-input searchinput","confirm-type":"search"})])),_:1})):n("",!0),o(I,{class:"sex-content"},{default:i((()=>[o(L,{"show-scrollbar":!1,"scroll-y":!0,class:"sex-content-left"},{default:i((()=>[(c(!0),r(h,null,d(V.copyTree,(e=>(c(),l(I,{key:e.id,class:u(["left-list-btn",{"left-list-btned":e.id===V.leftValue.id}]),onClick:t=>C.changeStationLog(e)},{default:i((()=>[f(p(e.label)+" ",1),y(o(I,{class:"positionNum"},{default:i((()=>[f(p(e.checkednumber),1)])),_:2},1536),[[k,e.checkednumber]])])),_:2},1032,["class","onClick"])))),128))])),_:1}),o(L,{"show-scrollbar":!1,"scroll-y":!0,class:"sex-content-right"},{default:i((()=>[(c(!0),r(h,null,d(V.rightValue,(e=>(c(),l(I,{key:e.id},{default:i((()=>[o(I,{class:"secondary-title"},{default:i((()=>[f(p(e.label),1)])),_:2},1024),o(I,{class:"grid-sex"},{default:i((()=>[(c(!0),r(h,null,d(e.children,(e=>(c(),l(I,{key:e.id,class:u([{"sex-right-btned":e.checked},"sex-right-btn"]),onClick:t=>C.addItem(e)},{default:i((()=>[f(p(e.label),1)])),_:2},1032,["class","onClick"])))),128))])),_:2},1024)])),_:2},1024)))),128))])),_:1})])),_:1})])),_:1})}],["__scopeId","data-v-efd19bad"]]);export{x as _};

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.3 KiB

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1 +1 @@
import{a5 as a,o as t,a as e,w as n,y as r,z as s,l as o,p as l}from"./index-BoIbtAZO.js";const u={__name:"Salary-Expectation",props:["minSalary","maxSalary","isMonth"],setup(l){const{minSalary:u,maxSalary:i,isMonth:c}=l,m=a((()=>u&&i?c?`${u}-${i}/月`:`${u/1e3}k-${i/1e3}k`:"面议"));return(a,l)=>{const u=o;return t(),e(u,null,{default:n((()=>[r(s(m.value),1)])),_:1})}}},i={__name:"matchingDegree",props:["job"],setup(u){const{job:i}=u,{similarityJobs:c,throttle:m}=l("globalFunction"),p=a((()=>{if(!i)return"";const a=c.calculationMatchingDegree(i);return a?"匹配度 "+a.overallMatch:""}));return(a,l)=>{const u=o;return t(),e(u,null,{default:n((()=>[r(s(p.value),1)])),_:1})}}};export{u as _,i as a};
import{a5 as a,o as t,a as e,w as n,y as r,z as s,l as o,p as l}from"./index-DdiBakOJ.js";const u={__name:"Salary-Expectation",props:["minSalary","maxSalary","isMonth"],setup(l){const{minSalary:u,maxSalary:i,isMonth:c}=l,m=a((()=>u&&i?c?`${u}-${i}/月`:`${u/1e3}k-${i/1e3}k`:"面议"));return(a,l)=>{const u=o;return t(),e(u,null,{default:n((()=>[r(s(m.value),1)])),_:1})}}},i={__name:"matchingDegree",props:["job"],setup(u){const{job:i}=u,{similarityJobs:c,throttle:m}=l("globalFunction"),p=a((()=>{if(!i)return"";const a=c.calculationMatchingDegree(i);return a?"匹配度 "+a.overallMatch:""}));return(a,l)=>{const u=o;return t(),e(u,null,{default:n((()=>[r(s(p.value),1)])),_:1})}}};export{u as _,i as a};

View File

@@ -1 +1 @@
import{_ as a,p as e,u as t,s,G as l,ap as o,v as c,x as i,a as n,w as r,l as d,o as u,k as p,b as m,r as g,F as f,y as _,z as x,j as b,H as w}from"./index-BoIbtAZO.js";import{_ as y,a as v}from"./matchingDegree.DIUzxusN.js";import{_ as j}from"./dict-Label.Dsm7GAlr.js";const T=a({__name:"Intendedposition",setup(a){const{$api:T,navTo:h,vacanciesTo:k}=e("globalFunction");t(),s({});const S=s({page:0,list:[],total:0,maxPage:1,pageSize:10});function z(a="add"){"refresh"===a&&(S.page=0,S.maxPage=1),"add"===a&&S.page<S.maxPage&&(S.page+=1);let e={current:S.page,pageSize:S.pageSize};T.createRequest("/app/user/apply/job",e).then((e=>{const{rows:t,total:s}=e;if("add"===a){const a=S.pageSize*(S.page-1),e=S.list.length,s=t;S.list.splice(a,e,...s)}else S.list=t;S.total=e.total,S.maxPage=Math.ceil(S.total/S.pageSize)}))}return l((()=>{console.log("onLoad"),z()})),o((()=>{z()})),(a,e)=>{const t=d,s=c(i("Salary-Expectation"),y),l=c(i("matchingDegree"),v);return u(),n(t,{class:"collection-content"},{default:r((()=>[p(t,{class:"one-cards"},{default:r((()=>[(u(!0),m(f,null,g(S.list,((a,e)=>(u(),n(t,{class:"card-box",key:e,onClick:e=>{return t=a.jobId,void h(`/packageA/pages/post/post?jobId=${btoa(t)}`);var t}},{default:r((()=>[p(t,{class:"box-row mar_top0"},{default:r((()=>[p(t,{class:"row-left"},{default:r((()=>[_(x(a.jobTitle),1)])),_:2},1024),p(t,{class:"row-right"},{default:r((()=>[p(s,{"max-salary":a.maxSalary,"min-salary":a.minSalary},null,8,["max-salary","min-salary"])])),_:2},1024)])),_:2},1024),p(t,{class:"box-row"},{default:r((()=>[p(t,{class:"row-left"},{default:r((()=>[a.educatio?(u(),n(t,{key:0,class:"row-tag"},{default:r((()=>[p(j,{dictType:"education",value:a.education},null,8,["value"])])),_:2},1024)):b("",!0),a.experience?(u(),n(t,{key:1,class:"row-tag"},{default:r((()=>[p(j,{dictType:"experience",value:a.experience},null,8,["value"])])),_:2},1024)):b("",!0)])),_:2},1024)])),_:2},1024),p(t,{class:"box-row mar_top0"},{default:r((()=>[p(t,{class:"row-item mineText"},{default:r((()=>[_(x(a.postingDate||"发布日期"),1)])),_:2},1024),p(t,{class:"row-item mineText"},{default:r((()=>[_(x(w(k)(a.vacancies)),1)])),_:2},1024),p(t,{class:"row-item mineText textblue"},{default:r((()=>[p(l,{job:a},null,8,["job"])])),_:2},1024),p(t,{class:"row-item"})])),_:2},1024),p(t,{class:"box-row"},{default:r((()=>[p(t,{class:"row-left mineText"},{default:r((()=>[_(x(a.companyName),1)])),_:2},1024),p(t,{class:"row-right mineText"},{default:r((()=>[_(" 青岛 "),p(j,{dictType:"area",value:a.jobLocationAreaCode},null,8,["value"])])),_:2},1024)])),_:2},1024)])),_:2},1032,["onClick"])))),128))])),_:1})])),_:1})}}},[["__scopeId","data-v-6c0afbd6"]]);export{T as default};
import{_ as a,p as e,u as t,s,G as l,aq as o,v as c,x as i,a as n,w as r,l as d,o as u,k as p,b as m,r as g,F as f,y as _,z as x,j as b,H as w}from"./index-DdiBakOJ.js";import{_ as y,a as v}from"./matchingDegree.C4MMzh2G.js";import{_ as j}from"./dict-Label.ot3xNx0t.js";const T=a({__name:"Intendedposition",setup(a){const{$api:T,navTo:h,vacanciesTo:k}=e("globalFunction");t(),s({});const S=s({page:0,list:[],total:0,maxPage:1,pageSize:10});function z(a="add"){"refresh"===a&&(S.page=0,S.maxPage=1),"add"===a&&S.page<S.maxPage&&(S.page+=1);let e={current:S.page,pageSize:S.pageSize};T.createRequest("/app/user/apply/job",e).then((e=>{const{rows:t,total:s}=e;if("add"===a){const a=S.pageSize*(S.page-1),e=S.list.length,s=t;S.list.splice(a,e,...s)}else S.list=t;S.total=e.total,S.maxPage=Math.ceil(S.total/S.pageSize)}))}return l((()=>{console.log("onLoad"),z()})),o((()=>{z()})),(a,e)=>{const t=d,s=c(i("Salary-Expectation"),y),l=c(i("matchingDegree"),v);return u(),n(t,{class:"collection-content"},{default:r((()=>[p(t,{class:"one-cards"},{default:r((()=>[(u(!0),m(f,null,g(S.list,((a,e)=>(u(),n(t,{class:"card-box",key:e,onClick:e=>{return t=a.jobId,void h(`/packageA/pages/post/post?jobId=${btoa(t)}`);var t}},{default:r((()=>[p(t,{class:"box-row mar_top0"},{default:r((()=>[p(t,{class:"row-left"},{default:r((()=>[_(x(a.jobTitle),1)])),_:2},1024),p(t,{class:"row-right"},{default:r((()=>[p(s,{"max-salary":a.maxSalary,"min-salary":a.minSalary},null,8,["max-salary","min-salary"])])),_:2},1024)])),_:2},1024),p(t,{class:"box-row"},{default:r((()=>[p(t,{class:"row-left"},{default:r((()=>[a.educatio?(u(),n(t,{key:0,class:"row-tag"},{default:r((()=>[p(j,{dictType:"education",value:a.education},null,8,["value"])])),_:2},1024)):b("",!0),a.experience?(u(),n(t,{key:1,class:"row-tag"},{default:r((()=>[p(j,{dictType:"experience",value:a.experience},null,8,["value"])])),_:2},1024)):b("",!0)])),_:2},1024)])),_:2},1024),p(t,{class:"box-row mar_top0"},{default:r((()=>[p(t,{class:"row-item mineText"},{default:r((()=>[_(x(a.postingDate||"发布日期"),1)])),_:2},1024),p(t,{class:"row-item mineText"},{default:r((()=>[_(x(w(k)(a.vacancies)),1)])),_:2},1024),p(t,{class:"row-item mineText textblue"},{default:r((()=>[p(l,{job:a},null,8,["job"])])),_:2},1024),p(t,{class:"row-item"})])),_:2},1024),p(t,{class:"box-row"},{default:r((()=>[p(t,{class:"row-left mineText"},{default:r((()=>[_(x(a.companyName),1)])),_:2},1024),p(t,{class:"row-right mineText"},{default:r((()=>[_(" 青岛 "),p(j,{dictType:"area",value:a.jobLocationAreaCode},null,8,["value"])])),_:2},1024)])),_:2},1024)])),_:2},1032,["onClick"])))),128))])),_:1})])),_:1})}}},[["__scopeId","data-v-6c0afbd6"]]);export{T as default};

View File

@@ -1 +1 @@
import{_ as a,p as e,s as l,q as s,G as t,v as c,x as o,a as i,w as n,l as u,o as d,k as p,y as r,z as f,b as _,r as m,F as y,U as g,H as v,j as b}from"./index-BoIbtAZO.js";import{_ as j}from"./uni-icons.SM4XIXQc.js";import{_ as x}from"./dict-Label.Dsm7GAlr.js";const h=a({__name:"UnitDetails",setup(a){const{$api:h,navTo:k}=e("globalFunction"),z=l({page:0,list:[],total:0,maxPage:1,pageSize:10}),S=s({});return t((a=>{var e;console.log(a),e=a.companyId,h.createRequest(`/app/company/${e}`).then((a=>{S.value=a.data,function(a="add"){"refresh"===a&&(z.page=0,z.maxPage=1),"add"===a&&z.page<z.maxPage&&(z.page+=1);let e={current:z.page,pageSize:z.pageSize};h.createRequest(`/app/company/job/${S.value.companyId}`,e).then((a=>{z.list=a.rows,z.total=a.total,z.maxPage=Math.ceil(z.total/z.pageSize)}))}()}))})),(a,e)=>{const l=g,s=c(o("uni-icons"),j),t=u;return d(),i(t,{class:"container"},{default:n((()=>[p(t,{class:"company-header"},{default:n((()=>[p(l,{class:"company-name"},{default:n((()=>[r(f(S.value.name),1)])),_:1}),p(t,{class:"company-info"},{default:n((()=>[p(t,{class:"location"},{default:n((()=>[p(s,{type:"location-filled",color:"#4778EC",size:"24"}),r(" 青岛 "+f(S.value.location),1)])),_:1}),p(t,{class:"industry",style:{display:"inline-block"}},{default:n((()=>[r(f(S.value.industry)+" ",1),p(x,{dictType:"scale",value:S.value.scale},null,8,["value"])])),_:1})])),_:1})])),_:1}),p(t,{class:"hr"}),p(t,{class:"company-description"},{default:n((()=>[p(t,{class:"section-title"},{default:n((()=>[r("单位介绍")])),_:1}),p(l,{class:"description"},{default:n((()=>[r(f(S.value.description),1)])),_:1})])),_:1}),p(t,{class:"job-list"},{default:n((()=>[p(l,{class:"section-title"},{default:n((()=>[r("在招职位")])),_:1}),(d(!0),_(y,null,m(z.list,(a=>(d(),i(t,{class:"job-row",key:a.id,onClick:e=>v(k)(`/packageA/pages/post/post?jobId=${a.jobId}`)},{default:n((()=>[p(t,{class:"left"},{default:n((()=>[p(l,{class:"job-title"},{default:n((()=>[r(f(a.jobTitle),1)])),_:2},1024),p(t,{class:"job-tags"},{default:n((()=>[p(t,{class:"tag"},{default:n((()=>[p(x,{dictType:"education",value:a.education},null,8,["value"])])),_:2},1024),p(t,{class:"tag"},{default:n((()=>[p(x,{dictType:"experience",value:a.experience},null,8,["value"])])),_:2},1024),p(t,{class:"tag"},{default:n((()=>[r(f(a.vacancies)+"人",1)])),_:2},1024)])),_:2},1024),p(l,{class:"location"},{default:n((()=>[r(" 青岛 "),p(x,{dictType:"area",value:a.jobLocationAreaCode},null,8,["value"])])),_:2},1024)])),_:2},1024),p(t,{class:"right"},{default:n((()=>[p(l,{class:"salary"},{default:n((()=>[r(f(a.minSalary)+"-"+f(a.maxSalary)+"/月",1)])),_:2},1024),a.isHot?(d(),i(l,{key:0,class:"hot"},{default:n((()=>[r("🔥")])),_:1})):b("",!0)])),_:2},1024)])),_:2},1032,["onClick"])))),128))])),_:1})])),_:1})}}},[["__scopeId","data-v-1fe8fba7"]]);export{h as default};
import{_ as a,p as e,s as l,q as s,G as t,v as c,x as o,a as i,w as n,l as u,o as d,k as p,y as r,z as f,b as _,r as m,F as y,U as g,H as v,j as b}from"./index-DdiBakOJ.js";import{_ as j}from"./uni-icons.OqqMV__G.js";import{_ as x}from"./dict-Label.ot3xNx0t.js";const h=a({__name:"UnitDetails",setup(a){const{$api:h,navTo:k}=e("globalFunction"),z=l({page:0,list:[],total:0,maxPage:1,pageSize:10}),S=s({});return t((a=>{var e;console.log(a),e=a.companyId,h.createRequest(`/app/company/${e}`).then((a=>{S.value=a.data,function(a="add"){"refresh"===a&&(z.page=0,z.maxPage=1),"add"===a&&z.page<z.maxPage&&(z.page+=1);let e={current:z.page,pageSize:z.pageSize};h.createRequest(`/app/company/job/${S.value.companyId}`,e).then((a=>{z.list=a.rows,z.total=a.total,z.maxPage=Math.ceil(z.total/z.pageSize)}))}()}))})),(a,e)=>{const l=g,s=c(o("uni-icons"),j),t=u;return d(),i(t,{class:"container"},{default:n((()=>[p(t,{class:"company-header"},{default:n((()=>[p(l,{class:"company-name"},{default:n((()=>[r(f(S.value.name),1)])),_:1}),p(t,{class:"company-info"},{default:n((()=>[p(t,{class:"location"},{default:n((()=>[p(s,{type:"location-filled",color:"#4778EC",size:"24"}),r(" 青岛 "+f(S.value.location),1)])),_:1}),p(t,{class:"industry",style:{display:"inline-block"}},{default:n((()=>[r(f(S.value.industry)+" ",1),p(x,{dictType:"scale",value:S.value.scale},null,8,["value"])])),_:1})])),_:1})])),_:1}),p(t,{class:"hr"}),p(t,{class:"company-description"},{default:n((()=>[p(t,{class:"section-title"},{default:n((()=>[r("单位介绍")])),_:1}),p(l,{class:"description"},{default:n((()=>[r(f(S.value.description),1)])),_:1})])),_:1}),p(t,{class:"job-list"},{default:n((()=>[p(l,{class:"section-title"},{default:n((()=>[r("在招职位")])),_:1}),(d(!0),_(y,null,m(z.list,(a=>(d(),i(t,{class:"job-row",key:a.id,onClick:e=>v(k)(`/packageA/pages/post/post?jobId=${a.jobId}`)},{default:n((()=>[p(t,{class:"left"},{default:n((()=>[p(l,{class:"job-title"},{default:n((()=>[r(f(a.jobTitle),1)])),_:2},1024),p(t,{class:"job-tags"},{default:n((()=>[p(t,{class:"tag"},{default:n((()=>[p(x,{dictType:"education",value:a.education},null,8,["value"])])),_:2},1024),p(t,{class:"tag"},{default:n((()=>[p(x,{dictType:"experience",value:a.experience},null,8,["value"])])),_:2},1024),p(t,{class:"tag"},{default:n((()=>[r(f(a.vacancies)+"人",1)])),_:2},1024)])),_:2},1024),p(l,{class:"location"},{default:n((()=>[r(" 青岛 "),p(x,{dictType:"area",value:a.jobLocationAreaCode},null,8,["value"])])),_:2},1024)])),_:2},1024),p(t,{class:"right"},{default:n((()=>[p(l,{class:"salary"},{default:n((()=>[r(f(a.minSalary)+"-"+f(a.maxSalary)+"/月",1)])),_:2},1024),a.isHot?(d(),i(l,{key:0,class:"hot"},{default:n((()=>[r("🔥")])),_:1})):b("",!0)])),_:2},1024)])),_:2},1032,["onClick"])))),128))])),_:1})])),_:1})}}},[["__scopeId","data-v-1fe8fba7"]]);export{h as default};

View File

@@ -1 +1 @@
import{_ as a,p as s,q as e,G as t,a as c,w as n,l as o,o as l,k as r,y as d,b as u,r as i,F as p,n as f,z as m,U as y}from"./index-BoIbtAZO.js";const _=a({__name:"choiceness",setup(a){const{$api:_,navTo:k}=s("globalFunction"),C=e([]);function g(){_.createRequest("/app/company/card").then((a=>{const{rows:s,total:e}=a;C.value=s}))}return t((()=>{g()})),(a,s)=>{const e=o,t=y;return l(),c(e,{class:"container"},{default:n((()=>[r(e,{class:"search-bar"},{default:n((()=>[d("精选企业")])),_:1}),r(e,{class:"grid-container"},{default:n((()=>[(l(!0),u(p,null,i(C.value,(a=>(l(),c(e,{class:"grid-item",style:f({backgroundColor:a.backgroudColor}),key:a.companyCardId},{default:n((()=>[r(t,{class:"title"},{default:n((()=>[d(m(a.name),1)])),_:2},1024),a.isCollection?(l(),c(e,{key:0,class:"status",onClick:s=>function(a){_.createRequest(`/app/company/card/collection/${a.companyCardId}`,{},"DELETE").then((a=>{g(),_.msg("取消关注")}))}(a)},{default:n((()=>[d("已关注 ✓")])),_:2},1032,["onClick"])):(l(),c(e,{key:1,class:"status",onClick:s=>function(a){_.createRequest(`/app/company/card/collection/${a.companyCardId}`,{},"PUT").then((a=>{g(),_.msg("关注成功")}))}(a)},{default:n((()=>[d("特别关注")])),_:2},1032,["onClick"]))])),_:2},1032,["style"])))),128))])),_:1})])),_:1})}}},[["__scopeId","data-v-21f6c3ed"]]);export{_ as default};
import{_ as a,p as s,q as e,G as t,a as c,w as n,l as o,o as l,k as r,y as d,b as u,r as i,F as p,n as f,z as m,U as y}from"./index-DdiBakOJ.js";const _=a({__name:"choiceness",setup(a){const{$api:_,navTo:k}=s("globalFunction"),C=e([]);function g(){_.createRequest("/app/company/card").then((a=>{const{rows:s,total:e}=a;C.value=s}))}return t((()=>{g()})),(a,s)=>{const e=o,t=y;return l(),c(e,{class:"container"},{default:n((()=>[r(e,{class:"search-bar"},{default:n((()=>[d("精选企业")])),_:1}),r(e,{class:"grid-container"},{default:n((()=>[(l(!0),u(p,null,i(C.value,(a=>(l(),c(e,{class:"grid-item",style:f({backgroundColor:a.backgroudColor}),key:a.companyCardId},{default:n((()=>[r(t,{class:"title"},{default:n((()=>[d(m(a.name),1)])),_:2},1024),a.isCollection?(l(),c(e,{key:0,class:"status",onClick:s=>function(a){_.createRequest(`/app/company/card/collection/${a.companyCardId}`,{},"DELETE").then((a=>{g(),_.msg("取消关注")}))}(a)},{default:n((()=>[d("已关注 ✓")])),_:2},1032,["onClick"])):(l(),c(e,{key:1,class:"status",onClick:s=>function(a){_.createRequest(`/app/company/card/collection/${a.companyCardId}`,{},"PUT").then((a=>{g(),_.msg("关注成功")}))}(a)},{default:n((()=>[d("特别关注")])),_:2},1032,["onClick"]))])),_:2},1032,["style"])))),128))])),_:1})])),_:1})}}},[["__scopeId","data-v-21f6c3ed"]]);export{_ as default};

View File

@@ -1 +1 @@
import{_ as a,p as e,u as t,s,G as l,ap as o,v as c,x as i,a as r,w as n,l as u,o as d,k as p,b as m,r as g,F as f,y as _,z as x,j as b,H as w}from"./index-BoIbtAZO.js";import{_ as y,a as v}from"./matchingDegree.DIUzxusN.js";import{_ as j}from"./dict-Label.Dsm7GAlr.js";const T=a({__name:"collection",setup(a){const{$api:T,navTo:h,vacanciesTo:k}=e("globalFunction");t(),s({});const S=s({page:0,list:[],total:0,maxPage:1,pageSize:10});function z(a="add"){"refresh"===a&&(S.page=0,S.maxPage=1),"add"===a&&S.page<S.maxPage&&(S.page+=1);let e={current:S.page,pageSize:S.pageSize};T.createRequest("/app/user/collection/job",e).then((e=>{const{rows:t,total:s}=e;if("add"===a){const a=S.pageSize*(S.page-1),e=S.list.length,s=t;S.list.splice(a,e,...s)}else S.list=t;S.total=e.total,S.maxPage=Math.ceil(S.total/S.pageSize)}))}return l((()=>{z()})),o((()=>{z()})),(a,e)=>{const t=u,s=c(i("Salary-Expectation"),y),l=c(i("matchingDegree"),v);return d(),r(t,{class:"collection-content"},{default:n((()=>[p(t,{class:"one-cards"},{default:n((()=>[(d(!0),m(f,null,g(S.list,((a,e)=>(d(),r(t,{class:"card-box",key:e,onClick:e=>{return t=a.jobId,void h(`/packageA/pages/post/post?jobId=${btoa(t)}`);var t}},{default:n((()=>[p(t,{class:"box-row mar_top0"},{default:n((()=>[p(t,{class:"row-left"},{default:n((()=>[_(x(a.jobTitle),1)])),_:2},1024),p(t,{class:"row-right"},{default:n((()=>[p(s,{"max-salary":a.maxSalary,"min-salary":a.minSalary},null,8,["max-salary","min-salary"])])),_:2},1024)])),_:2},1024),p(t,{class:"box-row"},{default:n((()=>[p(t,{class:"row-left"},{default:n((()=>[a.educatio?(d(),r(t,{key:0,class:"row-tag"},{default:n((()=>[p(j,{dictType:"education",value:a.education},null,8,["value"])])),_:2},1024)):b("",!0),a.experience?(d(),r(t,{key:1,class:"row-tag"},{default:n((()=>[p(j,{dictType:"experience",value:a.experience},null,8,["value"])])),_:2},1024)):b("",!0)])),_:2},1024)])),_:2},1024),p(t,{class:"box-row mar_top0"},{default:n((()=>[p(t,{class:"row-item mineText"},{default:n((()=>[_(x(a.postingDate||"发布日期"),1)])),_:2},1024),p(t,{class:"row-item mineText"},{default:n((()=>[_(x(w(k)(a.vacancies)),1)])),_:2},1024),p(t,{class:"row-item mineText textblue"},{default:n((()=>[p(l,{job:a},null,8,["job"])])),_:2},1024),p(t,{class:"row-item"})])),_:2},1024),p(t,{class:"box-row"},{default:n((()=>[p(t,{class:"row-left mineText"},{default:n((()=>[_(x(a.companyName),1)])),_:2},1024),p(t,{class:"row-right mineText"},{default:n((()=>[_(" 青岛 "),p(j,{dictType:"area",value:a.jobLocationAreaCode},null,8,["value"])])),_:2},1024)])),_:2},1024)])),_:2},1032,["onClick"])))),128))])),_:1})])),_:1})}}},[["__scopeId","data-v-99c64065"]]);export{T as default};
import{_ as a,p as e,u as t,s,G as l,aq as o,v as c,x as i,a as r,w as n,l as u,o as d,k as p,b as m,r as g,F as f,y as _,z as x,j as b,H as w}from"./index-DdiBakOJ.js";import{_ as y,a as v}from"./matchingDegree.C4MMzh2G.js";import{_ as j}from"./dict-Label.ot3xNx0t.js";const T=a({__name:"collection",setup(a){const{$api:T,navTo:h,vacanciesTo:k}=e("globalFunction");t(),s({});const S=s({page:0,list:[],total:0,maxPage:1,pageSize:10});function z(a="add"){"refresh"===a&&(S.page=0,S.maxPage=1),"add"===a&&S.page<S.maxPage&&(S.page+=1);let e={current:S.page,pageSize:S.pageSize};T.createRequest("/app/user/collection/job",e).then((e=>{const{rows:t,total:s}=e;if("add"===a){const a=S.pageSize*(S.page-1),e=S.list.length,s=t;S.list.splice(a,e,...s)}else S.list=t;S.total=e.total,S.maxPage=Math.ceil(S.total/S.pageSize)}))}return l((()=>{z()})),o((()=>{z()})),(a,e)=>{const t=u,s=c(i("Salary-Expectation"),y),l=c(i("matchingDegree"),v);return d(),r(t,{class:"collection-content"},{default:n((()=>[p(t,{class:"one-cards"},{default:n((()=>[(d(!0),m(f,null,g(S.list,((a,e)=>(d(),r(t,{class:"card-box",key:e,onClick:e=>{return t=a.jobId,void h(`/packageA/pages/post/post?jobId=${btoa(t)}`);var t}},{default:n((()=>[p(t,{class:"box-row mar_top0"},{default:n((()=>[p(t,{class:"row-left"},{default:n((()=>[_(x(a.jobTitle),1)])),_:2},1024),p(t,{class:"row-right"},{default:n((()=>[p(s,{"max-salary":a.maxSalary,"min-salary":a.minSalary},null,8,["max-salary","min-salary"])])),_:2},1024)])),_:2},1024),p(t,{class:"box-row"},{default:n((()=>[p(t,{class:"row-left"},{default:n((()=>[a.educatio?(d(),r(t,{key:0,class:"row-tag"},{default:n((()=>[p(j,{dictType:"education",value:a.education},null,8,["value"])])),_:2},1024)):b("",!0),a.experience?(d(),r(t,{key:1,class:"row-tag"},{default:n((()=>[p(j,{dictType:"experience",value:a.experience},null,8,["value"])])),_:2},1024)):b("",!0)])),_:2},1024)])),_:2},1024),p(t,{class:"box-row mar_top0"},{default:n((()=>[p(t,{class:"row-item mineText"},{default:n((()=>[_(x(a.postingDate||"发布日期"),1)])),_:2},1024),p(t,{class:"row-item mineText"},{default:n((()=>[_(x(w(k)(a.vacancies)),1)])),_:2},1024),p(t,{class:"row-item mineText textblue"},{default:n((()=>[p(l,{job:a},null,8,["job"])])),_:2},1024),p(t,{class:"row-item"})])),_:2},1024),p(t,{class:"box-row"},{default:n((()=>[p(t,{class:"row-left mineText"},{default:n((()=>[_(x(a.companyName),1)])),_:2},1024),p(t,{class:"row-right mineText"},{default:n((()=>[_(" 青岛 "),p(j,{dictType:"area",value:a.jobLocationAreaCode},null,8,["value"])])),_:2},1024)])),_:2},1024)])),_:2},1032,["onClick"])))),128))])),_:1})])),_:1})}}},[["__scopeId","data-v-99c64065"]]);export{T as default};

View File

@@ -1 +1 @@
import{_ as a,v as s,x as e,a as l,w as t,l as d,o as n,k as i,y as c,b as o,r as u,F as f,U as r,d as _,z as m}from"./index-BoIbtAZO.js";import{_ as y}from"./uni-icons.SM4XIXQc.js";const p=a({data:()=>({companies:[{id:1,name:"湖南沃森电器科技有限公司",industry:"制造业 100-299人"},{id:2,name:"青岛成达汽车销售集团",industry:"制造业 100-299人"},{id:3,name:"青岛日森电器有限公司",industry:"制造业 100-299人"},{id:4,name:"青岛融合网络通信有限公司",industry:"制造业 100-299人"}]})},[["render",function(a,p,h,x,z,g){const j=r,k=s(e("uni-icons"),y),v=d;return n(),l(v,{class:"container"},{default:t((()=>[i(v,{class:"header"},{default:t((()=>[i(j,{class:"header-title"},{default:t((()=>[c("2024年春季青岛市商贸服务业招聘会")])),_:1}),i(v,{class:"header-info"},{default:t((()=>[i(v,{class:"location"},{default:t((()=>[i(k,{type:"location-filled",color:"#4778EC",size:"24"}),c(" 青岛 市南区延安三路105号 ")])),_:1}),i(j,{class:"date"},{default:t((()=>[c("2024年7月31日 周三")])),_:1})])),_:1})])),_:1}),i(v,{class:"company-list"},{default:t((()=>[i(j,{class:"section-title"},{default:t((()=>[c("参会单位")])),_:1}),(n(!0),o(f,null,u(z.companies,(a=>(n(),l(v,{class:"company-row",key:a.id},{default:t((()=>[i(v,{class:"left"},{default:t((()=>[i(v,{class:_(["logo","logo-"+a.id])},{default:t((()=>[c(m(a.id),1)])),_:2},1032,["class"]),i(v,{class:"company-info"},{default:t((()=>[i(j,{class:"company-name line_2"},{default:t((()=>[c(m(a.name),1)])),_:2},1024),i(j,{class:"industry"},{default:t((()=>[c(m(a.industry),1)])),_:2},1024),i(v,{class:"details"},{default:t((()=>[i(j,null,{default:t((()=>[c("查看详情")])),_:1}),i(k,{type:"star",size:"26"})])),_:1})])),_:2},1024)])),_:2},1024)])),_:2},1024)))),128))])),_:1})])),_:1})}],["__scopeId","data-v-dc2d33aa"]]);export{p as default};
import{_ as a,v as s,x as e,a as l,w as t,l as d,o as n,k as i,y as c,b as o,r as u,F as f,U as r,d as _,z as m}from"./index-DdiBakOJ.js";import{_ as y}from"./uni-icons.OqqMV__G.js";const p=a({data:()=>({companies:[{id:1,name:"湖南沃森电器科技有限公司",industry:"制造业 100-299人"},{id:2,name:"青岛成达汽车销售集团",industry:"制造业 100-299人"},{id:3,name:"青岛日森电器有限公司",industry:"制造业 100-299人"},{id:4,name:"青岛融合网络通信有限公司",industry:"制造业 100-299人"}]})},[["render",function(a,p,h,x,z,g){const j=r,k=s(e("uni-icons"),y),v=d;return n(),l(v,{class:"container"},{default:t((()=>[i(v,{class:"header"},{default:t((()=>[i(j,{class:"header-title"},{default:t((()=>[c("2024年春季青岛市商贸服务业招聘会")])),_:1}),i(v,{class:"header-info"},{default:t((()=>[i(v,{class:"location"},{default:t((()=>[i(k,{type:"location-filled",color:"#4778EC",size:"24"}),c(" 青岛 市南区延安三路105号 ")])),_:1}),i(j,{class:"date"},{default:t((()=>[c("2024年7月31日 周三")])),_:1})])),_:1})])),_:1}),i(v,{class:"company-list"},{default:t((()=>[i(j,{class:"section-title"},{default:t((()=>[c("参会单位")])),_:1}),(n(!0),o(f,null,u(z.companies,(a=>(n(),l(v,{class:"company-row",key:a.id},{default:t((()=>[i(v,{class:"left"},{default:t((()=>[i(v,{class:_(["logo","logo-"+a.id])},{default:t((()=>[c(m(a.id),1)])),_:2},1032,["class"]),i(v,{class:"company-info"},{default:t((()=>[i(j,{class:"company-name line_2"},{default:t((()=>[c(m(a.name),1)])),_:2},1024),i(j,{class:"industry"},{default:t((()=>[c(m(a.industry),1)])),_:2},1024),i(v,{class:"details"},{default:t((()=>[i(j,null,{default:t((()=>[c("查看详情")])),_:1}),i(k,{type:"star",size:"26"})])),_:1})])),_:2},1024)])),_:2},1024)])),_:2},1024)))),128))])),_:1})])),_:1})}],["__scopeId","data-v-dc2d33aa"]]);export{p as default};

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1 +1 @@
import{_ as a,p as s,s as e,G as t,a as l,w as r,l as c,o as d,k as i,y as f,b as o,r as u,F as n,S as _,z as p,H as b}from"./index-BoIbtAZO.js";const y=a({__name:"careerfair",setup(a){const{$api:y,navTo:m}=s("globalFunction"),g=e({dateList:[]});return t((()=>{g.dateList=function(){const a=new Date,s=[],e=["日","一","二","三","四","五","六"];for(let t=0;t<30;t++){const l=new Date(a);l.setDate(a.getDate()+t);const r=l.toISOString().slice(0,10).slice(8),c=e[l.getDay()];s.push({date:r,day:c})}return s[0].date="今天",s[1].date="明天",s}()})),(a,s)=>{const e=c,t=_;return d(),l(e,{class:"app-container"},{default:r((()=>[i(e,{class:"careerfair-AI"},{default:r((()=>[f("AI+就业服务程序")])),_:1}),i(e,{class:"careerfair-tab"},{default:r((()=>[i(e,{class:"careerfair-tab-options actived"},{default:r((()=>[f("现场招聘")])),_:1}),i(e,{class:"careerfair-tab-options"},{default:r((()=>[f("VR虚拟招聘会")])),_:1})])),_:1}),i(t,{"scroll-x":!0,"show-scrollbar":!1,class:"careerfair-scroll"},{default:r((()=>[i(e,{class:"careerfair-date"},{default:r((()=>[(d(!0),o(n,null,u(g.dateList,((a,s)=>(d(),l(e,{class:"date-list",key:s},{default:r((()=>[i(e,{class:"date-list-item"},{default:r((()=>[f(p(a.day),1)])),_:2},1024),i(e,{class:"date-list-item active"},{default:r((()=>[f(p(a.date),1)])),_:2},1024)])),_:2},1024)))),128))])),_:1})])),_:1}),i(t,{"scroll-y":!0,class:"careerfair-list-scroll"},{default:r((()=>[i(e,{class:"careerfair-list"},{default:r((()=>[(d(),o(n,null,u(10,((a,t)=>i(e,{class:"careerfair-list-card",key:t},{default:r((()=>[i(e,{class:"card-title"},{default:r((()=>[f("2024年春季青岛市商贸服务业招聘会")])),_:1}),i(e,{class:"card-intro"},{default:r((()=>[i(e,{class:"line_2"},{default:r((()=>[f("内容简介……")])),_:1}),i(e,{class:"intro-distance"},{default:r((()=>[f("500m以内")])),_:1})])),_:1}),i(e,{class:"card-address"},{default:r((()=>[f("市南区延安三路105号")])),_:1}),i(e,{class:"card-footer"},{default:r((()=>[i(e,{class:"cardfooter-lf"},{default:r((()=>[i(e,{class:"card-company"},{default:r((()=>[f("市南区就业人才中心")])),_:1}),i(e,{class:"card-date"},{default:r((()=>[f("7月31日周三14:00-18:00")])),_:1})])),_:1}),i(e,{class:"cardfooter-ri",onClick:s[0]||(s[0]=a=>b(m)("/packageA/pages/exhibitors/exhibitors"))},{default:r((()=>[f(" 查看详情 ")])),_:1})])),_:1})])),_:2},1024))),64))])),_:1})])),_:1})])),_:1})}}},[["__scopeId","data-v-185c4d6f"]]);export{y as default};
import{_ as a,p as s,s as e,G as t,a as l,w as r,l as c,o as d,k as i,y as f,b as o,r as u,F as n,S as _,z as p,H as b}from"./index-DdiBakOJ.js";const y=a({__name:"careerfair",setup(a){const{$api:y,navTo:m}=s("globalFunction"),g=e({dateList:[]});return t((()=>{g.dateList=function(){const a=new Date,s=[],e=["日","一","二","三","四","五","六"];for(let t=0;t<30;t++){const l=new Date(a);l.setDate(a.getDate()+t);const r=l.toISOString().slice(0,10).slice(8),c=e[l.getDay()];s.push({date:r,day:c})}return s[0].date="今天",s[1].date="明天",s}()})),(a,s)=>{const e=c,t=_;return d(),l(e,{class:"app-container"},{default:r((()=>[i(e,{class:"careerfair-AI"},{default:r((()=>[f("AI+就业服务程序")])),_:1}),i(e,{class:"careerfair-tab"},{default:r((()=>[i(e,{class:"careerfair-tab-options actived"},{default:r((()=>[f("现场招聘")])),_:1}),i(e,{class:"careerfair-tab-options"},{default:r((()=>[f("VR虚拟招聘会")])),_:1})])),_:1}),i(t,{"scroll-x":!0,"show-scrollbar":!1,class:"careerfair-scroll"},{default:r((()=>[i(e,{class:"careerfair-date"},{default:r((()=>[(d(!0),o(n,null,u(g.dateList,((a,s)=>(d(),l(e,{class:"date-list",key:s},{default:r((()=>[i(e,{class:"date-list-item"},{default:r((()=>[f(p(a.day),1)])),_:2},1024),i(e,{class:"date-list-item active"},{default:r((()=>[f(p(a.date),1)])),_:2},1024)])),_:2},1024)))),128))])),_:1})])),_:1}),i(t,{"scroll-y":!0,class:"careerfair-list-scroll"},{default:r((()=>[i(e,{class:"careerfair-list"},{default:r((()=>[(d(),o(n,null,u(10,((a,t)=>i(e,{class:"careerfair-list-card",key:t},{default:r((()=>[i(e,{class:"card-title"},{default:r((()=>[f("2024年春季青岛市商贸服务业招聘会")])),_:1}),i(e,{class:"card-intro"},{default:r((()=>[i(e,{class:"line_2"},{default:r((()=>[f("内容简介……")])),_:1}),i(e,{class:"intro-distance"},{default:r((()=>[f("500m以内")])),_:1})])),_:1}),i(e,{class:"card-address"},{default:r((()=>[f("市南区延安三路105号")])),_:1}),i(e,{class:"card-footer"},{default:r((()=>[i(e,{class:"cardfooter-lf"},{default:r((()=>[i(e,{class:"card-company"},{default:r((()=>[f("市南区就业人才中心")])),_:1}),i(e,{class:"card-date"},{default:r((()=>[f("7月31日周三14:00-18:00")])),_:1})])),_:1}),i(e,{class:"cardfooter-ri",onClick:s[0]||(s[0]=a=>b(m)("/packageA/pages/exhibitors/exhibitors"))},{default:r((()=>[f(" 查看详情 ")])),_:1})])),_:1})])),_:2},1024))),64))])),_:1})])),_:1})])),_:1})}}},[["__scopeId","data-v-185c4d6f"]]);export{y as default};

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1 +1 @@
import{_ as a,s,G as l,a as t,w as c,l as e,o as d,k as i,y as A,d as f,m as r,M as u,N as n}from"./index-BoIbtAZO.js";const o="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADIBAMAAABfdrOtAAAAIVBMVEUAAAD/3fH/3/P/3/P/3vLqi7run8b0tNb6yuX2vtzyr9G1anHtAAAABHRSTlMAgL9ARyeO/QAABGlJREFUeNrtnF9u00AQxtM4B3CDD+AaH8A0OUBtT2l4j2MfIIngPRUcwP1zgAoJnhEPnBJKSkaRdj37Z8Z1K74L/DTft+M43p0dWSiYTZMkBSiS5PTNSELBaQJHSk4zbkQCCp2FjIhZAhrlXJjgHDp0xlNGCp0qQrYyJIsJiDIwGTkGUgQZKGfKCVgolGQgRdQrpMgzIM+sIRFYK3dgiFPOwUlv3RaWYPipKyQXNAtVCpqFCm3MEjZsDl4qjc2SNizyheSChaBCyUKwFLoQ+VJSDkjRzRgDi2K5QlAFmYh0KhEXJCcKkS4l4oPk0oVgKfTjV+ZhDKwSdAsV+8Z+3zpGHxgj7jZVVe+AUqaATEwZ76u/Iimxh1uLaq8VECo8Yr+unlSTreLcJFfVQVT6pfND/hIhS8ovL7cwFTu/JvZu0X5d0GuLhqzt+jEA80hQDdmPbpHcWEFia7cwd0zeahGDDKQg3LKF0It44gapACwWcSQFyV0igU1l0o0oIhIeSOYQCVSWkBgjkYOUDpCFLaRwiOTKFgKZPeTyGAK0Yvvcb6whpX3u186Q1HVxrSz+2dnnjhBamWfutTlk7BxJbf52P3FtRYTQyUeublWNOSS1fASjluYfDlzWFr530cpcft9RO24IFoJqjf88TmwTQQE75LZCGTY8vrFEtmYh5P5IOvNKY8hiU5Fa7bRrOPVmoHY6iC+DXm+jUeDLoJ9mmaZNFo9JKrrQybBQDfm+fdSvFheWqRoVRPlr8mG71ye6EJMGjZWQn9snPWAhpmpVkImyECzFFrJWtLwKcrs9CH+qPEIpR/NOSGsbSbVSQSJlJIdQXgwkN4BsfCHFKP0P0ah+NZBGBQFvCP1W+TIh6z4gu1cDaVWQlBkCPfTJqg9I/WogTR+QJRC/jHKQOS9k91yQkhvSAvEGyQEBJWQsD4mZIbUaciIPCZkhjRoSsEKWmi84rJC1Znsj9YPQvVjIQnA3aM4JaTWQCSdE9ylqzAhZ9QGpdXuNASOk6QOy1O4CpnyQtfbj85yGeLWJNAS3f8d8EP3WRkBCvNokZIbUHVvMKRek6dg4m9MQj9dHDgi9uPYay0HwlETABek8ipHyQGp1JBiKPGTMA1mqc1eH8vUYcuOX+0FaSGsDIc51RsTHZ49IUJOuz+gL/1ZU7ZYfID9w78/5JQKVqv1qwdyvnS4SolMeLHaCPoI+Es3j6/7bH7WHPUbSsJWSAaHVwb67z5360hodtI1AQDlx2JJFFwJnq+ljtik/o5A7744qRc+io1vifuXEfAv72sJ+ZFYmObOBbsn7FfY+UCE/GiI/5CI/riM/eCQ/QtXTMJj8WNvzD+gxjRoOYWiSZfxzGIOsDCO5QxkuZhmTFjasGNLoOmEYfWuBsGHF0C5GcL7iYXiXVYheu4EKrClFJnfdCjKGeqkLUoZyCQ565UCJJBlIEWSgpgZ9jgznYlKijNmIQ1PRMuhkEiyDATNVIrKXd3HbXu9O/11BdzazIfwG2cbUbHV14zsAAAAASUVORK5CYII=",Q=a({__name:"msglog",setup(a){const Q=s({current:0,all:[{}]});function g(a){const s=a.detail.current;Q.current=s}function m(a){Q.current=a}return l((()=>{})),(a,s)=>{const l=e,I=r,C=u,S=n;return d(),t(l,{class:"app-container"},{default:c((()=>[i(l,{class:"msg-AI"},{default:c((()=>[A("AI+就业服务程序")])),_:1}),i(l,{class:"msg-tab"},{default:c((()=>[i(l,{class:f(["msg-tab-item",{actived:0===Q.current}]),onClick:s[0]||(s[0]=a=>m(0))},{default:c((()=>[A("全部")])),_:1},8,["class"]),i(l,{class:f(["msg-tab-item",{actived:1===Q.current}]),onClick:s[1]||(s[1]=a=>m(1))},{default:c((()=>[A("未读")])),_:1},8,["class"])])),_:1}),i(l,{class:"msg-list"},{default:c((()=>[i(S,{class:"swiper",current:Q.current,onChange:g},{default:c((()=>[i(C,{class:"list"},{default:c((()=>[i(l,{class:"list-card"},{default:c((()=>[i(l,{class:"card-img"},{default:c((()=>[i(I,{class:"card-img-flame",src:o})])),_:1}),i(l,{class:"card-info"},{default:c((()=>[i(l,{class:"info-title"},{default:c((()=>[A("今日推荐")])),_:1}),i(l,{class:"info-text"},{default:c((()=>[A("这里有9个职位很适合你快来看看吧")])),_:1})])),_:1}),i(l,{class:"card-time"},{default:c((()=>[A("刚才")])),_:1})])),_:1})])),_:1}),i(C,{class:"list"},{default:c((()=>[i(l,{class:"list-card"},{default:c((()=>[i(l,{class:"card-img"},{default:c((()=>[i(I,{class:"card-img-flame",src:o})])),_:1}),i(l,{class:"card-info"},{default:c((()=>[i(l,{class:"info-title"},{default:c((()=>[A("今日推荐")])),_:1}),i(l,{class:"info-text"},{default:c((()=>[A("这里有9个职位很适合你快来看看吧")])),_:1})])),_:1}),i(l,{class:"card-time"},{default:c((()=>[A("刚才")])),_:1})])),_:1})])),_:1})])),_:1},8,["current"])])),_:1})])),_:1})}}},[["__scopeId","data-v-6119d1bb"]]);export{Q as default};
import{_ as a,s,G as l,a as t,w as c,l as e,o as d,k as i,y as A,d as f,m as r,M as u,N as n}from"./index-DdiBakOJ.js";const o="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADIBAMAAABfdrOtAAAAIVBMVEUAAAD/3fH/3/P/3/P/3vLqi7run8b0tNb6yuX2vtzyr9G1anHtAAAABHRSTlMAgL9ARyeO/QAABGlJREFUeNrtnF9u00AQxtM4B3CDD+AaH8A0OUBtT2l4j2MfIIngPRUcwP1zgAoJnhEPnBJKSkaRdj37Z8Z1K74L/DTft+M43p0dWSiYTZMkBSiS5PTNSELBaQJHSk4zbkQCCp2FjIhZAhrlXJjgHDp0xlNGCp0qQrYyJIsJiDIwGTkGUgQZKGfKCVgolGQgRdQrpMgzIM+sIRFYK3dgiFPOwUlv3RaWYPipKyQXNAtVCpqFCm3MEjZsDl4qjc2SNizyheSChaBCyUKwFLoQ+VJSDkjRzRgDi2K5QlAFmYh0KhEXJCcKkS4l4oPk0oVgKfTjV+ZhDKwSdAsV+8Z+3zpGHxgj7jZVVe+AUqaATEwZ76u/Iimxh1uLaq8VECo8Yr+unlSTreLcJFfVQVT6pfND/hIhS8ovL7cwFTu/JvZu0X5d0GuLhqzt+jEA80hQDdmPbpHcWEFia7cwd0zeahGDDKQg3LKF0It44gapACwWcSQFyV0igU1l0o0oIhIeSOYQCVSWkBgjkYOUDpCFLaRwiOTKFgKZPeTyGAK0Yvvcb6whpX3u186Q1HVxrSz+2dnnjhBamWfutTlk7BxJbf52P3FtRYTQyUeublWNOSS1fASjluYfDlzWFr530cpcft9RO24IFoJqjf88TmwTQQE75LZCGTY8vrFEtmYh5P5IOvNKY8hiU5Fa7bRrOPVmoHY6iC+DXm+jUeDLoJ9mmaZNFo9JKrrQybBQDfm+fdSvFheWqRoVRPlr8mG71ye6EJMGjZWQn9snPWAhpmpVkImyECzFFrJWtLwKcrs9CH+qPEIpR/NOSGsbSbVSQSJlJIdQXgwkN4BsfCHFKP0P0ah+NZBGBQFvCP1W+TIh6z4gu1cDaVWQlBkCPfTJqg9I/WogTR+QJRC/jHKQOS9k91yQkhvSAvEGyQEBJWQsD4mZIbUaciIPCZkhjRoSsEKWmi84rJC1Znsj9YPQvVjIQnA3aM4JaTWQCSdE9ylqzAhZ9QGpdXuNASOk6QOy1O4CpnyQtfbj85yGeLWJNAS3f8d8EP3WRkBCvNokZIbUHVvMKRek6dg4m9MQj9dHDgi9uPYay0HwlETABek8ipHyQGp1JBiKPGTMA1mqc1eH8vUYcuOX+0FaSGsDIc51RsTHZ49IUJOuz+gL/1ZU7ZYfID9w78/5JQKVqv1qwdyvnS4SolMeLHaCPoI+Es3j6/7bH7WHPUbSsJWSAaHVwb67z5360hodtI1AQDlx2JJFFwJnq+ljtik/o5A7744qRc+io1vifuXEfAv72sJ+ZFYmObOBbsn7FfY+UCE/GiI/5CI/riM/eCQ/QtXTMJj8WNvzD+gxjRoOYWiSZfxzGIOsDCO5QxkuZhmTFjasGNLoOmEYfWuBsGHF0C5GcL7iYXiXVYheu4EKrClFJnfdCjKGeqkLUoZyCQ565UCJJBlIEWSgpgZ9jgznYlKijNmIQ1PRMuhkEiyDATNVIrKXd3HbXu9O/11BdzazIfwG2cbUbHV14zsAAAAASUVORK5CYII=",Q=a({__name:"msglog",setup(a){const Q=s({current:0,all:[{}]});function g(a){const s=a.detail.current;Q.current=s}function m(a){Q.current=a}return l((()=>{})),(a,s)=>{const l=e,I=r,C=u,S=n;return d(),t(l,{class:"app-container"},{default:c((()=>[i(l,{class:"msg-AI"},{default:c((()=>[A("AI+就业服务程序")])),_:1}),i(l,{class:"msg-tab"},{default:c((()=>[i(l,{class:f(["msg-tab-item",{actived:0===Q.current}]),onClick:s[0]||(s[0]=a=>m(0))},{default:c((()=>[A("全部")])),_:1},8,["class"]),i(l,{class:f(["msg-tab-item",{actived:1===Q.current}]),onClick:s[1]||(s[1]=a=>m(1))},{default:c((()=>[A("未读")])),_:1},8,["class"])])),_:1}),i(l,{class:"msg-list"},{default:c((()=>[i(S,{class:"swiper",current:Q.current,onChange:g},{default:c((()=>[i(C,{class:"list"},{default:c((()=>[i(l,{class:"list-card"},{default:c((()=>[i(l,{class:"card-img"},{default:c((()=>[i(I,{class:"card-img-flame",src:o})])),_:1}),i(l,{class:"card-info"},{default:c((()=>[i(l,{class:"info-title"},{default:c((()=>[A("今日推荐")])),_:1}),i(l,{class:"info-text"},{default:c((()=>[A("这里有9个职位很适合你快来看看吧")])),_:1})])),_:1}),i(l,{class:"card-time"},{default:c((()=>[A("刚才")])),_:1})])),_:1})])),_:1}),i(C,{class:"list"},{default:c((()=>[i(l,{class:"list-card"},{default:c((()=>[i(l,{class:"card-img"},{default:c((()=>[i(I,{class:"card-img-flame",src:o})])),_:1}),i(l,{class:"card-info"},{default:c((()=>[i(l,{class:"info-title"},{default:c((()=>[A("今日推荐")])),_:1}),i(l,{class:"info-text"},{default:c((()=>[A("这里有9个职位很适合你快来看看吧")])),_:1})])),_:1}),i(l,{class:"card-time"},{default:c((()=>[A("刚才")])),_:1})])),_:1})])),_:1})])),_:1},8,["current"])])),_:1})])),_:1})}}},[["__scopeId","data-v-6119d1bb"]]);export{Q as default};

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -19,7 +19,7 @@
var vConsole = new window.VConsole();
vConsole.destroy();
</script -->
<script type="module" crossorigin src="/app/assets/index-BoIbtAZO.js"></script>
<script type="module" crossorigin src="/app/assets/index-DdiBakOJ.js"></script>
<link rel="stylesheet" crossorigin href="/app/assets/index-DQAaRz8Z.css">
</head>
<body>

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 962 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 953 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 791 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 631 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 808 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 333 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 700 B

After

Width:  |  Height:  |  Size: 398 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 328 B

After

Width:  |  Height:  |  Size: 210 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.2 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 469 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 442 B

After

Width:  |  Height:  |  Size: 215 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 556 B

After

Width:  |  Height:  |  Size: 543 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 37 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 691 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 452 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 384 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 564 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 347 B

After

Width:  |  Height:  |  Size: 335 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 791 B

After

Width:  |  Height:  |  Size: 734 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.3 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 807 B

After

Width:  |  Height:  |  Size: 799 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 1008 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 841 B

After

Width:  |  Height:  |  Size: 776 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 847 B

After

Width:  |  Height:  |  Size: 391 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 474 B

After

Width:  |  Height:  |  Size: 263 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 419 B

After

Width:  |  Height:  |  Size: 267 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 984 B

After

Width:  |  Height:  |  Size: 394 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 692 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 509 B

After

Width:  |  Height:  |  Size: 947 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 662 B

After

Width:  |  Height:  |  Size: 950 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 677 B

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 412 B

After

Width:  |  Height:  |  Size: 697 B

Some files were not shown because too many files have changed in this diff Show More