onDetailTap(item) { uni.setStorageSync("useridTag",this.userid); this.$utils.jump(`./detail?id=${item.id}&userid=`+this.userid) }, // 修改 onUpdateTap(id){ uni.setStorageSync("useridTag",this.userid); this.$utils.jump(`./add-or-update?id=${id}`) }, // 添加 onAddTap(){ uni.setStorageSync("useridTag",this.userid); this.$utils.jump(`./add-or-update`) }, onDeleteTap(id){ var _this = this; uni.showModal({ title: '提示', content: '是否确认删除', success: async function(res) { if (res.confirm) { await _this.$api.del('baodaoxinxi', JSON.stringify([id])); _this.hasNext = true // 重置分页参数页数为1 _this.mescroll.resetUpScroll() } } }); }, // 搜索 async search(){ this.mescroll.num = 1 let searchForm = { page: this.mescroll.num, limit: this.mescroll.size } if(this.searchForm.xingming){ searchForm['xingming'] = '%' + this.searchForm.xingming + '%' } if(this.searchForm.baodaozhuanye){ searchForm['baodaozhuanye'] = '%' + this.searchForm.baodaozhuanye + '%' } let res = {}; if(this.userid) { res = await this.$api.page(`baodaoxinxi`, searchForm); } else { res = await this.$api.list(`baodaoxinxi`, searchForm); } // 如果是第一页数据置空 if (this.mescroll.num == 1) this.list = []; this.list = this.list.concat(res.data.list); if (res.data.list.length == 0) this.hasNext = false; this.mescroll.endSuccess(this.mescroll.size, this.hasNext); } } };
时间: 2024-03-29 16:41:17 浏览: 97
小程序报错 WAService.js:3 Uncaught Error: module "src/utils/utils.js" is not defined
这段代码是一个Vue组件中的一个methods对象,具有以下几个方法:
1. onDetailTap(item): 点击“详情”按钮时触发,将item对象中的id值和当前用户的userid保存到本地存储中,然后跳转到“detail”页面。
2. onUpdateTap(id): 点击“修改”按钮时触发,将id值保存到本地存储中,然后跳转到“add-or-update”页面。
3. onAddTap(): 点击“添加”按钮时触发,跳转到“add-or-update”页面。
4. onDeleteTap(id): 点击“删除”按钮时触发,弹出确认对话框,如果用户确认删除,则调用后端API进行删除操作,并重新加载当前页面数据。
5. search(): 点击“搜索”按钮时触发,根据用户输入的搜索条件发送请求到后端API,并重新加载当前页面数据。
这些方法主要是用来实现页面上的各种交互操作,包括跳转页面、发送请求、删除数据等。其中涉及到了本地存储、异步请求、条件搜索等方面的知识,需要结合具体的业务场景来理解。
阅读全文