创作者微信小程序端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
883 B

<template>
<view class="container">
<view class="top">
<uni-section title="昨日收益" type="line">
<uni-group mode="card">
<view>啦啦啦</view>
</uni-group>
</uni-section>
</view>
<view class="middle">
<uni-section title="收益明细" type="line">
<uni-group mode="card">
<view>啦啦啦</view>
</uni-group>
</uni-section>
</view>
</view>
</template>
<script>
export default {
data() {
return {
nvueWidth: 730,
list: ['美團外賣', '支付助手', '廣告助手', '上傳圖片', '消息通知', '我的信息', '我的短信', '我的頭像']
}
},
// 下拉刷新
onPullDownRefresh() {
uni.stopPullDownRefresh()
},
created() {
},
methods: {
},
}
</script>
<style lang="scss">
.container{
font-family:Franklin Gothic Medium, Arial Narrow, Arial, sans-serif;
}
</style>