Browse Source

职位列表

lifanagju_citu 8 months ago
parent
commit
5d0d69c9bd
5 changed files with 1029 additions and 18 deletions
  1. 16 0
      components/GoTopIcon/index.vue
  2. 104 0
      components/PositionList/index.vue
  3. 46 18
      pages/index/position.vue
  4. 77 0
      static/style/index.scss
  5. 786 0
      utils/testData.js

+ 16 - 0
components/GoTopIcon/index.vue

@@ -0,0 +1,16 @@
+<template>
+	<view v-if="showGoTop" style="position: fixed;right: 30rpx;bottom: 13vh;" @tap="goTop">
+    <uni-icons color="#ff770d" type="icon-4fanhuidingbucheng" size="37" custom-prefix="iconfont"/>
+  </view>
+</template>
+
+<script setup>
+
+//点击回到顶部
+const showGoTop = false
+const goTop = () => {
+}
+</script>
+
+<style lang="scss">
+</style>

+ 104 - 0
components/PositionList/index.vue

@@ -0,0 +1,104 @@
+<template>
+  <view v-if="list.length > 0">
+    <view v-for="(item, index) in list" @click="toDetail(item)" :key="index" class="list-shape">
+        <!-- 职位+热度 -->
+        <view class="mar">
+          <span style="font-size: 16px;font-weight: 700;color: black;">{{item.enterpriseRecruit.enterpriseRecruitJobName + (index+1)}}</span>
+          <span class="mar" v-if="item.enterpriseRecruit.hot">
+            <uni-icons type="fire-filled" size="25" color="#ff770d"></uni-icons>
+          </span>
+          <span class="salary-text">{{item.enterpriseRecruit.enterpriseRecruitSalary + '/天'}}</span>
+        </view>
+        <!-- 工作地+频次+周期 -->
+        <view style="font-size: 13px;">
+          <span class="tag-gap">
+            <span>{{item.enterpriseRecruit.workCityName }}</span>
+            <span class="viewider">|</span>
+            <span>5 / 每周</span>
+          </span>
+          <span class="date-time">
+            <span>2024-07-14</span>
+          </span>
+        </view>
+        <!-- 岗位tag  -->
+        <view>
+          <uni-tag 
+            v-for="(tag,i) in item.enterpriseRecruitTags"
+            :key="i"
+            class="tag-gap"
+            :text="tag.title"
+            inverted="false"
+            size="mini"
+            custom-style="background-color: #eef1f7;color:#7f828b;border-color:#eef1f7;"
+          />
+        </view>
+        <!-- 企业信息 -->
+        <view v-if="!!item.enterprise.enterpriseName" class="mar">
+          <view style="margin:10px 0px;font-size:13px;" class="f-horizon">
+            <span style="display: flex;">
+              <image  class="enterAvatar" :src="item.enterprise.headImg ? item.enterprise.headImg : (item.enterprise.employeeSex == '女' ? 'https://minio.citupro.com/dev/static/4.png' : 'https://minio.citupro.com/dev/static/14.png')"></image>
+              <span class="ml" style="width:50vw;">
+                <view style="width:50vw;font-weight: bold;">{{item.enterprise.enterpriseName}} </view>
+                <view class="dis">
+                  <view class="show-more" :style="{'width': item.enterprise.enterpriseIndustry == '' ? '14vw' : '26vw'}">{{!!item.enterprise.enterpriseIndustry ? item.enterprise.enterpriseIndustry : '行业未知'}}</view>
+                  <span class="divider tag-gap"> | </span>
+                  <span>{{ !!item.enterprise.scaleChinese ? item.enterprise.scaleChinese : '人数未知' }}</span>
+                </view>
+              </span>
+            </span>
+          </view>
+        </view>
+        <!-- <view class="divided-line"></view> -->
+    </view>
+    <view v-if="props.noMore" class="noMore">暂无更多数据</view>
+  </view>
+</template>
+<script setup>
+// import { ref } from 'vue'
+const props = defineProps({
+  list: { type: Array, default: () => [] },
+  noMore: { type: Boolean, default: false },
+  // idValue: { type: String, default: 'id' },
+  // labelValue: { type: String, default: 'label' },
+  // selectIdValue: { type: String, default: 'id' },
+  // selectLabelValue: { type: String, default: 'label' },
+  // useApiData: { type: Boolean, default: true },
+})
+
+//岗位详情
+const toDetail = (item) =>{
+  // uni.navigateTo({
+  // 	url:`/pages/index/positionDetail?studenId=${studentId}&&enterpriseRecruitId=${enterpriseRecruitId}`
+  // })
+}
+
+</script>
+
+<style scoped lang="scss">
+.noMore{
+  margin: 20px 0;
+}
+
+.mar{
+  margin: 5px 0;
+}
+
+.date-time{
+  color:#d9d0d2;
+  float: right;
+}
+
+.divided-line {
+  width: 100%;
+  height: 1px;
+  background-color: #f0f2f7;
+  margin: 20px 0;
+
+}
+.enterAvatar{
+	width: 40px;
+	height: 40px;
+	border-radius: 50%;
+	margin: auto;
+}
+</style>

