|
@@ -22,6 +22,9 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
+ <div class="footer">
|
|
|
+ {{ $t('position.viewTime') + timesTampChange(item.updateTime) }}
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<CtPagination
|
|
|
:total="total"
|
|
@@ -40,6 +43,7 @@ defineOptions({ name: 'position-seen-me' })
|
|
|
import { ref } from 'vue'
|
|
|
import { getInterestedMePage } from '@/api/recruit/personal/personalCenter'
|
|
|
import { dealDictObjData } from '@/utils/position'
|
|
|
+import { timesTampChange } from '@/utils/date'
|
|
|
import Empty from '@/components/Empty'
|
|
|
|
|
|
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>
|