Explorar el Código

app账号管理新增修改密码

李书文 hace 1 año
padre
commit
82f7107422
Se han modificado 2 ficheros con 117 adiciones y 6 borrados
  1. 20 6
      sa-view/app-user/app-user-list.html
  2. 97 0
      sa-view/app-user/app-user-pass.html

+ 20 - 6
sa-view/app-user/app-user-list.html

@@ -30,18 +30,28 @@
 				<el-table class="data-table" ref="data-table" :data="dataList" >
 					<sa-td type="selection"></sa-td>
 					<sa-td name="手机号码" prop="phone" ></sa-td>
-					<sa-td name="姓名" prop="name" ></sa-td>
+					<sa-td name="姓名" prop="name" width="100"></sa-td>
 					<sa-td name="类型" prop="userType" type="enum" :jv="{1: '普通边民', 2: '边民组长', 3: '收购商', 4: '司机', 5: '外籍商户', 6: '合作社'}"></sa-td>
-					<!-- <sa-td name="外联id,user_type=1=>边民ID;user_type=3=>商户ID" prop="fkId" ></sa-td> -->
-					<sa-td name="状态" prop="status" type="enum" :jv="{0: '禁用', 1: '启用'}"></sa-td>
-					<sa-td name="是否认证" prop="auth" type="enum" :jv="{0: '未认证', 1: '已认证'}"></sa-td>
+					<sa-td name="状态" prop="enable" width="90" align="center">
+						<template slot-scope="scope">
+							<el-tag type="primary" v-if="scope.row.status==1">启用</el-tag>
+							<el-tag type="danger" v-if="scope.row.status==0">禁用</el-tag>
+						</template>
+					</sa-td>
+					<sa-td name="是否认证" prop="enable" width="90" align="center">
+						<template slot-scope="scope">
+							<el-tag type="success" v-if="scope.row.auth==1">已认证</el-tag>
+							<el-tag type="danger" v-if="scope.row.auth==0">未认证</el-tag>
+						</template>
+					</sa-td>
 					<sa-td name="认证时间" prop="authTime" ></sa-td>
-					<sa-td name="登录次数" prop="loginCount" ></sa-td>
+					<sa-td name="登录次数" prop="loginCount" width="90"></sa-td>
 					<sa-td name="上次登录时间" prop="lastLoginTime" ></sa-td>
-					<el-table-column label="操作" fixed="right"  width="240px">
+					<el-table-column label="操作" fixed="right"  width="270px">
 						<template slot-scope="s">
 							<el-button class="c-btn" type="success" icon="el-icon-view" @click="get(s.row)">查看</el-button>
 							<el-button v-if="sa.isAuth('app-user-edit')" class="c-btn" type="primary" icon="el-icon-edit" @click="update(s.row)">修改</el-button>
+							<el-button v-if="sa.isAuth('app-user-edit')" class="c-btn" type="primary" icon="el-icon-view" @click="pass(s.row)">改密</el-button>
 							<el-button v-if="sa.isAuth('app-user-del')" class="c-btn" type="danger" icon="el-icon-delete" @click="del(s.row)">删除</el-button>
 						</template>
 					</el-table-column>
@@ -93,6 +103,10 @@
 					update: function(data) {
 						sa.showIframe('修改数据', 'app-user-add.html?id=' + data.id, '1000px', '90%');
 					},
+					// 改密
+					pass: function(data) {
+						sa.showIframe('修改密码', 'app-user-pass.html?id=' + data.id, '500px', '50%');
+					},
 					// 新增
 					add: function(data) {
 						sa.showIframe('新增数据', 'app-user-add.html?id=-1', '1000px', '90%');

+ 97 - 0
sa-view/app-user/app-user-pass.html

@@ -0,0 +1,97 @@
+<!DOCTYPE html>
+<html>
+	<head>
+		<title>移动端账号-添加/修改</title>
+		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+		<meta name="viewport"
+			content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
+		<!-- 所有的 css js 资源 -->
+		<link rel="stylesheet" href="../../static/kj/element-ui/theme-chalk/index.css">
+		<link rel="stylesheet" href="../../static/sa.css">
+		<script src="../../static/kj/vue.min.js"></script>
+		<script src="../../static/kj/element-ui/index.js"></script>
+		<script src="../../static/kj/httpVueLoader.js"></script>
+		<script src="../../static/kj/jquery.min.js"></script>
+		<script src="../../static/kj/layer/layer.js"></script>
+		<script src="../../static/sa.js"></script>
+		<style type="text/css">
+			.c-panel .el-form .c-label {
+				width: 7em !important;
+			}
+			.c-panel .el-form .el-input,
+			.c-panel .el-form .el-textarea__inner {
+				width: 250px;
+			}
+		</style>
+	</head>
+	<body>
+		<div class="vue-box" :class="{sbot: id}" style="display: none;" :style="'display: block;'">
+			<!-- ------- 内容部分 ------- -->
+			<div class="s-body">
+				<div class="c-panel">
+					<div class="c-title" v-if="id == 0">数据添加</div>
+					<div class="c-title" v-else>数据修改</div>
+					<el-form v-if="m">
+						<sa-item type="text" name="新密码" v-model="m.password" br></sa-item>
+						<sa-item type="text" name="重复密码" v-model="m.again" br></sa-item>
+					</el-form>
+				</div>
+			</div>
+			<!-- ------- 底部按钮 ------- -->
+			<div class="s-foot">
+				<el-button type="primary" @click="ok()">确定</el-button>
+				<el-button @click="sa.closeCurrIframe()">取消</el-button>
+			</div>
+		</div>
+		<script>
+			var app = new Vue({
+				components: {
+					"sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue')
+				},
+				el: '.vue-box',
+				data: {
+					id: sa.p('id', 0), // 获取超链接中的id参数(0=添加,非0=修改)
+					m: null, // 实体对象
+				},
+				methods: {
+					// 创建一个 默认Model
+					createModel: function() {
+						return {
+							
+						}
+					},
+					// 提交数据
+					ok: function() {
+						// 表单校验
+						let m = this.m;
+						sa.checkNull(m.password, '请输入新密码');
+						sa.checkNull(m.again, '请再次输入新密码');
+						if(m.password!=m.again){
+							sa.alert('两次输入不一致');
+							return;
+						}
+						sa.ajax('/sp-admin/AppUser/pass', m, function(res) {
+							sa.alert('修改成功', this.clean);
+						}.bind(this));
+					},
+					// 添加/修改 完成后的动作
+					clean: function() {
+						if (this.id == 0) {
+							this.m = this.createModel();
+						} else {
+							parent.app.f5(); // 刷新父页面列表
+							sa.closeCurrIframe(); // 关闭本页
+						}
+					}
+				},
+				mounted: function() {
+					// 初始化数据
+					sa.ajax('/sp-admin/AppUser/getById?id=' + this.id, function(res) {
+						this.m = res.data;
+						this.m.password='';
+					}.bind(this))
+				}
+			})
+		</script>
+	</body>
+</html>