+ 46 - 18
pages/index/position.vue

@@ -1,17 +1,20 @@
 <template>
-  <view class="box">
-    <uni-search-bar
-      class="ss-flex-1 white-bgc"
-      radius="8"
-      placeholder="请输入关键字"
-      cancelButton="none"
-      :focus="false"
-      @confirm="onSearch($event.value)"
-    />
-    <view class="block">
-      <SwiperAd class="pb-10" :list="swiperAdList"></SwiperAd>
-      <FilterList class="pb-10" :list="filterList" idValue="label"></FilterList>
-    </view>
+  <view class="box defaultBgc">
+    <scroll-view class="scrollBox" scroll-y="true" @scrolltolower="getData" @refresherrefresh="refresh" style="position:relative;">
+      <uni-search-bar
+        class="ss-flex-1 white-bgc"
+        radius="8"
+        placeholder="请输入关键字"
+        cancelButton="none"
+        :focus="false"
+        @confirm="onSearch($event.value)"
+      />
+      <view class="block">
+        <SwiperAd class="pb-20" :list="swiperAdList"></SwiperAd>
+        <FilterList class="pb-10" :list="filterList" idValue="label"></FilterList>
+      </view>
+      <PositionList class="pb-10" :list="positionListData" :noMore="noMore"></PositionList>
+    </scroll-view>
   </view>
 </template>
 
@@ -19,6 +22,8 @@
 import SwiperAd from '@/components/SwiperAd'
 // import SearchBar from '@/components/SearchBar'
 import FilterList from '@/components/FilterList'
