Xiao_123 vor 8 Monaten
Ursprung
Commit
49d21ca635
7 geänderte Dateien mit 192 neuen und 26 gelöschten Zeilen
  1. 13 0
      api/user.js
  2. 2 2
      pages.json
  3. 1 1
      pages/index/my.vue
  4. 90 0
      pagesA/collect/company.vue
  5. 26 0
      pagesA/collect/index.vue
  6. 1 1
      pagesA/interview/index.vue
  7. 59 22
      pagesA/seenMe/index.vue

+ 13 - 0
api/user.js

@@ -38,6 +38,19 @@ export const getJobFavoriteList = (params) => {
   })
   })
 }
 }
 
 
+// 获取关注的企业列表
+export const getSubscribeEnterprise = (params) => {
+  return request({
+    url: '/app-api/menduner/system/person/get/enterprise/subscribe/page',
+    method: 'GET',
+    params,
+    custom: {
+      showLoading: false,
+      auth: true
+    }
+  })
+}
+
 // 谁看过我
 // 谁看过我
 export const getInterestedMePage = (params) => {
 export const getInterestedMePage = (params) => {
   return request({
   return request({

+ 2 - 2
pages.json

@@ -43,9 +43,9 @@
 					}
 					}
 				},
 				},
 				{
 				{
-					"path": "collect/position",
+					"path": "collect/index",
 					"style": {
 					"style": {
-						"navigationBarTitleText": "职位收藏"
+						"navigationBarTitleText": "我的收藏"
 					}
 					}
 				},
 				},
 				{
 				{

+ 1 - 1
pages/index/my.vue

@@ -55,7 +55,7 @@ const itemList = [
 
 
 const list = [
 const list = [
 	{	title:'附件简历',	path:'/pagesA/resume/index'	},					
 	{	title:'附件简历',	path:'/pagesA/resume/index'	},					
-	{ title:'职位收藏', path:'/pagesA/collect/position' },
+	{ title:'我的收藏', path:'/pagesA/collect/index' },
 	{ title:'切换为招聘者', rightTex: '我要招人' }
 	{ title:'切换为招聘者', rightTex: '我要招人' }
 ]
 ]
 
 

+ 90 - 0
pagesA/collect/company.vue

@@ -0,0 +1,90 @@
+<template>
+  <view class="defaultBgc">
+    <scroll-view class="scrollBox" scroll-y="true" @scrolltolower="loadingMore" style="height: 100vh;">
+      <view v-if="items.length">
+        <view v-for="(item, index) in items" :key="index" class="ss-m-t-20" @click="toDetail(item)">
+          <view style="background-color: #fff;" class="ss-p-30">
+            <view class="d-flex align-center">
+              <image :src="item.logoUrl || 'https://minio.citupro.com/dev/menduner/company-avatar.png'" class="avatar" style="width: 60px; height: 60px;"></image>
+              <view style="flex: 1;" class="ss-m-l-30">
+                <view class="enterprise-name ellipsis">{{ item.name }}</view>
+                <view class="ss-m-y-15 font-size-12">
+                  <span class="tag-gap color-666">
+                    <span>{{ item.financingName }}</span>
+                    <span class="ss-m-x-10" v-if="item.financingName && item.industryName">|</span>
+                    <span>{{item.industryName }}</span>
+                    <span class="ss-m-x-10" v-if="item.scaleName">|</span>
+                    <span>{{item.scaleName }}</span>
+                  </span>
+                </view>
+                <view>
+                  <uni-tag 
+                    v-for="(tag, i) in item.tagList || []"
+                    :key="i"
+                    class="ss-m-r-10"
+                    :text="tag"
+                    inverted="false"
+                    size="mini"
+                    custom-style="background-color: #eef1f7;color:#7f828b;border-color:#eef1f7;"
+                  />
+                </view>
+              </view>
+            </view>
+          </view>
+        </view>
+        <uni-load-more :status="status" />
+      </view>
+      <view v-else class="nodata-img-parent">
+        <image src="https://minio.citupro.com/dev/static/nodata.png" mode="widthFix" style="width: 100vw;height: 100vh;"></image>
+      </view>
+    </scroll-view>
+  </view>
+</template>
+
+<script setup>
+import { ref } from 'vue'
+import { getSubscribeEnterprise } from '@/api/user'
+import { dealDictArrayData } from '@/utils/position'
+
+const items = ref([])
+const status = ref('more')
+const queryParams = ref({
+  pageSize: 10,
+  pageNo: 1
+})
+
+const getList = async () => {
+  const { data } = await getSubscribeEnterprise(queryParams.value)
+  let list = data?.list || []
+  if (list?.length) {
+    list = dealDictArrayData([], list)
+    items.value = items.value.concat(list)
+  }
+  status.value = list?.length < queryParams.value.pageSize ? 'noMore' : 'more'
+}
+getList()
+
+// 加载更多
+const loadingMore = () => {
+  status.value = 'loading'
+  queryParams.value.pageNo++
+  getList()
+}
+
+// 企业详情
+const toDetail = (item) => {
+  uni.navigateTo({
+    url: `/pagesB/companyDetail/index?id=${item.id}`
+  })
+}
+</script>
+
+<style scoped lang="scss">
+.enterprise-name {
+  color: #333;
+  font-weight: bold;
+  font-size: 16px;
+  width: 70vw;
+  max-width: 70vw;
+}
+</style>

+ 26 - 0
pagesA/collect/index.vue

@@ -0,0 +1,26 @@
+<template>
+  <view>
+    <uni-segmented-control :current="current" :values="controlList" @clickItem="handleChange" styleType="text" activeColor="#00897B"></uni-segmented-control>
+      <Position v-if="current === 0"></Position>
+      <Company v-else></Company>
+  </view>
+</template>
+
+<script setup>
+import { ref } from 'vue'
+import Position from './position.vue'
+import Company from './company.vue'
+
+const current = ref(0)
+const controlList = ['职位', '企业']
+
+const handleChange = (e) => {
+  current.value = e.currentIndex
+}
+
+const loadingMore = () => {}
+</script>
+
+<style scoped lang="scss">
+
+</style>

+ 1 - 1
pagesA/interview/index.vue

@@ -30,7 +30,7 @@ import Items from './item.vue'
 import { userStore } from '@/store/user'
 import { userStore } from '@/store/user'
 
 
 const useUserStore = userStore()
 const useUserStore = userStore()
-const current = ref(1)
+const current = ref(0)
 const controlList = ['已投递', '待同意', '待面试', '已完成', '已拒绝']
 const controlList = ['已投递', '待同意', '待面试', '已完成', '已拒绝']
 const statusList = [0, 1, 3, 98]
 const statusList = [0, 1, 3, 98]
 
 

+ 59 - 22
pagesA/seenMe/index.vue

@@ -2,30 +2,49 @@
   <view class="defaultBgc" style="height: 100vh;">
   <view class="defaultBgc" style="height: 100vh;">
     <scroll-view class="scrollBox" scroll-y="true" @scrolltolower="loadingMore">
     <scroll-view class="scrollBox" scroll-y="true" @scrolltolower="loadingMore">
       <view v-if="list.length > 0">
       <view v-if="list.length > 0">
-        <uni-card v-for="(item,index) in list" :key="index" :is-shadow="true" :border='false' shadow="0px 0px 3px 1px rgba(0,0,0,0.1)" >
-          <view class="f-horizon">
-            <image class="avatar" :src="item.enterprise.logoUrl || 'https://minio.citupro.com/dev/menduner/company-avatar.png'"></image>
-            <view class="f-straight" style="width:60vw;">
-              <view class="title-des">{{ item.enterprise.name }}</view>
-              <view class="s-word">
-                <span class="dis">
-                  <view class="show-more" :style="{'width': item.enterprise.industryName == '' ? '15vw' : '30vw'}">
-                    {{ item.enterprise.industryName ? item.enterprise.industryName : '行业未知' }}
-                  </view>
-                  <span class="divider ss-m-10"> | </span>
-                  <span>{{ item.enterprise.scaleName || '规模未知' }}</span>
-                </span>
-              </view>
+        <view v-for="(item, index) in list" :key="index" class="ss-m-t-20">
+          <view class="sub-li-bottom">
+            <view class="avatarBox">
+              <image class="r-avatar" :src="getUserAvatar(item.contact.avatar, item.contact.sex)"></image>
+            </view>
+            <view class="ss-m-l-30">
+              <span>{{ item.contact?.name || ' -- ' }}</span>
+              <span class="ss-m-x-10"> | </span>
+              <span>{{ item.post?.nameCn || '--' }}</span>
             </view>
             </view>
           </view>
           </view>
-          <view style="border-bottom: 1px dashed #ccc;"></view>
-          <view class="ss-m-t-20 d-flex align-center justify-end">
-            <image class="r-avatar" :src="getUserAvatar(item.contact.avatar, item.contact.sex)"></image>
-            <text class="ss-m-l-20">
-              {{ item.contact.name }} | {{ item.post.nameCn }}
-            </text>
+          <view style="background-color: #fff;" class="ss-p-30">
+            <view class="d-flex align-center">
+              <image :src="item.enterprise.logoUrl" class="avatar" style="width: 60px; height: 60px;"></image>
+              <view style="flex: 1;" class="ss-m-l-30">
+                <view class="enterprise-name ellipsis">{{ item.enterprise.name }}</view>
+                <!-- 行业规模 -->
+                <view class="ss-m-y-15 font-size-12">
+                  <span class="tag-gap color-666">
+                    <span>{{ item.enterprise.financingName }}</span>
+                    <span class="ss-m-x-10" v-if="item.enterprise.financingName && item.enterprise.industryName">|</span>
+                    <span>{{item.enterprise.industryName }}</span>
+                    <span class="ss-m-x-10" v-if="item.enterprise.industryName && item.enterprise.scaleName">|</span>
+                    <span>{{item.enterprise.scaleName }}</span>
+                  </span>
+                </view>
+                <!-- 标签 -->
+                <view>
+                  <uni-tag 
+                    v-for="(tag, i) in item.enterprise.tagList || []"
+                    :key="i"
+                    class="ss-m-r-10"
+                    :text="tag"
+                    inverted="false"
+                    size="mini"
+                    custom-style="background-color: #eef1f7;color:#7f828b;border-color:#eef1f7;"
+                  />
+                </view>
+                <view class="color-666 font-size-13 ss-m-t-20">查看时间:{{ timesTampChange(item.updateTime) }}</view>
+              </view>
+            </view>
           </view>
           </view>
-        </uni-card>
+        </view>
         <uni-load-more :status="status" />
         <uni-load-more :status="status" />
       </view>
       </view>
       <view v-else class="nodata-img-parent">
       <view v-else class="nodata-img-parent">
@@ -40,6 +59,7 @@ import { ref } from 'vue'
 import { getInterestedMePage } from '@/api/user'
 import { getInterestedMePage } from '@/api/user'
 import { dealDictObjData } from '@/utils/position'
 import { dealDictObjData } from '@/utils/position'
 import { getUserAvatar } from '@/utils/avatar'
 import { getUserAvatar } from '@/utils/avatar'
+import { timesTampChange } from '@/utils/date'
 
 
 const status = ref('more')
 const status = ref('more')
 const queryParams = ref({
 const queryParams = ref({
@@ -71,5 +91,22 @@ const loadingMore = () => {
 </script>
 </script>
 
 
 <style scoped lang="scss">
 <style scoped lang="scss">
-
+.sub-li-bottom {
+  display: flex;
+  align-items: center;
+  background: linear-gradient(90deg, #f5fcfc 0, #fcfbfa 100%);
+  font-size: 13px;
+  padding: 5px 30rpx;
+  .avatarBox {
+    max-width: 40px;
+    max-height: 40px;
+  }
+}
+.enterprise-name {
+  color: #333;
+  font-weight: bold;
+  font-size: 16px;
+  width: 70vw;
+  max-width: 70vw;
+}
 </style>
 </style>