123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- <template>
- <footer class="index_foot">
- <div class="call_us_box">
- <span v-for="(item, index) in bottomMenu" :key="index">
- <NuxtLink :to="{ path: `/specialList/${item.id}` }" v-if="item.type == 1" :title="item.name">
- {{ item.name }}
- </NuxtLink>
- <NuxtLink :to="{ path: `/speciaArticle/${item.id}` }" v-if="item.type == 0" :title="item.name">
- {{ item.name }}
- </NuxtLink>
- </span>
- </div>
- <div class="foot_text_box" v-if="bottomBase">
- <p>{{ bottomBase.statistics_onetext }} <a :href="bottomBase.record_number_url" title="中农兴业">中农兴业</a> {{ bottomBase.statistics_twotext }}</p>
- <p>{{ bottomBase.organizer }} <a :href="currentDomain" :title="webSiteName">{{ webSiteName }}</a> {{ webSiteUrl }} 版权所有。</p>
- <p><a :href="bottomBase.record_number_url" title="ICP备案号">{{ bottomBase.record_number }}</a> <img src="http://snzxwt.org/images/beian.png"><a :href="bottomBase.icp_number_url" title="京公网安备案号">{{ bottomBase.icp_number }}</a> </p>
- <p>{{ bottomBase.email }}</p>
- <p>{{ bottomBase.company_address }}</p>
- <p>{{ bottomBase.contact_number }}</p>
- </div>
- <div class="foot_logo_out" v-if="bottomBase">
- <a :href="'http://' + bottomBase.company_url" :title="bottomBase.company_name">
- <img :src="bottomBase.project_logo" class="floatLogoLeft" :alt="bottomBase.company_name">
- </a>
- <a :href="'http://' + bottomBase.project_url" :title="bottomBase.project_name">
- <img :src="bottomBase.company_logo" class="floatLogoRight" :alt="bottomBase.project_name">
- </a>
- </div>
- <div class="foot_last_img_box">
- <a :href="item.url" v-for="(item, index) in bottomphoto">
- <img :src="item.logo_url" alt="">
- </a>
- </div>
- </footer>
- </template>
- <script setup>
- //获得底部基本信息 start---------------------------------------->
- //1.获得友情链接图片
- // const bottomLink = ref([])
- // async function getModelData1() {
- // const mkdata = await requestDataPromise('/web/selectWebsiteLinks', {
- // method: 'GET',
- // query: {
- // 'type':1,
- // 'num':7,
- // },
- // });
- // bottomLink.value = mkdata.data;
- // }
- // getModelData1();
- // //2.获得友情链接文字
- // const bottomText = ref([])
- // async function getModelData2() {
- // const mkdata = await requestDataPromise('/web/selectWebsiteLinks', {
- // method: 'GET',
- // query: {
- // 'type':2,
- // 'num':8,
- // },
- // });
- // bottomText.value = mkdata.data;
- // }
- // getModelData2();
- //3.获得底部图片
- const bottomphoto = ref([])
- async function getModelData3() {
- const mkdata = await requestDataPromise('/web/selectWebsiteLinks', {
- method: 'GET',
- query: {
- 'type':3,
- 'num':4,
- },
- });
- if(mkdata.code == 200){
- bottomphoto.value = mkdata.data;
- }else{
- console.log("SSR waring ---------- SSR waring ---------- SSR waring ---------->")
- console.log("错误位置:获取底部图片")
- console.log("后端错误反馈:",mkdata.message)
- console.log("SSR waring ---------- SSR waring ---------- SSR waring ---------->")
- }
- }
- getModelData3();
- //4.获得底部导航
- const bottomMenu = ref([])
- async function getModelData4() {
- const mkdata = await requestDataPromise('/web/getWebsiteFooterCategory', {
- method: 'GET',
- query: {
- },
- });
- if(mkdata.code == 200){
- bottomMenu.value = mkdata.data;
- }else{
- console.log("SSR waring ---------- SSR waring ---------- SSR waring ---------->")
- console.log("错误位置:获取底部导航")
- console.log("后端错误反馈:",mkdata.message)
- console.log("SSR waring ---------- SSR waring ---------- SSR waring ---------->")
- }
- }
- getModelData4();
- //5.获得底部基本信息
- const bottomBase = ref({})
- const webSiteName = ref("")
- const webSiteUrl = ref("")
- async function getModelData5() {
- const mkdata = await requestDataPromise('/web/getWebsiteFootInfo', {
- method: 'GET',
- query: {
- },
- });
- if(mkdata.code == 200){
- bottomBase.value = mkdata.data.website_foot;
- webSiteName.value = mkdata.data.website_head.title;
- //获得最后一个域名
- webSiteUrl.value = mkdata.data.website_head.website_url[mkdata.data.website_head.website_url.length - 1];
- }else{
- console.log("SSR waring ---------- SSR waring ---------- SSR waring ---------->")
- console.log("错误位置:获取底部基本信息")
- console.log("后端错误反馈:",mkdata.message)
- console.log("SSR waring ---------- SSR waring ---------- SSR waring ---------->")
- }
- }
- getModelData5();
- //6.获取当前域名
- // const currentDomain = ref('')
- // const currentDomainUrl = ref('')
- // const getDomain = () => {
- // if (process.client) {
- // const url = new URL(window.location.href)
- // currentDomainUrl.value = url.hostname // 获取域名
- // currentDomain.value = url.origin //协议和域名
- // }
- // }
- // getDomain();
- //获得底部基本信息 end---------------------------------------->
- </script>
- <style lang="less" scoped>
- @import '@/assets/css/foot.less';
- </style>
|