任务中心接口修改

This commit is contained in:
GaoHao 2024-12-11 16:45:43 +08:00
parent 0699489b2d
commit 3be46138ae
1 changed files with 3 additions and 6 deletions

View File

@ -124,13 +124,10 @@
* 获取任务列表 * 获取任务列表
*/ */
getTaskdata() { getTaskdata() {
let data = {
page: this.page, this.$Request.getT('app/taskCenter/selectTaskCenter', {}).then(res => {
limit: this.limit
}
this.$Request.getT('app/taskCenter/selectTaskCenter', data).then(res => {
if (res.code == 0 ) { if (res.code == 0 ) {
this.cellList = res.data.records this.cellList = res.data
} }
uni.stopPullDownRefresh(); uni.stopPullDownRefresh();
}) })