后台管理系统【用户列表】

人生之路不会是一帆风顺的,我们会遇上顺境,也会遇上逆境,在所有成功路上折磨你的,背后都隐藏着激励你奋发向上的动机,人生没有如果,只有后果与结果,成熟,就是用微笑来面对一切小事。

导读:本篇文章讲解 后台管理系统【用户列表】,希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com,来源:原文

<template>
	<div>
		<h3>
			<!-- A面包屑导航区域 -->
			<el-breadcrumb separator-class="el-icon-arrow-right">
				<el-breadcrumb-item :to="{ path: '/' }">首页</el-breadcrumb-item>
				<el-breadcrumb-item>用户管理</el-breadcrumb-item>
				<el-breadcrumb-item>用户列表</el-breadcrumb-item>
			</el-breadcrumb>

			<!-- B卡片视图区域 -->
			<el-card>
				<!-- a搜索与添加区域 -->
				<el-row :gutter="20">
					<el-col :span="10">
						<el-input
							placeholder="请输入内容"
							v-model="queryInfo.query"
							clearable
							@clear="getUserList"
						>
							<el-button
								slot="append"
								icon="el-icon-search"
								@click="getUserList"
							></el-button>
						</el-input>
					</el-col>
					<el-col :span="4">
						<el-button type="primary" @click="addDialogVisible = true"
							>添加用户</el-button
						>
					</el-col>
				</el-row>
				<!-- b用户列表区域 -->
				<el-table :data="userlist" border stripe>
					<el-table-column type="index" label="#"></el-table-column>
					<el-table-column label="姓名" prop="username"></el-table-column>
					<el-table-column label="邮箱" prop="email"></el-table-column>
					<el-table-column label="电话" prop="mobile"></el-table-column>
					<el-table-column label="角色" prop="role_name"></el-table-column>
					<el-table-column label="状态">
						<template slot-scope="scope">
							<!-- {{scope.row}}  得到的是这一行的数据 -->
							<el-switch
								v-model="scope.row.mg_state"
								@change="userStateChanged(scope.row)"
							></el-switch>
						</template>
					</el-table-column>
					<el-table-column label="操作" width="180px">
						<template slot-scope="scope">
							<!-- 修改按钮 -->
							<el-button
								type="primary"
								icon="el-icon-edit"
								@click="showEditDialog(scope.row.id)"
								size="mini"
							></el-button>
							<!-- 删除按钮 -->
							<el-button
								type="danger"
								icon="el-icon-delete"
								size="mini"
								@click="removeUserById(scope.row.id)"
							></el-button
							>
							<!-- tooltip组件的使用 分配角色按钮区 p48  -->
							<el-tooltip
								class="item"
								effect="dark"
								content="分配角色"
								placement="top"
								:enterable="false"
							><!-- 分配角色按钮 -->
								<el-button
									type="warning"
									icon="el-icon-setting"
									size="mini"
									@click="setRole(scope.row)"
								></el-button
								>
							</el-tooltip>
						</template>
					</el-table-column>
				</el-table>
				<!-- C 分页区域 -->
			<el-pagination
					@size-change="handleSizeChange"
					@current-change="handleCurrentChange"
					:current-page="queryInfo.pagenum"
					:page-sizes="[1, 2, 5, 10]"
					:page-size="queryInfo.pagesize"
					layout="total, sizes, prev, pager, next, jumper"
					:total="total"
			>
			</el-pagination>
			</el-card>

			<!-- C添加用户的对话框 -->
			<el-dialog title="添加用户" :visible.sync="addDialogVisible" width="50%" @close="addDialogClosed">
				<!-- a内容主体区域 -->
			    <el-form :model="addForm" :rules="addFormRules" ref="addFormRef" label-width="70px">
                   <el-form-item label="用户名" prop="username">
                      <el-input v-model="addForm.username"></el-input>
                   </el-form-item>
				    <el-form-item label="密码" prop="password">
                      <el-input v-model="addForm.password"></el-input>
                   </el-form-item>
				    <el-form-item label="邮箱" prop="email">
                      <el-input v-model="addForm.email"></el-input>
                   </el-form-item>
				    <el-form-item label="手机" prop="mobile">
                      <el-input v-model="addForm.mobile"></el-input>
                   </el-form-item>
				</el-form>   
				<!--b底部区域 -->
				<span slot="footer" class="dialog-footer">
					<el-button @click="addDialogVisible = false">取 消</el-button>
					<el-button type="primary" @click="addUser">确 定</el-button>
				</span>
			</el-dialog>

			<!-- D修改用户的对话框 -->
			<el-dialog
                  title="修改用户"
                  :visible.sync="editDialogVisible"
                  width="50%"
				  @close="editDialogClosed"
                  >
                  <el-form ref="editFormRef" :model="editForm" label-width="70px" :rules="editFormRules">
                      <el-form-item label="用户名">
                          <el-input v-model="editForm.username" disabled></el-input>
                      </el-form-item>
					  <el-form-item label="邮箱"  prop="email">
                          <el-input v-model="editForm.email"></el-input>
                      </el-form-item>
					  <el-form-item label="手机"  prop="mobile">
                          <el-input v-model="editForm.mobile"></el-input>
                      </el-form-item>
				  </el-form>	  
                  <span slot="footer" class="dialog-footer">
                      <el-button @click="editDialogVisible = false">取 消</el-button>
                      <el-button type="primary" @click="editUserInfo">确 定</el-button>
                  </span>
            </el-dialog>

			<!-- E分配角色的对话框 -->
		  <el-dialog
              title="分配角色"
             :visible.sync="setRoleDialogVisible"
             width="50%"
			 @close="setRoleDialogClosed">
             <div>
				 <!-- {{userInfo}} -->
				 <p>当前的用户:{{userInfo.username}}</p>
				 <p>当前的角色:{{userInfo.role_name}}</p>
				 <p>分配新角色:
					 <el-select v-model="selectedRoleId" placeholder="请选择">
                        <el-option
                          v-for="item in rolesList"
                          :key="item.id"
                          :label="item.roleName"
                          :value="item.id">
                        </el-option>
                     </el-select>
				 </p>
			 </div>
             <span slot="footer" class="dialog-footer">
               <el-button @click="setRoleDialogVisible = false">取 消</el-button>
               <el-button type="primary" @click="saveRoleInfo">确 定</el-button>
             </span>
           </el-dialog>
		</h3>
	</div>
