|
@@ -51,28 +51,21 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <PreviewImg v-if="showPreview" :list="[imgUrl]" :hideDownload="true" @close="showPreview = !showPreview"></PreviewImg>
|
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
|
-import { ref } from 'vue'
|
|
|
-
|
|
|
defineOptions({ name: 'personal-footer' })
|
|
|
const list = [
|
|
|
- // { label: 'Copyright © 2024招聘人才网', path: '' },
|
|
|
{ label: '苏ICP备2024103111号-1', openPath: 'https://beian.miit.gov.cn/#/Integrated/index' },
|
|
|
{ label: '苏ICP备2024103111号-4', openPath: 'https://beian.miit.gov.cn/#/Integrated/index' },
|
|
|
- { label: '电子营业执照', path: '', img: 'https://minio.citupro.com/dev/menduner/businessLicense.jpg' },
|
|
|
+ { label: '电子营业执照', path: '', id: 'business license' },
|
|
|
{ label: '公安备案号 32059002001928', openPath: 'https://beian.mps.gov.cn/#/query/webSearch?code=32059002001928', iconImg: 'https://minio.citupro.com/dev/menduner/RecordIcon.png' },
|
|
|
- { label: '人力资源服务许可证', img: 'https://minio.citupro.com/dev/menduner/humanResourcesLicense.jpg' }
|
|
|
+ { label: '人力资源服务许可证', id: 'Human Resources License' }
|
|
|
]
|
|
|
|
|
|
-const showPreview = ref(false)
|
|
|
-let imgUrl = ''
|
|
|
const handleClick = (item) => {
|
|
|
- if (item.img) {
|
|
|
- imgUrl = item.img
|
|
|
- showPreview.value = true
|
|
|
+ if (item.id) {
|
|
|
+ window.open('/qualificationCertificate?id=' + item.id)
|
|
|
} else if (item.openPath) {
|
|
|
window.open(item.openPath)
|
|
|
}
|