40 lines
562 B
Vue
40 lines
562 B
Vue
<template>
|
|
<view>
|
|
<!-- 公告咨询 -->
|
|
<notice></notice>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import notice from "@/components/informations/notice/notice"
|
|
export default {
|
|
data() {
|
|
return {
|
|
};
|
|
},
|
|
onLoad(){
|
|
this.informationList()
|
|
},
|
|
methods: {
|
|
titletext(){
|
|
console.log("22345")
|
|
},
|
|
informationList(){
|
|
this.$u.api.informationList({}).then((res)=>{
|
|
console.log(res)
|
|
})
|
|
}
|
|
},
|
|
components:{
|
|
notice,
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.sousuo {
|
|
height: 113rpx;
|
|
border: 1px #f00 solid;
|
|
}
|
|
</style>
|