<template>
|
|
<view>
|
|
<view class="se-flex se-flex-v-c se-pt-180">
|
|
<image class="se-a-150" src="@/static/image/logo.png" mode=""></image>
|
|
<text class="se-c-black se-fs-28 se-pt-30">{{paramValue}}</text>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import { queryAboutus } from "@/common/api.js"
|
|
|
|
export default {
|
|
data(){
|
|
return{
|
|
paramValue:"",
|
|
}
|
|
},
|
|
watch: {
|
|
|
|
},
|
|
onLoad() {
|
|
this.onqueryAboutus()
|
|
},
|
|
methods:{
|
|
onClick(index){
|
|
console.info(index)
|
|
},
|
|
onqueryAboutus(){
|
|
queryAboutus({}).then(response=>{
|
|
console.info("queryAboutus",response)
|
|
this.paramValue = response.result.paramValue
|
|
}).catch(error=>{
|
|
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|