['设置中心']

This commit is contained in:
2021-09-24 15:11:14 +08:00
parent 08c56ea921
commit 3dc185139c
172 changed files with 13194 additions and 433 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>