You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.1 KiB

<template>
1 year ago
<view class="body-background" :style="{
backgroundImage:'url('+staticImage.wallpaperBgImage+')'
}"></view>
<HeaderNav title="关于我们" :is-back="true"></HeaderNav>
<view style="margin: 0 30rpx 50rpx">
<u-parse :content="aboutUs"></u-parse>
</view>
</template>
<script>
import {getConfig} from "@/api/other";
1 year ago
import HeaderNav from "../../components/HeaderNav/Index.vue";
import {imghost} from "@/config/host";
export default {
1 year ago
components: {HeaderNav},
data() {
1 year ago
return {
staticImage: {
orderCardBackground: imghost + '/static/image/order-card-background.png',
wallpaperBgImage: imghost + '/static/image/background.png',
addrDetailTitle: imghost + '/static/image/addr-detail-title.png',
},
aboutUs:''
};
},
onLoad() {
this.getAboutUs();
},
methods:{
getAboutUs(){
getConfig('aboutUs').then(res =>{
this.aboutUs = res.data.aboutUs;
})
}
}
}
</script>
<style lang="scss">
</style>