<template>
<view class="content">
<view v-for="item in noticeArr">
{{item}}
</view>
<button @click="getNotice()">刷新</button>
</view>
</template>
<script>
export default {
data() {
return {
noticeArr: []
}
},
onLoad() {
this.getNotice()
},
methods: {
async getNotice() {
let res = await uniCloud.callFunction({
name: "BabyTimeAPI",
data: {
key: "notice"
}
})
this.noticeArr = res.result.data
console.log("公告信息", res)
console.log(this.noticeArr)
},
}
}
</script>
<style>
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.logo {
height: 200rpx;
width: 200rpx;
margin-top: 200rpx;
margin-left: auto;
margin-right: auto;
margin-bottom: 50rpx;
}
.text-area {
display: flex;
justify-content: center;
}
.title {
font-size: 36rpx;
color: #8f8f94;
}
</style>