Browse Source

商户认证和app登录日志

李书文 1 year ago
parent
commit
70591dbc0b

+ 11 - 0
sa-frame/menu-list-sp.js

@@ -327,6 +327,17 @@ window.menuList.unshift({
 				},
 			]
 		},
+		{
+			id: 'app-user-login-log',
+			name: '移动端登录日志',
+			icon: 'el-icon-receiving',
+			url: 'sa-view/app-user-login-log/app-user-login-log-list.html',
+			childList: [{
+				id: 'app-user-login-log-del',
+				name: '删除',
+				isShow: false
+			}, ]
+		},
 	]
 
 }, {

+ 42 - 51
sa-view/app-user-login-log/app-user-login-log-list.html

@@ -3,7 +3,8 @@
 	<head>
 		<title>移动端用户登录日志-列表</title>
 		<meta charset="utf-8">
-		<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
+		<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">
@@ -18,60 +19,56 @@
 		<div class="vue-box" style="display: none;" :style="'display: block;'">
 			<div class="c-panel">
 				<!-- ------------- 检索参数 ------------- -->
-				<div class="c-title">检索参数</div>
 				<el-form ref="form" :model='p' @submit.native.prevent>
-					<sa-item type="num" name="主键" v-model="p.id"></sa-item>
-					<sa-item type="text" name="用户ID" v-model="p.usreId"></sa-item>
-					<sa-item type="text" name="登录时间" v-model="p.loginTime"></sa-item>
-					<sa-item type="text" name="登录IP" v-model="p.loginIp"></sa-item>
-					<sa-item type="text" name="登录设备" v-model="p.deviceMode"></sa-item>
-					<sa-item type="text" name="app版本号" v-model="p.appVersion"></sa-item>
+					<sa-item type="text" name="登录账户" v-model="p.userName"></sa-item>
 					<el-button type="primary" icon="el-icon-search" @click="p.pageNo = 1; f5()">查询</el-button>
 					<el-button type="info" icon="el-icon-refresh" @click="sa.f5()">重置</el-button>
 				</el-form>
-				<div class="fast-btn">
-					<el-button v-if="sa.isAuth('app-user-login-log-add')" size="mini" type="primary" @click="add()">新增</el-button>
-					<el-button size="mini" type="success" @click="getBySelect()">查看</el-button>
-				</div>
 				<!-- ------------- 数据列表 ------------- -->
-				<el-table class="data-table" ref="data-table" :data="dataList" >
+				<el-table class="data-table" ref="data-table" :data="dataList">
 					<sa-td type="selection"></sa-td>
 					<!-- <sa-td name="主键" prop="id" type="num"></sa-td> -->
-					<sa-td name="用户ID" prop="usreId" ></sa-td>
-					<sa-td name="登录时间" prop="loginTime" ></sa-td>
-					<sa-td name="登录IP" prop="loginIp" ></sa-td>
-					<sa-td name="登录设备" prop="deviceMode" ></sa-td>
-					<sa-td name="app版本号" prop="appVersion" ></sa-td>
-					<el-table-column label="操作" fixed="right"  width="240px">
+					<sa-td name="登录账户" prop="userName"></sa-td>
+					<sa-td name="登录IP" prop="loginIp"></sa-td>
+					<sa-td name="登录设备" prop="deviceMode"></sa-td>
+					<sa-td name="app版本号" prop="appVersion"></sa-td>
+					<sa-td name="登录状态" prop="status">
+						<template slot-scope="scope">
+							<el-tag type="success" v-if="scope.row.status==3">登录成功</el-tag>
+							<el-tag type="danger" v-if="scope.row.status==0">账户不存在</el-tag>
+							<el-tag type="danger" v-if="scope.row.status==1">密码错误</el-tag>
+							<el-tag type="danger" v-if="scope.row.status==2">该账户已停用</el-tag>
+						</template>
+					</sa-td>
+					<sa-td name="登录时间" prop="createTime"></sa-td>
+					<el-table-column label="操作" fixed="right" width="240px">
 						<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-login-log-edit')" class="c-btn" type="primary" icon="el-icon-edit" @click="update(s.row)">修改</el-button>
-							<el-button v-if="sa.isAuth('app-user-login-log-del')" class="c-btn" type="danger" icon="el-icon-delete" @click="del(s.row)">删除</el-button>
+							<el-button v-if="sa.isAuth('app-user-login-log-del')" class="c-btn" type="danger"
+								icon="el-icon-delete" @click="del(s.row)">删除</el-button>
 						</template>
 					</el-table-column>
 				</el-table>
 				<!-- ------------- 分页 ------------- -->
-				<sa-item type="page" :curr.sync="p.pageNo" :size.sync="p.pageSize" :total="dataCount" @change="f5()"></sa-item>
+				<sa-item type="page" :curr.sync="p.pageNo" :size.sync="p.pageSize" :total="dataCount"
+					@change="f5()"></sa-item>
 			</div>
 		</div>
 		<script>
 			var app = new Vue({
 				components: {
-					"sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue'),  
-					"sa-td": httpVueLoader('../../sa-frame/com/sa-td.vue'),		
+					"sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue'),
+					"sa-td": httpVueLoader('../../sa-frame/com/sa-td.vue'),
 				},
 				el: '.vue-box',
 				data: {
 					p: { // 查询参数  
-						id: '',		// 主键 
-						usreId: '',		// 用户ID 
-						loginTime: '',		// 登录时间 
-						loginIp: '',		// 登录IP 
-						deviceMode: '',		// 登录设备 
-						appVersion: '',		// app版本号 
-						pageNo: 1,		// 当前页 
-						pageSize: 10,	// 页大小 
-						sortType: 0		// 排序方式 
+						id: '', // 主键 
+						loginTime: '', // 登录时间 
+						deviceMode: '', // 登录设备 
+						appVersion: '', // app版本号 
+						pageNo: 1, // 当前页 
+						pageSize: 10, // 页大小 
+						sortType: 0 // 排序方式 
 					},
 					dataCount: 0,
 					dataList: [], // 数据集合 
@@ -79,10 +76,10 @@
 				methods: {
 					// 刷新
 					f5: function() {
-						sa.ajax('/AppUserLoginLog/getList', sa.removeNull(this.p), function(res) {
+						sa.ajax('/sp-admin/AppUserLoginLog/getList', sa.removeNull(this.p), function(res) {
 							this.dataList = res.data; // 数据
 							this.dataCount = res.dataCount; // 数据总数 
-							sa.f5TableHeight();		// 刷新表格高度 
+							sa.f5TableHeight(); // 刷新表格高度 
 						}.bind(this));
 					},
 					// 查看
@@ -92,26 +89,18 @@
 					// 查看 - 根据选中的
 					getBySelect: function(data) {
 						var selection = this.$refs['data-table'].selection;
-						if(selection.length == 0) {
+						if (selection.length == 0) {
 							return sa.msg('请选择一条数据')
 						}
 						this.get(selection[0]);
 					},
-					// 修改
-					update: function(data) {
-						sa.showIframe('修改数据', 'app-user-login-log-add.html?id=' + data.id, '1000px', '90%');
-					},
-					// 新增
-					add: function(data) {
-						sa.showIframe('新增数据', 'app-user-login-log-add.html?id=-1', '1000px', '90%');
-					},
 					// 删除
 					del: function(data) {
 						sa.confirm('是否删除,此操作不可撤销', function() {
-							sa.ajax('/AppUserLoginLog/delete?id=' + data.id, function(res) {
+							sa.ajax('/sp-admin/AppUserLoginLog/delete?id=' + data.id, function(res) {
 								sa.arrayDelete(this.dataList, data);
 								sa.ok('删除成功');
-								sa.f5TableHeight();		// 刷新表格高度 
+								sa.f5TableHeight(); // 刷新表格高度 
 							}.bind(this))
 						}.bind(this));
 					},
@@ -120,15 +109,17 @@
 						// 获取选中元素的id列表 
 						let selection = this.$refs['data-table'].selection;
 						let ids = sa.getArrayField(selection, 'id');
-						if(selection.length == 0) {
+						if (selection.length == 0) {
 							return sa.msg('请至少选择一条数据')
 						}
 						// 提交删除 
 						sa.confirm('是否批量删除选中数据?此操作不可撤销', function() {
-							sa.ajax('/AppUserLoginLog/deleteByIds', {ids: ids.join(',')}, function(res) {
+							sa.ajax('/sp-admin/AppUserLoginLog/deleteByIds', {
+								ids: ids.join(',')
+							}, function(res) {
 								sa.arrayDelete(this.dataList, selection);
 								sa.ok('删除成功');
-								sa.f5TableHeight();		// 刷新表格高度 
+								sa.f5TableHeight(); // 刷新表格高度 
 							}.bind(this))
 						}.bind(this));
 					},
@@ -140,4 +131,4 @@
 			})
 		</script>
 	</body>
-</html>
+</html>

+ 26 - 10
sa-view/tb-enterprise/tb-enterprise-do-judge.html

@@ -20,10 +20,12 @@
 			.c-panel .c-label {
 				width: 8em;
 			}
-
 			.c-item .image-box-2 {
 				height: 90px;
 			}
+			.el-row{
+				border-bottom: 1px solid #eeeeee;
+			}
 		</style>
 	</head>
 	<body>
@@ -32,24 +34,38 @@
 			<div class="s-body">
 				<div class="c-panel">
 					<el-form v-if="m">
+						 <el-alert show-icon title="审核驳回" :description="m.judgeContent" type="error" v-if="m.judgeStatus==2"></el-alert>
 						<el-row>
 							<el-col span="12">
 								<sa-info name="商户名称" br>{{m.name}}</sa-info>
-								<sa-info name="法人" br>{{m.legalPerson}}</sa-info>
+							</el-col>
+							<el-col span="12">
+								<sa-info name="纳税人识别号" br>{{m.dutyParagraph}}</sa-info>
+							</el-col>
+						</el-row>
+						<el-row>
+							<el-col span="12">
+								<sa-info name="法人姓名" br>{{m.legalPerson}}</sa-info>
+							</el-col>
+							<el-col span="12">
 								<sa-info name="身份证号" br>{{m.idCard}}</sa-info>
-								<sa-info name="手机号码" br>{{m.contact}}</sa-info>
-								<sa-info v-if="m.judgeBy" name="审核时间" br>{{m.judgeTime}}</sa-info>
-								<sa-info v-if="m.judgeBy" name="审核结果" br>审核驳回</sa-info>
 							</el-col>
+						</el-row>
+						<el-row>
 							<el-col span="12">
-								<sa-info name="地址" br>{{m.address}}</sa-info>
 								<sa-info name="银行名称" br>{{m.bankName}}</sa-info>
+							</el-col>
+							<el-col span="12">
 								<sa-info name="银行账号" br>{{m.bankAccount}}</sa-info>
-								<sa-info name="税号" br>{{m.dutyParagraph}}</sa-info>
-								<sa-info v-if="m.judgeBy" name="审核意见" br>{{m.judgeContent}}</sa-info>
-								<sa-info v-if="m.judgeBy" name="审核人" br>{{m.judgeBy}}</sa-info>
 							</el-col>
-							<sa-info type="img-list" name="营业执照" :value="m.businessLicense" br></sa-info>
+						</el-row>
+						<el-row>
+							<el-col span="12">
+								<sa-info name="联系号码" br>{{m.legalPerson}}</sa-info>
+							</el-col>
+							<el-col span="12">
+								<sa-info name="营业执照" br>{{m.idCard}}</sa-info>
+							</el-col>
 						</el-row>
 					</el-form>
 				</div>

+ 20 - 12
sa-view/tb-enterprise/tb-enterprise-judge.html

@@ -15,15 +15,13 @@
 		<script src="../../static/kj/layer/layer.js"></script>
 		<script src="../../static/sa.js"></script>
 		<script src="../../static/kj/upload-util.js"></script>
-
 	</head>
 	<body>
 		<div class="vue-box" style="display: none;" :style="'display: block;'">
 			<div class="c-panel">
 				<!-- ------------- 检索参数 ------------- -->
-				<!-- <div class="c-title">检索参数</div> -->
 				<el-form ref="form" :model='p' @submit.native.prevent>
-					<sa-item type="text" name="名称" v-model="p.name" :need="false"></sa-item>
+					<sa-item type="text" name="企业名称" v-model="p.name" :need="false"></sa-item>
 					<el-button type="primary" icon="el-icon-search" @click="p.pageNo = 1; f5()">查询</el-button>
 					<el-button type="info" icon="el-icon-refresh" @click="sa.f5()">重置</el-button>
 					<el-button v-if="sa.isAuth('tb-enterprise-judge')" class="c-btn" type="success"
@@ -32,13 +30,22 @@
 				<!-- ------------- 数据列表 ------------- -->
 				<el-table class="data-table" ref="data-table" :data="dataList">
 					<sa-td type="selection" name="序号"></sa-td>
-					<sa-td name="名称" prop="name"></sa-td>
+					<sa-td name="企业名称" prop="name">
+						<template slot-scope="scope">
+							<div class="omit">{{scope.row.name}}</div>
+						</template>
+					</sa-td>
 					<sa-td name="税号" prop="dutyParagraph"></sa-td>
-					<sa-td name="法人" prop="legalPerson"></sa-td>
+					<sa-td name="法人姓名" prop="legalPerson"></sa-td>
 					<sa-td name="手机号码" width="100px" prop="contact"></sa-td>
 					<sa-td name="营业执照" prop="businessLicense" type="img-list"></sa-td>
-					<sa-td name="审核状态" prop="judgeStatus" type="enum" :jv="{0: '未审核', 2: '审核驳回[red]'}"></sa-td>
-					<sa-td name="审核时间" width="160px" prop="judgeTime"></sa-td>
+					<sa-td name="审核状态" prop="judgeStatus">
+						<template slot-scope="scope">
+							<el-tag type="danger" v-if="scope.row.judgeStatus==0">未审核</el-tag>
+							<el-tag type="danger" v-if="scope.row.judgeStatus==2">审核驳回</el-tag>
+						</template>
+					</sa-td>
+					<sa-td name="提交时间" width="160px" prop="createTime"></sa-td>
 					<el-table-column label="操作" fixed="right" width="100px">
 						<template slot-scope="s">
 							<el-button v-if="sa.isAuth('tb-enterprise-judge')" class="c-btn" type="success"
@@ -53,7 +60,8 @@
 			<el-dialog title="批量审核" :visible.sync="modal.visible" width="400px">
 				<el-form>
 					<sa-item type="text" name="审核意见" v-model="modal.form.judgeContent" br></sa-item>
-					<sa-item type="enum" name="审核结果" v-model="modal.form.judgeStatus" :jv="{1: '通过', 2: '驳回'}" jtype="3" br></sa-item>
+					<sa-item type="enum" name="审核结果" v-model="modal.form.judgeStatus" :jv="{1: '通过', 2: '驳回'}" jtype="3"
+						br></sa-item>
 				</el-form>
 				<span slot="footer" class="dialog-footer">
 					<el-button @click="modal.visible = false">取 消</el-button>
@@ -91,13 +99,13 @@
 				},
 				methods: {
 					doJudge() {
-						let form=this.modal.form;
-						if(!form.judgeContent){
+						let form = this.modal.form;
+						if (!form.judgeContent) {
 							return sa.msg('请输入审核意见');
 						}
 						sa.ajax('/level-one-server/TbEnterprise/auditBatch', form, function(res) {
 							sa.alert('审核成功');
-							this.modal.visible=false;
+							this.modal.visible = false;
 							this.f5()
 						}.bind(this));
 					},
@@ -119,7 +127,7 @@
 					},
 					// 查看
 					get: function(data) {
-						sa.showIframe('数据详情', 'tb-enterprise-do-judge.html?id=' + data.id, '850px', '80%');
+						sa.showIframe('商户资料审核', 'tb-enterprise-do-judge.html?id=' + data.id, '850px', '80%');
 					},
 					// 修改
 					update: function(data) {

+ 1 - 1
static/sa.css

@@ -192,4 +192,4 @@ input::-webkit-inner-spin-button {
 .tc-num{color: blue;}
 /* .tc-date{color: blue;} */
 .data-table .el-link--inner{font-weight: bold;}
-
+.omit {white-space: nowrap;text-overflow: ellipsis;overflow: hidden;}