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

锋哥原创的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/

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

后端:

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

前端:

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

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"
										})
									}
								}
							})
						}
					}
				})
			}

你可能感兴趣的:(uni-app,uni-app,小程序投票,微信小程序投票,微信小程序,投票系统,小程序)