Compare commits
2 Commits
22539f3839
...
316d82b3ad
| Author | SHA1 | Date | |
|---|---|---|---|
| 316d82b3ad | |||
| 8e26ae9cde |
@ -16,9 +16,9 @@
|
||||
})
|
||||
|
||||
useHead({
|
||||
title: `${props.title}`,
|
||||
title: `${props.title} - 图夕夕`,
|
||||
meta: [
|
||||
{ name: 'description', content: props.description },
|
||||
{ name: 'description', content: `${props.description}`},
|
||||
{ name: 'keywords', content: props.keywords },
|
||||
],
|
||||
})
|
||||
|
||||
@ -77,20 +77,20 @@ export default defineNuxtConfig({
|
||||
{ name: 'keywords', content: '图纸,图纸下载,设计素材,图纸大全,设计图纸,,工程图纸,cad图纸' },
|
||||
{ name: 'author', content: '图夕夕' },
|
||||
// SEO meta tags
|
||||
{
|
||||
property: 'og:title',
|
||||
content: '图纸,图纸下载,设计素材,图纸大全,设计图纸,,工程图纸,cad图纸',
|
||||
},
|
||||
{
|
||||
property: 'og:description',
|
||||
content: '图夕夕是一家图纸素材分享交易平台,提供AutoCAD/ProE/Creo/CATIA/UG/inventor/CAXA/等建筑图纸的素材下载及免费教程。',
|
||||
},
|
||||
{ property: 'og:type', content: 'website' },
|
||||
{ property: 'og:url', content: 'https://www.xlcig.cn' },
|
||||
{ property: 'og:site_name', content: 'xlCig' },
|
||||
{ name: 'theme-color', content: '#00f5ff' },
|
||||
// robots meta
|
||||
{ name: 'robots', content: 'index, follow' },
|
||||
// {
|
||||
// property: 'og:title',
|
||||
// content: '图纸,图纸下载,设计素材,图纸大全,设计图纸,,工程图纸,cad图纸',
|
||||
// },
|
||||
// {
|
||||
// property: 'og:description',
|
||||
// content: '图夕夕是一家图纸素材分享交易平台,提供AutoCAD/ProE/Creo/CATIA/UG/inventor/CAXA/等建筑图纸的素材下载及免费教程。',
|
||||
// },
|
||||
// { property: 'og:type', content: 'website' },
|
||||
// { property: 'og:url', content: 'https://www.xlcig.cn' },
|
||||
// { property: 'og:site_name', content: 'xlCig' },
|
||||
// { name: 'theme-color', content: '#00f5ff' },
|
||||
// // robots meta
|
||||
// { name: 'robots', content: 'index, follow' },
|
||||
],
|
||||
link: [
|
||||
{ rel: 'icon', type: 'image/x-icon', href: '/favicon2.ico' },
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
<template>
|
||||
<SeoHead :title="detail?.title" :description="detail?.description" :keywords="detail?.labels?.toString()" />
|
||||
<KlNavTab />
|
||||
<div class="ml-auto mr-auto mt-[20px] w-[1440px]">
|
||||
<div class="flex items-center">
|
||||
@ -178,6 +179,7 @@
|
||||
import { downloadFile } from '~/utils/utils'
|
||||
import { useMessage } from '~/utils/useMessage'
|
||||
import { Warning } from '@element-plus/icons-vue'
|
||||
import SeoHead from '~/components/seo-head/index.vue'
|
||||
import CardPicture from '~/components/kl-card-picture/index.vue'
|
||||
import { getDetail, getRelationRecommend, report, getUserInfo, getMainWork, createContent, createUserProject, deleteProject } from '~/api/drawe-detail/index'
|
||||
import KlNavTab from '~/components/kl-nav-tab/index.vue'
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
<template>
|
||||
<!-- 导航 -->
|
||||
<SeoHead title="工程设计图纸下载_CAD设计图纸资源库" />
|
||||
<KlNavTab active="图纸" :type="1" />
|
||||
<div class="ma-auto w-[1440px]">
|
||||
<!-- 图纸分类 -->
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
<template>
|
||||
<!-- 导航 -->
|
||||
<SeoHead title="工程设计图纸下载_CAD设计图纸资源库" />
|
||||
<KlNavTab active="图纸" :type="1" />
|
||||
<div class="ma-auto w-[1440px]">
|
||||
<!-- 图纸分类 -->
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
<template>
|
||||
<!-- 导航 -->
|
||||
<SeoHead title="工程设计模型下载_CAD设计图纸资源库" />
|
||||
<KlNavTab active="模型" :type="3" />
|
||||
<div class="ma-auto w-[1440px]">
|
||||
<!-- 图纸分类 -->
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
<template>
|
||||
<!-- 导航 -->
|
||||
<SeoHead title="工程设计模型下载_CAD设计图纸资源库" />
|
||||
<KlNavTab active="模型" :type="3" />
|
||||
<div class="ma-auto w-[1440px]">
|
||||
<!-- 图纸分类 -->
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
<template>
|
||||
<!-- 导航 -->
|
||||
<SeoHead title="工程设计文本下载_CAD设计图纸资源库" />
|
||||
<KlNavTab active="文本" :type="2" />
|
||||
<div class="ma-auto w-[1440px]">
|
||||
<!-- 图纸分类 -->
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
<template>
|
||||
<!-- 导航 -->
|
||||
<SeoHead title="工程设计文本下载_CAD设计图纸资源库" />
|
||||
<KlNavTab active="文本" :type="2" />
|
||||
<div class="ma-auto w-[1440px]">
|
||||
<!-- 图纸分类 -->
|
||||
|
||||
Reference in New Issue
Block a user