deming/pageD/notice/notice.vue

43 lines
614 B
Vue
Raw Normal View History

2020-06-11 08:43:51 +08:00
<template>
<view>
<!-- 公告咨询 -->
<notice></notice>
</view>
</template>
<script>
import notice from "@/components/informations/notice/notice"
export default {
data() {
return {
};
},
2020-07-09 16:35:23 +08:00
onLoad(){
this.informationList()
},
2020-06-11 08:43:51 +08:00
methods: {
titletext(){
console.log("22345")
2020-07-09 16:35:23 +08:00
},
informationList(){
this.$u.api.informationList({}).then((res)=>{
console.log(res)
})
2020-06-11 08:43:51 +08:00
}
},
components:{
notice,
}
};
</script>
<style lang="scss" scoped>
2020-08-04 21:46:52 +08:00
page {
background-color: #ECECEC;
}
2020-06-11 08:43:51 +08:00
.sousuo {
height: 113rpx;
border: 1px #f00 solid;
}
</style>