deming/pageD/notice/notice.vue

43 lines
649 B
Vue
Raw Normal View History

2020-06-11 08:43:51 +08:00
<template>
<view>
<!-- 公告咨询 -->
2020-08-06 20:42:03 +08:00
<notice :list="list"></notice>
2020-06-11 08:43:51 +08:00
</view>
</template>
<script>
import notice from "@/components/informations/notice/notice"
export default {
data() {
return {
2020-08-06 20:42:03 +08:00
list: [],
2020-06-11 08:43:51 +08:00
};
},
2020-07-09 16:35:23 +08:00
onLoad(){
2020-08-06 20:42:03 +08:00
this.informationList();
2020-07-09 16:35:23 +08:00
},
2020-06-11 08:43:51 +08:00
methods: {
titletext(){
2020-07-09 16:35:23 +08:00
},
informationList(){
this.$u.api.informationList({}).then((res)=>{
2020-08-06 20:42:03 +08:00
this.list = res.data;
2020-07-09 16:35:23 +08:00
})
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>