|
@@ -66,13 +66,13 @@
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
|
<!-- 添加求职意向 -->
|
|
<!-- 添加求职意向 -->
|
|
|
- <view class="topbg-yx-box-r flex align-center" @click="addDirection">
|
|
|
|
|
|
|
+ <view v-if="isExpanded" class="topbg-yx-box-r flex align-center" @click="addDirection">
|
|
|
<image src="../../static/images/index/Attachment.svg" class="attachment-icon" />
|
|
<image src="../../static/images/index/Attachment.svg" class="attachment-icon" />
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
|
<!-- 第二行:筛选 -->
|
|
<!-- 第二行:筛选 -->
|
|
|
- <view class="topbg-sx-box flex justify-between align-center">
|
|
|
|
|
|
|
+ <view v-if="isExpanded" class="topbg-sx-box flex justify-between align-center">
|
|
|
<!-- 分类 -->
|
|
<!-- 分类 -->
|
|
|
<view class="topbg-sx-box-l flex align-center">
|
|
<view class="topbg-sx-box-l flex align-center">
|
|
|
<view class="topbg-sx-box-l-i" :class="currentSx == index ? 'active3' : ''"
|
|
<view class="topbg-sx-box-l-i" :class="currentSx == index ? 'active3' : ''"
|
|
@@ -117,7 +117,7 @@
|
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
|
<!-- 从事方向 -->
|
|
<!-- 从事方向 -->
|
|
|
- <view class="direction-tip">
|
|
|
|
|
|
|
+ <view v-if="isExpanded" class="direction-tip">
|
|
|
<view class="direction-tip-title">请选择您的跨境标签</view>
|
|
<view class="direction-tip-title">请选择您的跨境标签</view>
|
|
|
<view class="direction-tip-subtitle">您的跨境标签将用于为您推荐更匹配的职位</view>
|
|
<view class="direction-tip-subtitle">您的跨境标签将用于为您推荐更匹配的职位</view>
|
|
|
|
|
|
|
@@ -137,6 +137,10 @@
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
|
|
|
+ <!-- 展开收起 -->
|
|
|
|
|
+ <view style="text-align: right;" @click="isExpanded = !isExpanded">
|
|
|
|
|
+ <u-icon :name="isExpanded ? 'arrow-up' : 'arrow-down'" color="#016bf6"></u-icon>
|
|
|
|
|
+ </view>
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
@@ -596,6 +600,7 @@ export default {
|
|
|
companyStatus: '',
|
|
companyStatus: '',
|
|
|
XCXIsSelect: '是',
|
|
XCXIsSelect: '是',
|
|
|
bannerList: [], //企业端轮播图
|
|
bannerList: [], //企业端轮播图
|
|
|
|
|
+ isExpanded: true, // 控制展开/收起状态
|
|
|
bannerListuser: [], //用户端轮播图
|
|
bannerListuser: [], //用户端轮播图
|
|
|
gridlist: [], //用户端分类
|
|
gridlist: [], //用户端分类
|
|
|
gongao: [], //公告
|
|
gongao: [], //公告
|