deming/pageD/notice/notice.vue
2020-06-11 08:43:51 +08:00

32 lines
412 B
Vue

<template>
<view>
<!-- 公告咨询 -->
<notice></notice>
</view>
</template>
<script>
import notice from "@/components/informations/notice/notice"
export default {
data() {
return {
};
},
methods: {
titletext(){
console.log("22345")
}
},
components:{
notice,
}
};
</script>
<style lang="scss" scoped>
.sousuo {
height: 113rpx;
border: 1px #f00 solid;
}
</style>