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 {
background: white;
border-top: 1px solid #c7c7c7;
/* border-top: 1px solid #c7c7c7; */
}
.footer-upper-section {

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

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

65
src/components/CommonFooter.vue

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

1
src/views/home/index.vue

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

2
src/views/profile/certification.vue

@ -274,7 +274,7 @@ export default {
country_id: "",
realname: "",
id_card: "",
type: 1,
type: 2,
birthday: "",
address: "",
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