合并部分页面

This commit is contained in:
唐明明
2021-09-23 17:38:06 +08:00
parent 08c56ea921
commit e0ee86e816
44 changed files with 11691 additions and 21 deletions

37
pages/found/task.vue Normal file
View File

@@ -0,0 +1,37 @@
<template>
<view>
<task-list :taskArr= 'taskArr' />
</view>
</template>
<script>
import { task } from '@/apis/interfaces/crystal'
export default {
data() {
return {
taskArr: []
}
},
onShow() {
// 获取列表
this.taskInfo();
},
methods: {
// 列表
taskInfo() {
// 领取水晶
thawlog().then(res => {
console.log(res)
}).catch(err => {
uni.showToast({
icon: 'none',
title: err
})
})
},
}
}
</script>
<style>
</style>