| 123456789101112131415161718192021222324252627282930313233343536 |
- <template>
- <view class="center">
-
- </view>
- </template>
- <script>
- import { messageList } from '@/api/finance.js'
- export default {
-
- data(){
- return {
- list:[],
- }
- },
- onLoad() {
- this.loadData()
- },
- methods: {
- loadData() {
- messageList({page:1,limit:10}).then(({data}) =>{
- console.log(data)
- })
- }
- }
- }
- </script>
- <style lang="scss">
- .center,page {
- height: 100%;
- width: 100%;
- background: #F8F8F8;
- }
- </style>
|