lifanagju_citu 8 ماه پیش
والد
کامیت
6ee9728b77
8فایلهای تغییر یافته به همراه131 افزوده شده و 724 حذف شده
  1. 15 0
      api/position.js
  2. 43 36
      components/PositionList/index.vue
  3. 17 0
      pages.json
  4. 26 7
      pages/index/position.vue
  5. 10 0
      pagesB/companyDetail/index.vue
  6. 10 0
      pagesB/positionDetail/index.vue
  7. 10 1
      static/style/index.scss
  8. 0 680
      utils/testData.js

+ 15 - 0
api/position.js

@@ -0,0 +1,15 @@
+import request from "@/utils/request"
+
+// 根据条件搜索招聘职位
+export const getJobAdvertisedSearch = (params) => {
+  return request({
+    url: '/menduner/system/job/advertised/search',
+    method: 'GET',
+    params,
+    custom: {
+      showLoading: false,
+      auth: true
+    }
+  })
+}
+

+ 43 - 36
components/PositionList/index.vue

@@ -1,54 +1,53 @@
 <template>
   <view v-if="list.length > 0">
-    <view v-for="(item, index) in list" @click="toDetail(item)" :key="index" class="list-shape">
+    <view v-for="(item, index) in list" @click="toDetail(item)" :key="index">
+      <view class="list-shape">
         <!-- 职位+热度 -->
         <view class="mar">
-          <span style="font-size: 16px;font-weight: 700;color: black;">{{item.enterpriseRecruit.enterpriseRecruitJobName}}</span>
-          <span class="mar" v-if="item.enterpriseRecruit.hot">
+          <span style="font-size: 16px;font-weight: 700;color: black;">{{item.job?.name}}</span>
+          <span class="mar" v-if="item.job?.hire">
             <uni-icons type="fire-filled" size="25" color="#ff770d"></uni-icons>
           </span>
-          <span class="salary-text">{{item.enterpriseRecruit.enterpriseRecruitSalary + '/天'}}</span>
+          <span class="salary-text">{{ item.job?.payFrom }}-{{ item.job?.payTo }}/{{ item.job?.payName }}</span>
         </view>
         <!-- 工作地+频次+周期 -->
-        <view style="font-size: 13px;">
+        <view style="font-size: 13px;" class="mt">
           <span class="tag-gap">
-            <span>{{item.enterpriseRecruit.workCityName }}</span>
+            <span>{{item.job?.areaName }}</span>
             <span class="viewider">|</span>
-            <span>5 / 每周</span>
+            <span>{{item.job?.eduName }}</span>
+            <span class="viewider">|</span>
+            <span>{{item.job?.expName }}</span>
           </span>
-          <span class="date-time">
+          <!-- <span class="date-time">
             <span>2024-07-14</span>
-          </span>
+          </span> -->
         </view>
         <!-- 岗位tag  -->
-        <view>
+        <view class="mt">
           <uni-tag 
-            v-for="(tag,i) in item.enterpriseRecruitTags"
+            v-for="(tag,i) in item.enterprise?.welfareList || []"
             :key="i"
             class="tag-gap"
-            :text="tag.title"
+            :text="tag"
             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=sub-li-bottom>
+        <view>
+          <span style="font-weight: bold;" class="mr">{{ item.enterprise?.anotherName || ' -- ' }}</span>
+          <span>{{ item.enterprise?.industryName || '行业未知' }}</span>
+          <span class="divider tag-gap1"> | </span>
+          <span class="mr">{{ item.enterprise?.scaleName || '规模未知' }}</span>
         </view>
-        <!-- <view class="divided-line"></view> -->
+        <view class="avatarBox">
+          <image class="enterAvatar ml" :src="item.enterprise?.logoUrl || 'https://minio.citupro.com/dev/menduner/company-avatar.png'"></image>
+        </view>
+      </view>
     </view>
     <view v-if="props.noMore" class="noMore">暂无更多数据</view>
   </view>
