uniapp微信小程序投票系统实战 (SpringBoot2+vue3.2+element plus ) -投票帖子管理实现

发布时间:2024年01月13日

锋哥原创的uniapp微信小程序投票系统实战:

uniapp微信小程序投票系统实战课程 (SpringBoot2+vue3.2+element plus ) ( 火爆连载更新中... )_哔哩哔哩_bilibiliuniapp微信小程序投票系统实战课程 (SpringBoot2+vue3.2+element plus ) ( 火爆连载更新中... )共计21条视频,包括:uniapp微信小程序投票系统实战课程 (SpringBoot2+vue3.2+element plus ) ( 火爆连载更新中... )、第2讲 投票项目后端架构搭建、第3讲 小程序端 TabBar搭建等,UP主更多精彩视频,请关注UP账号。icon-default.png?t=N7T8https://www.bilibili.com/video/BV1ea4y137xf/

后端:

/**
 * 删除指定id的投票信息
 * @param id
 * @return
 */
@GetMapping("/delete/{id}")
@Transactional
public R delete(@PathVariable(value = "id")Integer id){
    voteDetailService.remove(new QueryWrapper<VoteDetail>().eq("vote_id",id)); // 删除用户投票详情
    voteItemService.remove(new QueryWrapper<VoteItem>().eq("vote_id",id)); // 删除投票选项
    voteService.removeById(id); // 删除投票
    return R.ok();
}

前端:

actionSet:function(){
				uni.showActionSheet({
					itemList:['删除当前投票'],
					success:(res)=>{
						if(res.tapIndex==0){
							uni.showModal({
								title:"系统提示?",
								content:"您确定要删除当前投票信息吗?",
								success:async (res2)=>{
									if(res2.confirm){
										const result=await requestUtil({url:"/vote/delete/"+this.vote.id,method:"get"});
										if(result.code==0){
											uni.showToast({
												icon:"success",
												title:"删除成功!"
											})
										}
										uni.switchTab({
											url:"/pages/create/create"
										})
									}
								}
							})
						}
					}
				})
			}

文章来源:https://blog.csdn.net/caoli201314/article/details/135559599
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。