deming/pageD/notice/notice.vue
zmr900709 10bbccc2bd v
2020-07-09 16:35:23 +08:00

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>