Browse Source

替换ico

master
luyisha 3 years ago
parent
commit
31a4de7c0a
  1. 2
      src/assets/scss/module/_home.css
  2. 2
      src/assets/scss/module/_home.scss
  3. 65
      src/components/CommonFooter.vue
  4. BIN
      src/favicon.ico
  5. 3
      src/index.html
  6. 1
      src/views/home/index.vue
  7. 2
      src/views/profile/certification.vue
  8. BIN
      static/favicon.ico

2
src/assets/scss/module/_home.css

@ -3706,7 +3706,7 @@ sub.transmoney-value {
*/ */
.footer { .footer {
background: white; background: white;
border-top: 1px solid #c7c7c7; /* border-top: 1px solid #c7c7c7; */
} }
.footer-upper-section { .footer-upper-section {

2
src/assets/scss/module/_home.scss

@ -3721,7 +3721,7 @@ sub.transmoney-value {
*/ */
.footer { .footer {
background: white; background: white;
border-top: 1px solid #c7c7c7; // border-top: 1px solid #c7c7c7;
} }
.footer-upper-section { .footer-upper-section {

65
src/components/CommonFooter.vue

@ -1,6 +1,6 @@
<template> <template>
<!-- colto-section --> <!-- colto-section -->
<footer class="footer mt-5"> <footer class="footer" id="common-footer">
<div class="footer-upper-section"> <div class="footer-upper-section">
<div class="item_left" style="width:33%"> <div class="item_left" style="width:33%">
<div class="logo"> <div class="logo">
@ -14,33 +14,53 @@
<!-- <p class="foot_p">{{$t('common.footerTips2',{name:appConfig.name})}}</p> --> <!-- <p class="foot_p">{{$t('common.footerTips2',{name:appConfig.name})}}</p> -->
<!-- <p class="foot_p">{{$t('common.footerTips3')}}</p> --> <!-- <p class="foot_p">{{$t('common.footerTips3')}}</p> -->
</div> </div>
<div class="item_right" style="width:66%"> <div class="item_right" style="width:66%;">
<div class="item"> <div class="item">
<p class="item_p">{{ $t("common.college") }}</p> <p class="item_p">{{ $t("common.college") }}</p>
<p class="foot_p"> <p class="foot_p" v-for="(item, index) in college" :key="index">
<router-link :to="college[0].url">{{ college[0].label }}</router-link> <router-link :to="item.url">{{ item.label }}</router-link>
</p>
<!-- <p class="foot_p">
<router-link :to="college[0].url" v-if="college[0]">{{ college[0].label }}</router-link>
<br v-else />
<br /> <br />
<router-link :to="college[1].url">{{ college[1].label }}</router-link> <router-link :to="college[1].url" v-if="college[1]">{{ college[1].label }}</router-link>
<br v-else />
</p> </p>
<p class="foot_p"> <p class="foot_p">
<router-link :to="college[2].url">{{ college[2].label }}</router-link> <router-link :to="college[2].url" v-if="college[2]">{{ college[2].label }}</router-link>
<br v-else />
<br /> <br />
<router-link :to="college[3].url">{{ college[3].label }}</router-link> <router-link :to="college[3].url" v-if="college[3]">{{ college[3].label }}</router-link>
</p> <br v-else />
</p> -->
</div> </div>
<div class="item"> <div class="item">
<p class="item_p">{{ $t("common.service") }}</p> <p class="item_p">{{ $t("common.service") }}</p>
<p class="foot_p"> <p class="foot_p" v-for="(item1, index1) in service" :key="index1">
<router-link :to="service[0].url">{{ service[0].label }}</router-link> <router-link :to="item1.url">{{item1.label}}</router-link>
</p>
<!-- <p class="foot_p">
<router-link :to="service[0].url" v-if="service[0]">{{ service[0].label }}</router-link>
<br v-else />
<br /> <br />
<router-link :to="service[1].url">{{ service[1].label }}</router-link> <router-link :to="service[1].url" v-if="service[1]">{{ service[1].label }}</router-link>
<br v-else />
</p> </p>
<p class="foot_p"> <p class="foot_p">
<router-link :to="service[2].url">{{ service[2].label }}</router-link> <router-link :to="service[2].url" v-if="service[2]">{{ service[2].label }}</router-link>
<br v-else />
<br /> <br />
<router-link :to="service[3].url">{{ service[3].label }}</router-link> <router-link :to="service[3].url" v-if="service[3]">{{ service[3].label }}</router-link>
</p> <br v-else />
</p> -->
</div> </div>
<!-- <div class="item">
<p class="item_p">{{ $t("common.service") }}</p>
<p class="foot_p" v-for="(item1, index1) in AboutLink" :key="index1">
<router-link :to="item1.url">{{item1.label}}</router-link>
</p>
</div> -->
<div class="item item2"> <div class="item item2">
<p class="item_p" style="width:100%">{{ $t("common.contactUs") }}</p> <p class="item_p" style="width:100%">{{ $t("common.contactUs") }}</p>
@ -164,7 +184,8 @@ export default {
return { return {
service: [], service: [],
college: [], college: [],
email: "" email: "",
AboutLink: []
}; };
}, },
computed:{ computed:{
@ -198,6 +219,18 @@ export default {
}) })
.catch(err => {}); .catch(err => {});
}, },
getAboutLink() {
College.getServiceList()
.then(list => {
list.forEach(item => {
this.AboutLink.push({
url: `/service/${item.id}`,
label: item.name
});
});
})
.catch(err => {});
},
getEmial() { getEmial() {
ContactUs.contact() ContactUs.contact()
.then(data => { .then(data => {
@ -246,7 +279,7 @@ export default {
// border-right: 1px solid #303D4B; // border-right: 1px solid #303D4B;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: center; // justify-content: center;
padding: 0 15px; padding: 0 15px;
.item_p{ .item_p{
font-size: 16px; font-size: 16px;

BIN
src/favicon.ico

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 17 KiB

3
src/index.html

@ -81,7 +81,8 @@
// 修改页面主题 // 修改页面主题
function changeSightSense() { function changeSightSense() {
const body = document.body, const body = document.body,
header = document.getElementById("common-header"); header = document.getElementById("common-header")
// footer = document.getElementById("common-footer");
if (body.id && body.id == "dark") { if (body.id && body.id == "dark") {
body.removeAttribute("id"); body.removeAttribute("id");

1
src/views/home/index.vue

@ -1674,5 +1674,6 @@ path{
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
background: #FAFAFA; background: #FAFAFA;
margin-bottom: 0px;
} }
</style> </style>

2
src/views/profile/certification.vue

@ -274,7 +274,7 @@ export default {
country_id: "", country_id: "",
realname: "", realname: "",
id_card: "", id_card: "",
type: 1, type: 2,
birthday: "", birthday: "",
address: "", address: "",
city: "", city: "",

BIN
static/favicon.ico

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 17 KiB

Loading…
Cancel
Save