<template>
    <!--注意,foot1与foot的区别就在于,foot1没有友情链接-->
    <div class="call_us_box">
        <div class="inner">
            <span v-for="(item, index) in bottomMenu" :key="index">
                <NuxtLink :to="{ path: `/about/${item.name_pinyin}/list-1.html` }" v-if="item.type == 1" :title="item.name">
                    {{ item.name }}
                </NuxtLink>
                <NuxtLink :to="{ path: `/about/${item.name_pinyin}/index.html` }" v-if="item.type == 0" :title="item.name">
                    {{ item.name }}
                </NuxtLink>
            </span>
        </div>
    </div>
    <footer class="index_foot">
        <div class="foot_text_box">
            <p v-html="bottomBase.statement" class="foot_text_html_css"></p>
            <p v-html="bottomBase.organizer" class="foot_text_html_css"></p>
            <p v-html="bottomBase.copyright_information" class="foot_text_html_css"></p>
            <p><span v-html="bottomBase.icp_number" class="foot_text_html_css"></span><span v-html="bottomBase.record_number" class="foot_text_html_css"></span></p>
            <p v-html="bottomBase.email" class="foot_text_html_css"></p>
            <p v-html="bottomBase.company_address" class="foot_text_html_css"></p>
            <p v-html="bottomBase.contact_number" class="foot_text_html_css"></p>
        </div>
        <div class="foot_logo_out" v-if="bottomBase">
            <a :href="'http://' + bottomBase.project_url" :title="bottomBase.project_name" v-if="bottomBase.project_logo!=''&&bottomBase.project_url!=''">
                <img :src="bottomBase.project_logo" class="floatLogoRight" :alt="bottomBase.project_name">
            </a>
            <span v-else-if="bottomBase.project_logo!=''&&bottomBase.project_url==''">
                <img :src="bottomBase.project_logo" class="floatLogoRight" :alt="bottomBase.project_name">
            </span>
            <a :href="'http://' + bottomBase.company_url" :title="bottomBase.company_name" v-if="bottomBase.company_logo!=''&&bottomBase.company_url!=''">
                <img :src="bottomBase.company_logo" class="floatLogoLeft" :alt="bottomBase.company_name">
            </a>
            <span v-else-if="bottomBase.company_logo!=''&&bottomBase.company_url==''">
                <img :src="bottomBase.company_logo" class="floatLogoLeft" :alt="bottomBase.company_name">
            </span>
        </div>
        <div class="foot_last_img_box">
            <a :href="item.url" v-for="(item, index) in bottomphoto" :title="item.title">
                <img :src="item.logo_url" :alt="item.title">
            </a>
        </div>

        <!--在线客服-->
        <HomeKefu :bottomBase="bottomBase" />
    </footer>
</template>
 
<script setup>
//获得底部基本信息 start---------------------------------------->
//1.获得全部友情链接与底部图片
const bottomLink = ref([])
const bottomText = ref([])
const bottomphoto = ref([])
const bottomMenu = ref([])
const bottomBase = ref({})

async function getModelDataAll() {
    const mkdata =  await requestDataPromise('/web/getWebsiteFootAll', {
        method: 'GET',
        query: {
            'link_textnum':8,
            'link_imgnum':12,
            'link_footnum':4
        },
    });
    if(mkdata.code == 200){
        bottomLink.value = mkdata.data.link_img;
        bottomText.value = mkdata.data.link_text;
        bottomphoto.value = mkdata.data.link_foot;
        bottomMenu.value = mkdata.data.foot_cate;
        bottomBase.value = mkdata.data.foot_info;
        

    }else{
        console.log("SSR waring ---------- SSR waring ---------- SSR waring ---------->")
        console.log("错误位置:获取友情链接图片")
        console.log("后端错误反馈:",mkdata.message)
        console.log("SSR waring ---------- SSR waring ---------- SSR waring ---------->")
    }
}
getModelDataAll();
//获得底部基本信息 end---------------------------------------->
</script>

<style lang="less" scoped>
    @import '@/assets/css/public/footer.less';
    @import '@/assets/css/public/kefu.less';
</style>