123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318 |
- <template>
- <section class="index_main">
- <!-- 面包屑导航 -->
- <div class="breadcrumb">
- <div class="inner">
- <span class="location">当前位置:</span>
- <el-breadcrumb :separator-icon="ArrowRight">
- <el-breadcrumb-item>
- <NuxtLink to="/">首页</NuxtLink>
- </el-breadcrumb-item>
- <el-breadcrumb-item v-if="parent_name != ''">
- <NuxtLink :to="`/${parent_pinyin}/index.html`"> {{ parent_name }}</NuxtLink>
- </el-breadcrumb-item>
- <el-breadcrumb-item v-if="routeName">
- <NuxtLink :to="`/${targetSegment}/${targetSegment1}/index.html`"> {{ routeName }}</NuxtLink>
- </el-breadcrumb-item>
- <el-breadcrumb-item v-if="routeName1">
- <NuxtLink :to="`list-1.html`"> {{ routeName1 }}</NuxtLink>
- </el-breadcrumb-item>
- <el-breadcrumb-item>{{ routeNewsTtitle }}</el-breadcrumb-item>
- </el-breadcrumb>
- </div>
- </div>
- <!-- 面包屑 end-->
- <div class="info_head_box clearfix">
- <div class="info_head_left">
- <a class="info_head_a info_head_only" :title="公司信息">公司信息</a>
- </div>
- </div>
- <section class="index_2 clearfix">
- <img class="index_2_img" :src="detailImg[0]" :title="routeNewsTtitle" alt="">
- <div class="index_2_right">
- <h4 class="index_2_h4"> {{ routeNewsTtitle }}</h4>
- <div class="index_2_title_box clearfix">
- <time class="index_2_title">
- 成立日期:
- <span v-if="time"> {{ time }}</span>
- </time>
- <span class="index_2_title">
- 所在城市:
- <span v-if="newsDetail.city_name">{{ newsDetail.city_name }}</span>
- </span>
- </div>
- <div class="index_2_ul clearfix">
- <div class="index_2_ul_left">
- <div class="index_2_li clearfix">
- <label class="index_2_li_label">机构性质</label>
- <span class="index_2_li_text " v-if="newsDetail.jobnature_name">
- {{ newsDetail.jobnature_name }}</span>
- </div>
- <div class="index_2_li clearfix">
- <label class="index_2_li_label">负 责 人</label>
- <span class="index_2_li_text" v-if="newsDetail.manager">
- {{ newsDetail.manager }}
- </span>
- </div>
- <div class="index_2_li clearfix">
- <label class="index_2_li_label">联 系 人</label>
- <span class="index_2_li_text " v-if="newsDetail.content_person">
- {{ newsDetail.content_person }}
- </span>
- </div>
- <div class="index_2_li clearfix">
- <label class="index_2_li_label">联系电话</label>
- <span class="index_2_li_text ">{{ newsDetail.telephone }}</span>
- </div>
- <div class="index_2_li clearfix">
- <label class="index_2_li_label">手 机</label>
- <span class="index_2_li_text ">{{ newsDetail.mobile }}</span>
- </div>
- <div class="index_2_li clearfix">
- <label class="index_2_li_label">地 址</label>
- <span class="index_2_li_text ">{{ newsDetail.adress }}</span>
- </div>
- </div>
- <div class="index_2_ul_left">
- <div class="index_2_li clearfix">
- <label class="index_2_li_label">所属行业</label>
- <span class="index_2_li_text ">{{ newsDetail.hy_name }}</span>
- </div>
- <div class="index_2_li clearfix">
- <label class="index_2_li_label">联系QQ</label>
- <span class="index_2_li_text ">{{ newsDetail.QQ }}</span>
- </div>
- <div class="index_2_li clearfix">
- <label class="index_2_li_label">网 址</label>
- <span class="index_2_li_text ">{{ newsDetail.company_url }}</span>
- </div>
- <div class="index_2_li clearfix">
- <label class="index_2_li_label">邮政编码</label>
- <span class="index_2_li_text ">{{ newsDetail.post_code }}</span>
- </div>
- <div class="index_2_li clearfix">
- <label class="index_2_li_label">传 真</label>
- <span class="index_2_li_text ">{{ newsDetail.fax }}</span>
- </div>
- </div>
- </div>
- </div>
- </section>
- <section class="index_3 clearfix">
- <div class="info_2_head_box clearfix">
- <div class="info_2_head_left">
- <a class="info_2_head_a info_2_head_only" title="">详情信息</a>
- </div>
- </div>
- <div class="info_article" v-html="newsDetail.content"></div>
- </section>
- </section>
- </template>
- <script setup>
- import { ref } from 'vue'
- import { ElBreadcrumb, ElBreadcrumbItem } from 'element-plus'
- import { ArrowRight } from '@element-plus/icons-vue'
- //2.页面路径 start ---------------------------------------->
- const route = useRoute();
- const articleId = parseInt(route.params.id);
- const targetSegment = getRoutePath(1);
- const targetSegment1 = getRoutePath(2);
- const targetSegment2 = getRoutePath(3);
- // 2.1 查询一级栏目的id
- //通过导航路径反向查询导航id
- let routeId;
- const getRouteId = await requestDataPromise('/web/getWebsiteRoute', {
- method: 'GET',
- query: {
- 'pinyin': targetSegment,
- },
- });
- if (getRouteId.code == 200) {
- routeId = getRouteId.data.category_id
- } else {
- console.log("SSR waring ---------- SSR waring ---------- SSR waring ---------->")
- console.log("错误位置:通过url路径查询导航池id")
- console.log("后端错误反馈:", getRouteId.message)
- console.log("SSR waring ---------- SSR waring ---------- SSR waring ---------->")
- }
- // 2.2查询二级栏目的id及名称
- let routeName = ref('');
- let routeId1 = ref('');
- const getRoutePName = await requestDataPromise('/web/getWebsiteRoute', {
- method: 'GET',
- query: {
- 'pinyin': targetSegment1,
- },
- });
- if (getRoutePName.code == 200) {
- routeId1.value = getRoutePName.data.category_id;
- routeName.value = getRoutePName.data.alias;
- } else {
- console.log("SSR waring ---------- SSR waring ---------- SSR waring ---------->")
- console.log("错误位置:通过url路径查询导航池id")
- console.log("后端错误反馈:", getRouteId.message)
- console.log("SSR waring ---------- SSR waring ---------- SSR waring ---------->")
- }
- // 2.3 查询三级栏目的id及名称
- let routeName1 = ref('');
- let routeId11 = ref('');
- const getRoutePName1 = await requestDataPromise('/web/getWebsiteRoute', {
- method: 'GET',
- query: {
- 'pinyin': targetSegment2,
- },
- });
- if (getRoutePName1.code == 200) {
- routeId11.value = getRoutePName1.data.category_id;
- routeName1.value = getRoutePName1.data.alias;
- } else {
- console.log("SSR waring ---------- SSR waring ---------- SSR waring ---------->")
- console.log("错误位置:通过url路径查询导航池id")
- console.log("后端错误反馈:", getRouteId.message)
- console.log("SSR waring ---------- SSR waring ---------- SSR waring ---------->")
- }
- //2.页面路径 end ---------------------------------------->
- //3.面包屑 start ---------------------------------------->
- const parent_name = ref("");
- const parent_id = ref("");
- const parent_pinyin = ref("");
- let getParentNav = async () => {
- const listData = await requestDataPromise('/web/getOneWebsiteCategory', {
- method: 'GET',
- query: {
- 'catid': routeId
- },
- });
- if (listData.code == 200) {
- parent_name.value = listData.data.alias;
- parent_id.value = listData.data.parent_id;
- parent_pinyin.value = listData.data.aLIas_pinyin;
- } else {
- console.log("SSR waring ---------- SSR waring ---------- SSR waring ---------->")
- console.log("错误位置:获取面包屑导航")
- console.log("后端错误反馈:", listData.message)
- console.log("SSR waring ---------- SSR waring ---------- SSR waring ---------->")
- }
- }
- //获得父级栏目详情
- getParentNav();
- //3.面包屑 end ------------------------------------------->
- //4.新闻详情 start ---------------------------------------->
- //4.1 资讯详情
- const newsDetail = ref({})
- const routeNewsTtitle = ref("");
- //4.2 发布日期
- const time = ref("");
- //4.3 路径
- const routLevelTitle = ref("");
- const routLevelId = ref("");
- //4.4 是否展示投票
- let detailImg = ref('');
- let seoTitle;
- let seoDescription;
- let seoKeywords;
- //4.5 获取详情
- const mkdata = await requestDataPromise('/web/getWebsiteCompanyInfo', {
- method: 'GET',
- query: {
- 'id': articleId
- },
- });
- if (mkdata.code == 200) {
- //获取内容
- newsDetail.value = mkdata.data;
- detailImg.value = JSON.parse(mkdata.data.imgurl);
- //修正标题长度
- if (newsDetail.value.title.length >= 20) {
- routeNewsTtitle.value = newsDetail.value.title.substr(0, 20) + "...";
- } else {
- routeNewsTtitle.value = newsDetail.value.title
- }
- //获取发布时间
- if (newsDetail.value.data) {
- time.value = newsDetail.value.data.split(' ')[0];
- }
- seoTitle = newsDetail.value.title;
- seoDescription = newsDetail.value.description;
- seoKeywords = newsDetail.value.keyword;
- } else {
- console.log("SSR waring ---------- SSR waring ---------- SSR waring ---------->")
- console.log("错误位置:获取详情内容")
- console.log("后端错误反馈:", mkdata.message)
- console.log("SSR waring ---------- SSR waring ---------- SSR waring ---------->")
- }
- //4.新闻详情 end ---------------------------------------->
- //5.设置seo信息 start---------------------------------------->
- const setData = await requestDataPromise('/web/getWebsiteCategoryHead', {
- method: 'GET',
- query: {
- 'catid': routeId1.value
- },
- });
- if (setData.code == 200) {
- let seoSuffix = setData.data.suffix;
- let seoName = setData.data.website_name;
- useSeoMeta({
- title: seoTitle + "_" + seoName + "_" + seoSuffix,
- meta: [
- { name: 'keywords', content: seoKeywords + "_" + seoName + "_" + seoSuffix, tagPriority: 10 },
- { name: 'description', content: seoDescription + "_" + seoName + "_" + seoSuffix, tagPriority: 10 }
- ]
- });
- } else {
- console.log("设置频道页SEO出错!", setData.message)
- }
- //5.设置seo信息 end---------------------------------------->
- //6.广告 start ---------------------------------------->
- let adImg1 = ref([]);
- let adImg2 = ref([]);
- onMounted(async () => {
- const { $webUrl, $CwebUrl } = useNuxtApp();
- //广告1
- let url = `${$webUrl}/web/getWebsiteAdvertisement?ad_tag=nzgxw_detail_0001`
- const responseAd1 = await fetch(url, {
- headers: {
- 'Content-Type': 'application/json',
- 'Userurl': $CwebUrl,
- 'Origin': $CwebUrl
- }
- });
- const resultAd1 = await responseAd1.json();
- adImg1.value = resultAd1.data[0];
- //广告2
- let url2 = `${$webUrl}/web/getWebsiteAdvertisement?ad_tag=nzgxw_detail_0002`
- const responseAd2 = await fetch(url2, {
- headers: {
- 'Content-Type': 'application/json',
- 'Userurl': $CwebUrl,
- 'Origin': $CwebUrl
- }
- });
- const resultAd2 = await responseAd2.json();
- adImg2.value = resultAd2.data[0];
- })
- //6.广告 end ---------------------------------------->
- </script>
- <style lang="less" scoped>
- @import url(@/assets/css/company/detail.less);
- </style>
|