浏览代码

看过我

Xiao_123 10 月之前
父节点
当前提交
65f747f85f
共有 3 个文件被更改,包括 16 次插入2 次删除
  1. 2 1
      src/locales/en.js
  2. 2 1
      src/locales/zh-CN.js
  3. 12 0
      src/views/recruit/personal/PersonalCenter/components/seenMe.vue

+ 2 - 1
src/locales/en.js

@@ -160,7 +160,8 @@ export default {
     positionInformation: 'Basic information of the position',
     positionInformation: 'Basic information of the position',
     requirementDesc: 'We will accurately recommend suitable talents to you based on the following conditions. Please fill in as much detail as possible',
     requirementDesc: 'We will accurately recommend suitable talents to you based on the following conditions. Please fill in as much detail as possible',
     talentSearch: 'Talent search',
     talentSearch: 'Talent search',
-    refreshTime: 'Refresh time'
+    refreshTime: 'Refresh time',
+    viewTime: 'View time'
   },
   },
   enterprise: {
   enterprise: {
     companyInfo: 'Company Information',
     companyInfo: 'Company Information',

+ 2 - 1
src/locales/zh-CN.js

@@ -160,7 +160,8 @@ export default {
     positionInformation: '职位基本信息',
     positionInformation: '职位基本信息',
     requirementDesc: '我们将通过以下条件,为您精确推荐合适的人才,请尽量详细填写',
     requirementDesc: '我们将通过以下条件,为您精确推荐合适的人才,请尽量详细填写',
     talentSearch: '人才搜索',
     talentSearch: '人才搜索',
-    refreshTime: '刷新时间'
+    refreshTime: '刷新时间',
+    viewTime: '查看时间:'
   },
   },
   enterprise: {
   enterprise: {
     companyInfo: '公司信息',
     companyInfo: '公司信息',

+ 12 - 0
src/views/recruit/personal/PersonalCenter/components/seenMe.vue

@@ -22,6 +22,9 @@
             </div>
             </div>
           </div>
           </div>
         </div>
         </div>
+        <div class="footer">
+          {{ $t('position.viewTime') + timesTampChange(item.updateTime)  }}
+        </div>
       </div>
       </div>
       <CtPagination
       <CtPagination
         :total="total"
         :total="total"
@@ -40,6 +43,7 @@ defineOptions({ name: 'position-seen-me' })
 import { ref } from 'vue'
 import { ref } from 'vue'
 import { getInterestedMePage } from '@/api/recruit/personal/personalCenter'
 import { getInterestedMePage } from '@/api/recruit/personal/personalCenter'
 import { dealDictObjData } from '@/utils/position'
 import { dealDictObjData } from '@/utils/position'
+import { timesTampChange } from '@/utils/date'
 import Empty from '@/components/Empty'
 import Empty from '@/components/Empty'
 
 
 const total = ref(0)
 const total = ref(0)
@@ -123,4 +127,12 @@ const handleEnterprise = (item) => {
     }
     }
   }
   }
 }
 }
+.footer {
+  height: 36px;
+  line-height: 36px;
+  padding: 0px 20px;
+  font-size: 14px;
+  color: var(--color-999);
+  background: linear-gradient(90deg, #f5fcfc 0, #fcfbfa 100%);
+}
 </style>
 </style>