@@ -58,18 +57,13 @@
 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}`
-  // })
+  uni.navigateTo({
+  	url:`/pagesB/companyDetail/index?jobId=${item.job?.id}`
+  })
 }
 
 </script>
@@ -101,4 +95,17 @@ const toDetail = (item) =>{
 	border-radius: 50%;
 	margin: auto;
 }
+
+.sub-li-bottom {
+  display: flex;
+  justify-content:space-between;
+  align-items: center;
+  background: linear-gradient(90deg, #f5fcfc 0, #fcfbfa 100%);
+  font-size: 13px;
+  padding: 5px 30rpx;
+  .avatarBox {
+    max-width: 40px;
+    max-height: 40px;
+  }
+}
 </style>

+ 17 - 0
pages.json

@@ -60,6 +60,23 @@
 					}
 				}
 			]
+		},
+		{
+			"root": "pagesB",
+			"pages": [
+				{
+					"path": "companyDetail/index",
+					"style": {
+						"navigationBarTitleText": "企业详情"
+					}
+				},
+				{
+					"path": "positionDetail/index",
+					"style": {
+						"navigationBarTitleText": "职位详情"
+					}
+				}
+			]
 		}
 	],
 	"globalStyle": {

+ 26 - 7
pages/index/position.vue

@@ -1,6 +1,6 @@
 <template>
   <view class="box defaultBgc">
-    <scroll-view class="scrollBox" scroll-y="true" @scrolltolower="getData" @refresherrefresh="refresh" style="position:relative;">
+    <scroll-view class="scrollBox" scroll-y="true" @scrolltolower="loadingMore" @refresherrefresh="refresh" style="position:relative;">
       <uni-search-bar
         class="ss-flex-1 white-bgc"
         radius="8"
@@ -24,8 +24,11 @@ import SwiperAd from '@/components/SwiperAd'
 import FilterList from '@/components/FilterList'
 import PositionList from '@/components/PositionList'
 import { positionList, swiperAdListTest } from '@/utils/testData'
-import { ref } from 'vue'
+import { dealDictObjData } from '@/utils/position'
+import { getJobAdvertisedSearch } from '@/api/position';
+import { ref, reactive } from 'vue'
 
+let searchContent = ''
 const swiperAdList = ref(swiperAdListTest)
 const filterList = ref([
   { label: '行业' },
@@ -38,25 +41,41 @@ const filterList = ref([
 // 
 const positionListData = ref([])
 const noMore = ref(false)
-let page = { pageSize: 8, pageNo: 1 }
+const query = reactive({ pageSize: 8, pageNo: 1 })
 //
-const getData = (name) => {
-  if (positionListData.value.length > 30) return noMore.value = true
-  positionListData.value = positionListData.value.concat(positionList)
+const getData = async () => {
+  query.content = searchContent
+  const res = await getJobAdvertisedSearch(query)
+  const list = res?.data?.list || []
+  if (list?.length) {
+    list.forEach(e => {
+      e.active = false
+      e.job = { ...e.job, ...dealDictObjData({}, e.job) }
+      e.enterprise = { ...e.enterprise, ...dealDictObjData({}, e.enterprise)}
+    })
+    positionListData.value = positionListData.value.concat(list)
+  }
+  if (list?.length < query.pageSize) noMore.value = true
+  console.log('列表', positionListData.value)
 }
 getData()
 
 const onSearch = (name) => {
   page.pageNo = 1
+  noMore.value = false
+  searchContent = name
   positionListData.value = []
   getData(name)
 }
 
-const refresh = () => {
+const loadingMore = () => { // 加载更多
   page.pageNo++
   getData()
 }
 
+const refresh = () => {  // 下拉刷新
+  onSearch(searchContent)
+}
 
 </script>
 

+ 10 - 0
pagesB/companyDetail/index.vue

@@ -0,0 +1,10 @@
+<template>
+  <div>company</div>
+</template>
+
+<script setup>
+</script>
+
+<style scoped lang="scss">
+
+</style>

+ 10 - 0
pagesB/positionDetail/index.vue

@@ -0,0 +1,10 @@
+<template>
+  <div>position</div>
+</template>
+
+<script setup>
+</script>
+
+<style scoped lang="scss">
+
+</style>

+ 10 - 1
static/style/index.scss

@@ -96,16 +96,25 @@
 	color: #ff770d;
 }
 .list-shape {
-	padding: 10px 30rpx;
+	padding: 10px 30rpx 10px;
   margin-top: 10px;
   background-color: #fff;
 }
 .tag-gap{
 	margin: 10rpx 10rpx 10rpx 0;
 }
+.tag-gap1{
+	margin: 10rpx;
+}
 .viewider{
 	margin: 0 10rpx;
 }
+.mt{
+	margin-top: 10rpx;
+}
+.mb{
+	margin-bottom: 10rpx;
+}
 .ml{
 	margin-left: 20rpx;
 }

+ 0 - 680
utils/testData.js

@@ -108,684 +108,4 @@ export const positionList = [
     ], 
     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
-  }
 ]