+import PositionList from '@/components/PositionList'
+import { positionList } from '@/utils/testData'
 import { ref } from 'vue'
 
 const swiperAdList = ref([
@@ -34,22 +39,45 @@ const filterList = ref([
   { label: '工作经验' },
 ])
 
-const onSearch = (val) => {
-  console.log('onSearch', val)
+// 
+const positionListData = ref([])
+const noMore = ref(false)
+let page = { pageSize: 8, pageNo: 1 }
+//
+const getData = (name) => {
+  if (positionListData.value.length > 30) return noMore.value = true
+  positionListData.value = positionListData.value.concat(positionList)
+  console.log('name', name)
+  console.log('positionListData', positionListData.value)
 }
+getData()
+
+const onSearch = (name) => {
+  page.pageNo = 1
+  getData(name)
+}
+
+const refresh = () => {
+  page.pageNo++
+  getData()
+}
+
 
 </script>
 
 <style scoped lang="scss">
 .pb-10 { padding-bottom: 10px; }
+.pb-20 { padding-bottom: 20px; }
 .box {
-  height: 100vh;
-  background-color: #f2f4f7;
-  // background-color: var(--default-bgc);
+  height: calc(100vh - 110px);
+  overflow: hidden;
   .block{
     margin-bottom: 10px;
     padding: 0 10px;
     background-color: #fff;
   }
 }
+.scrollBox{
+  height: 100%;
+}
 </style>

+ 77 - 0
static/style/index.scss

@@ -64,6 +64,83 @@
   // text-decoration: underline;
 }
 
+.defaultBgc {
+  // height: 100vh;
+  background-color: #f2f4f7;
+}
+
+// 火苗
+// 水平左右分
+.f-horizon {
+	display: flex;
+	justify-content: space-between;
+	align-items: center;
+	flex-direction: row;
+	margin:15rpx;
+}
+// 水平居中
+.f-horizon-center{
+	display: flex;
+	justify-content: center;
+	align-items: center;
+	flex-direction: row;
+	margin:5rpx;
+}
+/* 列表触底暂无更多 */
+.noMore{
+	text-align:center;
+	color:grey;
+}
+.salary-text {
+	float: right;
+	color: #ff770d;
+}
+.list-shape {
+	padding: 10px 30rpx;
+  margin-top: 10px;
+  background-color: #fff;
+}
+.tag-gap{
+	margin: 10rpx 10rpx 10rpx 0;
+}
+.viewider{
+	margin: 0 10rpx;
+}
+.ml{
+	margin-left: 20rpx;
+}
+.mr {
+	margin-right: 20rpx;
+}
+//公司名称
+.cer-end{
+  position: absolute;
+  top: 85%;
+  right: 16%;
+}
+.cer-text{
+  text-decoration: underline;
+  margin: 0 5rpx;
+}
+//一行展示不全...
+.dis{
+	display: flex;
+	align-items: center;
+}
+.show-more{
+	width: 26vw;
+	white-space: nowrap;
+	overflow: hidden;
+	text-overflow: ellipsis;
+}
+.mr-10{
+	margin-right: 10rpx;
+}
+.divider {
+	color:#e4d4d2;
+}
+
+
 // 高亮
 .default-active {
   color: var(--v-primary-base) !important;

+ 786 - 0
utils/testData.js

@@ -0,0 +1,786 @@
+export const positionList = [
+  {
+    enterprise: {
+      authStatus: "1", 
+      cityCode: "", 
+      contacts: "", 
+      createDate: null, 
+      deleted: 0, 
+      email: "", 
+      employeeSex: "男", 
+      enterpriseAddress: "", 
+      enterpriseEmployeeNickname: "苗世航", 
+      enterpriseEmployeePosition: "董事长", 
+      enterpriseId: "1812393946853281792", 
+      enterpriseIndustry: "", 
+      enterpriseName: "六六六公司", 
+      enterpriseStatus: "审核中", 
+      enterpriselndustryId: 0, 
+      headImg: "", 
+      introduce: "", 
+      phone: "15929954826", 
+      photos: [ ], 
+      provinceCode: "", 
+      regionCode: "", 
+      scale: 0, 
+      site: "", 
+      superAdmin: 0, 
+      tages: [ ], 
+      tradeCategory: 0, 
+      updateDate: null, 
+      userId: "502", 
+      scaleChinese: null, 
+      tradeCategoryChinese: null
+    }, 
+    enterpriseRecruit: {
+      addrress: "灞桥区十里铺南街1666号", 
+      eduName: "硕士", 
+      enterpriseId: "1812393946853281792", 
+      enterpriseRecruitDetail: "能熟练利用规划软件", 
+      enterpriseRecruitHitNum: 0, 
+      enterpriseRecruitId: "1812396722849189888", 
+      enterpriseRecruitJobName: "旅游策划师", 
+      enterpriseRecruitSalary: 400, 
+      enterpriseRecruitSendDate: "2024-07-14 16:00:26", 
+      enterpriseRecruitStatus: "招聘中", 
+      enterpriseRecruitType: 2, 
+      frequency: {
+        day: 5, 
+        dateType: "week"
+      }, 
+      hot: 1, 
+      jobCode: "280200", 
+      jobDept: "规划部", 
+      jobName: "旅游产品开发/策划", 
+      majorCode: "120901K", 
+      majorName: "旅游管理", 
+      responsibilityDetail: "进行景区规划与活动策划组织", 
+      sort: "1720944346", 
+      workCityCode: "610100", 
+      workCityName: "西安市", 
+      workProvinceCode: "610000", 
+      workProvinceName: "陕西省", 
+      enterpriseRecruitTypeChinese: null, 
+      hotChinese: null
+    }, 
+    enterpriseRecruitTags: [
+      {
+        createDate: "2024-07-14 16:00:26", 
+        enterpriseRecruitId: "1812396722849189888", 
+        enterpriseRecruitTagId: "1812396722866073601", 
+        title: "双休"
+      }, 
+      {
+        createDate: "2024-07-14 16:00:26", 
+        enterpriseRecruitId: "1812396722849189888", 
+        enterpriseRecruitTagId: "1812396722870267906", 
+        title: "氛围好"
+      }, 
+      {
+        createDate: "2024-07-14 16:00:26", 
+        enterpriseRecruitId: "1812396722849189888", 
+        enterpriseRecruitTagId: "1812396722882850817", 
+        title: "五险一金"
+      }, 
+      {
+        createDate: "2024-07-14 16:00:26", 
+        enterpriseRecruitId: "1812396722849189888", 
+        enterpriseRecruitTagId: "1812396722882850818", 
+        title: "生育补贴"
+      }, 
+      {
+        createDate: "2024-07-14 16:00:26", 
+        enterpriseRecruitId: "1812396722849189888", 
+        enterpriseRecruitTagId: "1812396722887045122", 
+        title: "住房补贴"
+      }, 
+      {
+        createDate: "2024-07-14 16:00:26", 
+        enterpriseRecruitId: "1812396722849189888", 
+        enterpriseRecruitTagId: "1812396722895433729", 
+        title: "弹性工作"
+      }
+    ], 
+    waitStudentCount: 0
+  }, 
+  {
+    enterprise: {
+      authStatus: "1", 
+      cityCode: "", 
+      contacts: "", 
+      createDate: null, 
+      deleted: 0, 
+      email: "", 
+      employeeSex: "女", 
+      enterpriseAddress: "", 
+      enterpriseEmployeeNickname: "韩书阁", 
+      enterpriseEmployeePosition: "财务总监", 
+      enterpriseId: "1812394557917237248", 
+      enterpriseIndustry: "", 
+      enterpriseName: "starto", 
+      enterpriseStatus: "审核中", 
+      enterpriselndustryId: 0, 
+      headImg: "", 
+      introduce: "", 
+      phone: "17599282551", 
+      photos: [ ], 
+      provinceCode: "", 
+      regionCode: "", 
+      scale: 0, 
+      site: "", 
+      superAdmin: 0, 
+      tages: [ ], 
+      tradeCategory: 0, 
+      updateDate: null, 
+      userId: "503", 
+      scaleChinese: null, 
+      tradeCategoryChinese: null
+    }, 
+    enterpriseRecruit: {
+      addrress: "未央区", 
+      eduName: "本科及以上", 
+      enterpriseId: "1812394557917237248", 
+      enterpriseRecruitDetail: "有责任心 工作能力强", 
+      enterpriseRecruitHitNum: 0, 
+      enterpriseRecruitId: "1812395800572071936", 
+      enterpriseRecruitJobName: "会计", 
+      enterpriseRecruitSalary: 300, 
+      enterpriseRecruitSendDate: "2024-07-14 15:56:46", 
+      enterpriseRecruitStatus: "招聘中", 
+      enterpriseRecruitType: 0, 
+      frequency: {
+        day: 5, 
+        dateType: "week"
+      }, 
+      hot: 1, 
+      jobCode: "150300", 
+      jobDept: "财务部", 
+      jobName: "财务", 
+      majorCode: "120213T", 
+      majorName: "财务会计教育", 
+      responsibilityDetail: "基本财务数据处理", 
+      sort: "1720944180", 
+      workCityCode: "610100", 
+      workCityName: "西安市", 
+      workProvinceCode: "610000", 
+      workProvinceName: "陕西省", 
+      enterpriseRecruitTypeChinese: null, 
+      hotChinese: null
+    }, 
+    enterpriseRecruitTags: [
+      {
+        createDate: "2024-07-14 15:59:06", 
+        enterpriseRecruitId: "1812395800572071936", 
+        enterpriseRecruitTagId: "1812396386508058626", 
+        title: "双休"
+      }, 
+      {
+        createDate: "2024-07-14 15:59:06", 
+        enterpriseRecruitId: "1812395800572071936", 
+        enterpriseRecruitTagId: "1812396386516447233", 
+        title: "氛围好"
+      }, 
+      {
+        createDate: "2024-07-14 15:59:06", 
+        enterpriseRecruitId: "1812395800572071936", 
+        enterpriseRecruitTagId: "1812396386520641538", 
+        title: "五险一金"
+      }, 
+      {
+        createDate: "2024-07-14 15:59:06", 
+        enterpriseRecruitId: "1812395800572071936", 
+        enterpriseRecruitTagId: "1812396386524835841", 
+        title: "生育补贴"
+      }
+    ], 
+    waitStudentCount: 0
+  }, 
+  {
+    enterprise: {
+      authStatus: "1", 
+      cityCode: "", 
+      contacts: "", 
+      createDate: null, 
+      deleted: 0, 
+      email: "", 
+      employeeSex: "女", 
+      enterpriseAddress: "", 
+      enterpriseEmployeeNickname: "黄美微", 
+      enterpriseEmployeePosition: "财务总监", 
+      enterpriseId: "1812394677467484160", 
+      enterpriseIndustry: "", 
+      enterpriseName: "shu有限责任公司", 
+      enterpriseStatus: "审核中", 
+      enterpriselndustryId: 0, 
+      headImg: "", 
+      introduce: "", 
+      phone: "18574436661", 
+      photos: [ ], 
+      provinceCode: "", 
+      regionCode: "", 
+      scale: 0, 
+      site: "", 
+      superAdmin: 0, 
+      tages: [ ], 
+      tradeCategory: 0, 
+      updateDate: null, 
+      userId: "509", 
+      scaleChinese: null, 
+      tradeCategoryChinese: null
+    }, 
+    enterpriseRecruit: {
+      addrress: "雨花区", 
+      eduName: "本科", 
+      enterpriseId: "1812394677467484160", 
+      enterpriseRecruitDetail: "", 
+      enterpriseRecruitHitNum: 0, 
+      enterpriseRecruitId: "1812395760172535808", 
+      enterpriseRecruitJobName: "农学专家", 
+      enterpriseRecruitSalary: 800, 
+      enterpriseRecruitSendDate: "2024-07-14 15:56:37", 
+      enterpriseRecruitStatus: "招聘中", 
+      enterpriseRecruitType: 0, 
+      frequency: {
+        day: 5, 
+        dateType: "week"
+      }, 
+      hot: 1, 
+      jobCode: "190700", 
+      jobDept: "专家部", 
+      jobName: "特长培训", 
+      majorCode: "90101", 
+      majorName: "农学", 
+      responsibilityDetail: "责任心强,有专业技能知识", 
+      sort: "1720944401", 
+      workCityCode: "430100", 
+      workCityName: "长沙市", 
+      workProvinceCode: "430000", 
+      workProvinceName: "湖南省", 
+      enterpriseRecruitTypeChinese: null, 
+      hotChinese: null
+    }, 
+    enterpriseRecruitTags: [
+      {
+        createDate: "2024-07-14 15:56:37", 
+        enterpriseRecruitId: "1812395760172535808", 
+        enterpriseRecruitTagId: "1812395760189419521", 
+        title: "双休"
+      }, 
+      {
+        createDate: "2024-07-14 15:56:37", 
+        enterpriseRecruitId: "1812395760172535808", 
+        enterpriseRecruitTagId: "1812395760193613826", 
+        title: "下午茶"
+      }, 
+      {
+        createDate: "2024-07-14 15:56:37", 
+        enterpriseRecruitId: "1812395760172535808", 
+        enterpriseRecruitTagId: "1812395760202002433", 
+        title: "氛围好"
+      }, 
+      {
+        createDate: "2024-07-14 15:56:37", 
+        enterpriseRecruitId: "1812395760172535808", 
+        enterpriseRecruitTagId: "1812395760202002434", 
+        title: "交通补助"
+      }, 
+      {
+        createDate: "2024-07-14 15:56:37", 
+        enterpriseRecruitId: "1812395760172535808", 
+        enterpriseRecruitTagId: "1812395760210391042", 
+        title: "弹性工作"
+      }
+    ], 
+    waitStudentCount: 0
+  }, 
+  {
+    enterprise: {
+      authStatus: "1", 
+      cityCode: "", 
+      contacts: "", 
+      createDate: null, 
+      deleted: 0, 
+      email: "", 
+      employeeSex: "男", 
+      enterpriseAddress: "", 
+      enterpriseEmployeeNickname: "苗世航", 
+      enterpriseEmployeePosition: "董事长", 
+      enterpriseId: "1812393946853281792", 
+      enterpriseIndustry: "", 
+      enterpriseName: "六六六公司", 
+      enterpriseStatus: "审核中", 
+      enterpriselndustryId: 0, 
+      headImg: "", 
+      introduce: "", 
+      phone: "15929954826", 
+      photos: [ ], 
+      provinceCode: "", 
+      regionCode: "", 
+      scale: 0, 
+      site: "", 
+      superAdmin: 0, 
+      tages: [ ], 
+      tradeCategory: 0, 
+      updateDate: null, 
+      userId: "502", 
+      scaleChinese: null, 
+      tradeCategoryChinese: null
+    }, 
+    enterpriseRecruit: {
+      addrress: "灞桥区十里铺南街1666号", 
+      eduName: "大学本科", 
+      enterpriseId: "1812393946853281792", 
+      enterpriseRecruitDetail: "有土地利用设计师一级资格证", 
+      enterpriseRecruitHitNum: 0, 
+      enterpriseRecruitId: "1812395658003484672", 
+      enterpriseRecruitJobName: "土地利用师", 
+      enterpriseRecruitSalary: 300, 
+      enterpriseRecruitSendDate: "2024-07-14 15:56:12", 
+      enterpriseRecruitStatus: "招聘中", 
+      enterpriseRecruitType: 1, 
+      frequency: {
+        day: 5, 
+        dateType: "week"
+      }, 
+      hot: 1, 
+      jobCode: "120400", 
+      jobDept: "土地运用科", 
+      jobName: "高端设计职位", 
+      majorCode: "090205T", 
+      majorName: "土地科学与技术", 
+      responsibilityDetail: "在土地搬运与利用率设计过程起设计规划作用", 
+      sort: "1720944217", 
+      workCityCode: "610100", 
+      workCityName: "西安市", 
+      workProvinceCode: "610000", 
+      workProvinceName: "陕西省", 
+      enterpriseRecruitTypeChinese: null, 
+      hotChinese: null
+    }, 
+    enterpriseRecruitTags: [
+      {
+        createDate: "2024-07-14 15:56:12", 
+        enterpriseRecruitId: "1812395658003484672", 
+        enterpriseRecruitTagId: "1812395658020368386", 
+        title: "双休"
+      }, 
+      {
+        createDate: "2024-07-14 15:56:12", 
+        enterpriseRecruitId: "1812395658003484672", 
+        enterpriseRecruitTagId: "1812395658024562689", 
+        title: "氛围好"
+      }, 
+      {
+        createDate: "2024-07-14 15:56:12", 
+        enterpriseRecruitId: "1812395658003484672", 
+        enterpriseRecruitTagId: "1812395658028756993", 
+        title: "五险一金"
+      }, 
+      {
+        createDate: "2024-07-14 15:56:12", 
+        enterpriseRecruitId: "1812395658003484672", 
+        enterpriseRecruitTagId: "1812395658032951297", 
+        title: "住房补贴"
+      }, 
+      {
+        createDate: "2024-07-14 15:56:12", 
+        enterpriseRecruitId: "1812395658003484672", 
+        enterpriseRecruitTagId: "1812395658037145602", 
+        title: "弹性工作"
+      }
+    ], 
+    waitStudentCount: 0
+  },
+  {
+    enterprise: {
+      authStatus: "1", 
+      cityCode: "", 
+      contacts: "", 
+      createDate: null, 
+      deleted: 0, 
+      email: "", 
+      employeeSex: "男", 
+      enterpriseAddress: "", 
+      enterpriseEmployeeNickname: "苗世航", 
+      enterpriseEmployeePosition: "董事长", 
+      enterpriseId: "1812393946853281792", 
+      enterpriseIndustry: "", 
+      enterpriseName: "六六六公司", 
+      enterpriseStatus: "审核中", 
+      enterpriselndustryId: 0, 
+      headImg: "", 
+      introduce: "", 
+      phone: "15929954826", 
+      photos: [ ], 
+      provinceCode: "", 
+      regionCode: "", 
+      scale: 0, 
+      site: "", 
+      superAdmin: 0, 
+      tages: [ ], 
+      tradeCategory: 0, 
+      updateDate: null, 
+      userId: "502", 
+      scaleChinese: null, 
+      tradeCategoryChinese: null
+    }, 
+    enterpriseRecruit: {
+      addrress: "灞桥区十里铺南街1666号", 
+      eduName: "硕士", 
+      enterpriseId: "1812393946853281792", 
+      enterpriseRecruitDetail: "能熟练利用规划软件", 
+      enterpriseRecruitHitNum: 0, 
+      enterpriseRecruitId: "1812396722849189888", 
+      enterpriseRecruitJobName: "旅游策划师", 
+      enterpriseRecruitSalary: 400, 
+      enterpriseRecruitSendDate: "2024-07-14 16:00:26", 
+      enterpriseRecruitStatus: "招聘中", 
+      enterpriseRecruitType: 2, 
+      frequency: {
+        day: 5, 
+        dateType: "week"
+      }, 
+      hot: 1, 
+      jobCode: "280200", 
+      jobDept: "规划部", 
+      jobName: "旅游产品开发/策划", 
+      majorCode: "120901K", 
+      majorName: "旅游管理", 
+      responsibilityDetail: "进行景区规划与活动策划组织", 
+      sort: "1720944346", 
+      workCityCode: "610100", 
+      workCityName: "西安市", 
+      workProvinceCode: "610000", 
+      workProvinceName: "陕西省", 
+      enterpriseRecruitTypeChinese: null, 
+      hotChinese: null
+    }, 
+    enterpriseRecruitTags: [
+      {
+        createDate: "2024-07-14 16:00:26", 
+        enterpriseRecruitId: "1812396722849189888", 
+        enterpriseRecruitTagId: "1812396722866073601", 
+        title: "双休"
+      }, 
+      {
+        createDate: "2024-07-14 16:00:26", 
+        enterpriseRecruitId: "1812396722849189888", 
+        enterpriseRecruitTagId: "1812396722870267906", 
+        title: "氛围好"
+      }, 
+      {
+        createDate: "2024-07-14 16:00:26", 
+        enterpriseRecruitId: "1812396722849189888", 
+        enterpriseRecruitTagId: "1812396722882850817", 
+        title: "五险一金"
+      }, 
+      {
+        createDate: "2024-07-14 16:00:26", 
+        enterpriseRecruitId: "1812396722849189888", 
+        enterpriseRecruitTagId: "1812396722882850818", 
+        title: "生育补贴"
+      }, 
+      {
+        createDate: "2024-07-14 16:00:26", 
+        enterpriseRecruitId: "1812396722849189888", 
+        enterpriseRecruitTagId: "1812396722887045122", 
+        title: "住房补贴"
+      }, 
+      {
+        createDate: "2024-07-14 16:00:26", 
+        enterpriseRecruitId: "1812396722849189888", 
+        enterpriseRecruitTagId: "1812396722895433729", 
+        title: "弹性工作"
+      }
+    ], 
+    waitStudentCount: 0
+  }, 
+  {
+    enterprise: {
+      authStatus: "1", 
+      cityCode: "", 
+      contacts: "", 
+      createDate: null, 
+      deleted: 0, 
+      email: "", 
+      employeeSex: "女", 
+      enterpriseAddress: "", 
+      enterpriseEmployeeNickname: "韩书阁", 
+      enterpriseEmployeePosition: "财务总监", 
+      enterpriseId: "1812394557917237248", 
+      enterpriseIndustry: "", 
+      enterpriseName: "starto", 
+      enterpriseStatus: "审核中", 
+      enterpriselndustryId: 0, 
+      headImg: "", 
+      introduce: "", 
+      phone: "17599282551", 
+      photos: [ ], 
+      provinceCode: "", 
+      regionCode: "", 
+      scale: 0, 
+      site: "", 
+      superAdmin: 0, 
+      tages: [ ], 
+      tradeCategory: 0, 
+      updateDate: null, 
+      userId: "503", 
+      scaleChinese: null, 
+      tradeCategoryChinese: null
+    }, 
+    enterpriseRecruit: {
+      addrress: "未央区", 
+      eduName: "本科及以上", 
+      enterpriseId: "1812394557917237248", 
+      enterpriseRecruitDetail: "有责任心 工作能力强", 
+      enterpriseRecruitHitNum: 0, 
+      enterpriseRecruitId: "1812395800572071936", 
+      enterpriseRecruitJobName: "会计", 
+      enterpriseRecruitSalary: 300, 
+      enterpriseRecruitSendDate: "2024-07-14 15:56:46", 
+      enterpriseRecruitStatus: "招聘中", 
+      enterpriseRecruitType: 0, 
+      frequency: {
+        day: 5, 
+        dateType: "week"
+      }, 
+      hot: 1, 
+      jobCode: "150300", 
+      jobDept: "财务部", 
+      jobName: "财务", 
+      majorCode: "120213T", 
+      majorName: "财务会计教育", 
+      responsibilityDetail: "基本财务数据处理", 
+      sort: "1720944180", 
+      workCityCode: "610100", 
+      workCityName: "西安市", 
+      workProvinceCode: "610000", 
+      workProvinceName: "陕西省", 
+      enterpriseRecruitTypeChinese: null, 
+      hotChinese: null
+    }, 
+    enterpriseRecruitTags: [
+      {
+        createDate: "2024-07-14 15:59:06", 
+        enterpriseRecruitId: "1812395800572071936", 
+        enterpriseRecruitTagId: "1812396386508058626", 
+        title: "双休"
+      }, 
+      {
+        createDate: "2024-07-14 15:59:06", 
+        enterpriseRecruitId: "1812395800572071936", 
+        enterpriseRecruitTagId: "1812396386516447233", 
+        title: "氛围好"
+      }, 
+      {
+        createDate: "2024-07-14 15:59:06", 
+        enterpriseRecruitId: "1812395800572071936", 
+        enterpriseRecruitTagId: "1812396386520641538", 
+        title: "五险一金"
+      }, 
+      {
+        createDate: "2024-07-14 15:59:06", 
+        enterpriseRecruitId: "1812395800572071936", 
+        enterpriseRecruitTagId: "1812396386524835841", 
+        title: "生育补贴"
+      }
+    ], 
+    waitStudentCount: 0
+  }, 
+  {
+    enterprise: {
+      authStatus: "1", 
+      cityCode: "", 
+      contacts: "", 
+      createDate: null, 
+      deleted: 0, 
+      email: "", 
+      employeeSex: "女", 
+      enterpriseAddress: "", 
+      enterpriseEmployeeNickname: "黄美微", 
+      enterpriseEmployeePosition: "财务总监", 
+      enterpriseId: "1812394677467484160", 
+      enterpriseIndustry: "", 
+      enterpriseName: "shu有限责任公司", 
+      enterpriseStatus: "审核中", 
+      enterpriselndustryId: 0, 
+      headImg: "", 
+      introduce: "", 
+      phone: "18574436661", 
+      photos: [ ], 
+      provinceCode: "", 
+      regionCode: "", 
+      scale: 0, 
+      site: "", 
+      superAdmin: 0, 
+      tages: [ ], 
+      tradeCategory: 0, 
+      updateDate: null, 
+      userId: "509", 
+      scaleChinese: null, 
+      tradeCategoryChinese: null
+    }, 
+    enterpriseRecruit: {
+      addrress: "雨花区", 
+      eduName: "本科", 
+      enterpriseId: "1812394677467484160", 
+      enterpriseRecruitDetail: "", 
+      enterpriseRecruitHitNum: 0, 
+      enterpriseRecruitId: "1812395760172535808", 
+      enterpriseRecruitJobName: "农学专家", 
+      enterpriseRecruitSalary: 800, 
+      enterpriseRecruitSendDate: "2024-07-14 15:56:37", 
+      enterpriseRecruitStatus: "招聘中", 
+      enterpriseRecruitType: 0, 
+      frequency: {
+        day: 5, 
+        dateType: "week"
+      }, 
+      hot: 1, 
+      jobCode: "190700", 
+      jobDept: "专家部", 
+      jobName: "特长培训", 
+      majorCode: "90101", 
+      majorName: "农学", 
+      responsibilityDetail: "责任心强,有专业技能知识", 
+      sort: "1720944401", 
+      workCityCode: "430100", 
+      workCityName: "长沙市", 
+      workProvinceCode: "430000", 
+      workProvinceName: "湖南省", 
+      enterpriseRecruitTypeChinese: null, 
+      hotChinese: null
+    }, 
+    enterpriseRecruitTags: [
+      {
+        createDate: "2024-07-14 15:56:37", 
+        enterpriseRecruitId: "1812395760172535808", 
+        enterpriseRecruitTagId: "1812395760189419521", 
+        title: "双休"
+      }, 
+      {
+        createDate: "2024-07-14 15:56:37", 
+        enterpriseRecruitId: "1812395760172535808", 
+        enterpriseRecruitTagId: "1812395760193613826", 
+        title: "下午茶"
+      }, 
+      {
+        createDate: "2024-07-14 15:56:37", 
+        enterpriseRecruitId: "1812395760172535808", 
+        enterpriseRecruitTagId: "1812395760202002433", 
+        title: "氛围好"
+      }, 
+      {
+        createDate: "2024-07-14 15:56:37", 
+        enterpriseRecruitId: "1812395760172535808", 
+        enterpriseRecruitTagId: "1812395760202002434", 
+        title: "交通补助"
+      }, 
+      {
+        createDate: "2024-07-14 15:56:37", 
+        enterpriseRecruitId: "1812395760172535808", 
+        enterpriseRecruitTagId: "1812395760210391042", 
+        title: "弹性工作"
+      }
+    ], 
+    waitStudentCount: 0
+  }, 
+  {
+    enterprise: {
+      authStatus: "1", 
+      cityCode: "", 
+      contacts: "", 
+      createDate: null, 
+      deleted: 0, 
+      email: "", 
+      employeeSex: "男", 
+      enterpriseAddress: "", 
+      enterpriseEmployeeNickname: "苗世航", 
+      enterpriseEmployeePosition: "董事长", 
+      enterpriseId: "1812393946853281792", 
+      enterpriseIndustry: "", 
+      enterpriseName: "六六六公司", 
+      enterpriseStatus: "审核中", 
+      enterpriselndustryId: 0, 
+      headImg: "", 
+      introduce: "", 
+      phone: "15929954826", 
+      photos: [ ], 
+      provinceCode: "", 
+      regionCode: "", 
+      scale: 0, 
+      site: "", 
+      superAdmin: 0, 
+      tages: [ ], 
+      tradeCategory: 0, 
+      updateDate: null, 
+      userId: "502", 
+      scaleChinese: null, 
+      tradeCategoryChinese: null
+    }, 
+    enterpriseRecruit: {
+      addrress: "灞桥区十里铺南街1666号", 
+      eduName: "大学本科", 
+      enterpriseId: "1812393946853281792", 
+      enterpriseRecruitDetail: "有土地利用设计师一级资格证", 
+      enterpriseRecruitHitNum: 0, 
+      enterpriseRecruitId: "1812395658003484672", 
+      enterpriseRecruitJobName: "土地利用师", 
+      enterpriseRecruitSalary: 300, 
+      enterpriseRecruitSendDate: "2024-07-14 15:56:12", 
+      enterpriseRecruitStatus: "招聘中", 
+      enterpriseRecruitType: 1, 
+      frequency: {
+        day: 5, 
+        dateType: "week"
+      }, 
+      hot: 1, 
+      jobCode: "120400", 
+      jobDept: "土地运用科", 
+      jobName: "高端设计职位", 
+      majorCode: "090205T", 
+      majorName: "土地科学与技术", 
+      responsibilityDetail: "在土地搬运与利用率设计过程起设计规划作用", 
+      sort: "1720944217", 
+      workCityCode: "610100", 
+      workCityName: "西安市", 
+      workProvinceCode: "610000", 
+      workProvinceName: "陕西省", 
+      enterpriseRecruitTypeChinese: null, 
+      hotChinese: null
+    }, 
+    enterpriseRecruitTags: [
+      {
+        createDate: "2024-07-14 15:56:12", 
+        enterpriseRecruitId: "1812395658003484672", 
+        enterpriseRecruitTagId: "1812395658020368386", 
+        title: "双休"
+      }, 
+      {
+        createDate: "2024-07-14 15:56:12", 
+        enterpriseRecruitId: "1812395658003484672", 
+        enterpriseRecruitTagId: "1812395658024562689", 
+        title: "氛围好"
+      }, 
+      {
+        createDate: "2024-07-14 15:56:12", 
+        enterpriseRecruitId: "1812395658003484672", 
+        enterpriseRecruitTagId: "1812395658028756993", 
+        title: "五险一金"
+      }, 
+      {
+        createDate: "2024-07-14 15:56:12", 
+        enterpriseRecruitId: "1812395658003484672", 
+        enterpriseRecruitTagId: "1812395658032951297", 
+        title: "住房补贴"
+      }, 
+      {
+        createDate: "2024-07-14 15:56:12", 
+        enterpriseRecruitId: "1812395658003484672", 
+        enterpriseRecruitTagId: "1812395658037145602", 
+        title: "弹性工作"
+      }
+    ], 
+    waitStudentCount: 0
+  }
+]