</template>

<script>
export default {
	name: "Users",
	data() {
	
           // 验证邮箱的规则!!!!   p54  
           var checkEmail = (rule, value, cb) => {
           const regEmail = /^([a-zA-Z]|[0-9])(\w|-)+@[a-zA-Z0-9]+\.([a-zA-Z]{2,4})$/
           if (regEmail.test(value)) {
           // 合法的邮箱
           return cb()
           }
           cb(new Error('请输入合法的邮箱'))
           }

           // 验证手机号码的规则
           var checkMobile = (rule, value, cb) => {
           const regMobile = /^(0|86|17951)?(13[0-9]|15[012356789]|17[678]|18[0- 
                                            9]|14[57])[0-9]{8}$/
           if (regMobile.test(value)) {
           // 合法的手机号码
           return cb()
           }
           cb(new Error('手机号码格式不正确'))
           }
	
		return {
			userlist: [],//用户列表数据

			// 获取用户列表的参数对象
			queryInfo: {
				query: "", //搜索关键字
				pagenum: 1, //当前的页数
				pagesize: 5, //当前每页显示多少条数据
			},
			total: 0,
			addDialogVisible: false, //控制添加用户对话框的显示与隐藏
		    // 添加用户的表单数据
			addForm:{
				username:"",
				password:"",
				email:"",
				mobile:""
			},
            // 添加表单的验证规则对象!!!!!!!!!
			addFormRules:{
				username:[{required:true,message:"请输入用户名",trigger:"blur"},
			    {min:3,max:10,message:"用户名长度在3-10个字符之间",trigger:"blur"}],
			   
			     password:[{required:true,message:"请输入密码",trigger:"blur"},
			    {min:6,max:15,message:"用户名长度在6-15个字符之间",trigger:"blur"}],

				email:[{required:true,message:"请输入邮箱",trigger:"blur"},
				{validator:checkEmail,trigger:"blur"}],

				mobile:[{required:true,message:"请输入手机号",trigger:"blur"},
				{validator:checkMobile,trigger:"blur"}]
			},
			// 控制修改用户对话框的显示与隐藏
			editDialogVisible:false,
			// 查询到的用户信息对象
			editForm:{},
			// 修改表单的验证规则对象
			editFormRules:{
				email:[{required:true,message:"请输入用户邮箱",trigger:"blur"},
				{validator:checkEmail,trigger:"blur"}],

			    mobile:[{required:true,message:"请输入用户手机",trigger:"blur"},
				{validator:checkMobile,trigger:"blur"}],
			},
			setRoleDialogVisible:false,//控制分配角色对话框的显示与隐藏
            userInfo:{},//需要被分配角色的用户信息
            rolesList:[],//所有角色的数据列表
			selectedRoleId:''//已选中的角色ID值
		};
	},
	created() {
		this.getUserList();
	},
	methods: {
		async getUserList() {// 解构赋值出一个data属性,重命名为res
			const { data: res } = await this.$http.get("users", {
				params: this.queryInfo,
			});
			if (res.meta.status !== 200) {
				return this.$message.error("获取用户列表失败!!!");
			}
			this.userlist = res.data.users; //这是一个user数组。里面存储用户数据
			this.total = res.data.total;
			console.log(res, "res在这里");
		},
		// 监听 pagesize 改变的事件
		handleSizeChange(newSize) {
			// console.log(newSize);  //xxx条/页
			this.queryInfo.pagesize = newSize;
			this.getUserList(); //重新调用一下这个方法 获取数据
		},
		// 监听 页码值 改变的事件
		handleCurrentChange(newPage) {
			// console.log(newPage); //第几页
			this.queryInfo.pagenum = newPage;
			this.getUserList(); //重新调用一下这个方法 获取数据
		},
		// 监听 switch 开关状态的改变!!!!!!!!!!!!!!
		async userStateChanged(userinfo) {
			console.log(userinfo, "这里是userinfo");
			const { data: res } = await this.$http.put(
				`users/${userinfo.id}/state/${userinfo.mg_state}`
			);
			if (res.meta.status !== 200) {
				userinfo.mg_state = !userinfo.mg_state; //请求失败还要把页面按钮状态改回 
                                                              去!!!!!!!!
				return this.$message.error("更新用户状态失败!");
			}
			this.$message.success("更新用户状态成功");
		},
		//监听添加用户对话框的关闭事件
		addDialogClosed(){
			this.$refs.addFormRef.resetFields()//重置表单内容
		},
		// 点击按钮,添加新用户
		addUser(){
			this.$refs.addFormRef.validate(async valid=>{
				console.log(valid,"这里是valid");
				if(!valid) return//不能发起添加用户的网络请求   validate:对整个表单进行校验的 
                                                                 方法 预验证!!!!!!!
				//可以发起添加用户的网络请求
				const {data:res}=await 
                this.$http.post("users",this.addForm)//this.addform是请求参数
					if(res.meta.status!==201) {
						this.$message.error("添加用户失败!");
					}
						this.$message.success("添加用户成功啦");//添加成功后要隐藏对话框
						// 隐藏添加用户的对话框
						this.addDialogVisible=false
						// 重新获取用户列表数据
						this.getUserList()
			})
		},
		//展示编辑用户的对话框
	   async showEditDialog(id){
		//    console.log(id);
		const {data:res}=await this.$http.get("users/"+id)
        if(res.meta.status!==200){
			return this.$message.error("查询用户信息失败")
		}
		this.editForm=res.data
         this.editDialogVisible=true
		},
		//监听修改用户对话框的关闭事件
		editDialogClosed(){
			this.$refs.editFormRef.resetFields()
		},
		// 修改用户信息并提交
		editUserInfo(){
          this.$refs.editFormRef.validate(async valid=>{  //validate:对整个表单进行校验的方 
                                                                     法 预验证!!!!!!
			  if(!valid) return
			  //发起修改用户信息的数据请求
			 const {data:res}=await this.$http.put("users/"+this.editForm.id,{
				  email:this.editForm.email,
				  mobile:this.editForm.mobile
			  })
			  if(res.meta.status!==200) {
				  return this.$message.error("更新用户信息失败")
 			  }
			//  关闭对话框
			this.editDialogVisible=false
			// 刷新数据列表
			this.getUserList()
			//提示修改成功
			this.$message.success("更新用户信息成功")
		  })
		},
		
		// 根据id删除对应的用户信息?????????????????!!!!!
		async removeUserById(id){
           //弹框询问用户是否删除数据   
		 const confirmResult=await this.$confirm('此操作将永久删除该用户, 是否继续?', '提 
    示', {
          confirmButtonText: '确定',
          cancelButtonText: '取消',
          type: 'warning'
        }).catch(err=>err)
		// 如果用户确认删除,则返回值confirmResult为字符串confirm
		// 如果用户取消了删除则返回值为字符串cancel
		// console.log(confirmTResult);
		if(confirmResult!=="confirm"){
			return this.$message.info("已取消删除")
		}
		// console.log("确认了删除");
	const {data:res}=await this.$http.delete("users/"+id)
	if(res.meta.status!==200){
		return this.$messgae.error("删除用户失败")
	}
	this.$message.success("删除用户成功")
	this.getUserList()
		},

		// 展示分配角色的对话框!!!!!!!!
        async setRole(userInfo){
			this.userInfo=userInfo
			//展示对话框之前,获取所有角色的列表
			const {data:res}=await this.$http.get("roles")
			if(res.meta.status!==200){
                this.$message.error("获取角色列表失败")
			}else{
				this.rolesList=res.data
			}
           this.setRoleDialogVisible=true
		},
		// 点击按钮。分配角色
		async saveRoleInfo(){
			if(!this.selectedRoleId){
				return this.$message.error("请选择要分配的角色哦")
			}
			const {data:res}=await this.$http.put(`users/${this.userInfo.id}/role`,
			{rid:this.selectedRoleId})
			if(res.meta.status!==200){
				return this.$message.error("更新角色失败")
			}
			this.$message.success('更新角色成功')
			this.getUserList()
			this.setRoleDialogVisible=false
		},
		// 监听分配角色对话框的关闭事件
		setRoleDialogClosed(){
			this.selectedRoleId=""
			this.userInfo={}
		}
	},
};
</script>

<style lang="less" scoped>
</style>

后台管理系统【用户列表】

后台管理系统【用户列表】

 

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/126775.html

(0)
飞熊的头像飞熊bm

相关推荐

发表回复

登录后才能评论
极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!