From 8e2d31e804cd7fd5736c9c2e7b755b153b462f7a Mon Sep 17 00:00:00 2001
From: 44323 <443237572@qq.com>
Date: 星期五, 13 十月 2023 14:02:20 +0800
Subject: [PATCH] 10.12

---
 cloud-server-management/src/main/webapp/WEB-INF/view/system/user/user1.html         |   72 ++++++++++++++++++++++++
 cloud-server-management/src/main/webapp/WEB-INF/view/system/tStudent/tStudent1.html |   64 +++++++++++++++++++++
 2 files changed, 136 insertions(+), 0 deletions(-)

diff --git a/cloud-server-management/src/main/webapp/WEB-INF/view/system/tStudent/tStudent1.html b/cloud-server-management/src/main/webapp/WEB-INF/view/system/tStudent/tStudent1.html
new file mode 100644
index 0000000..9fe851c
--- /dev/null
+++ b/cloud-server-management/src/main/webapp/WEB-INF/view/system/tStudent/tStudent1.html
@@ -0,0 +1,64 @@
+@layout("/common/_container.html"){
+<div class="row" id = "ttt">
+    <div class="col-sm-12">
+        <div class="ibox float-e-margins">
+            <div class="ibox-title">
+                <h5>管理</h5>
+            </div>
+            <div class="ibox-content">
+                <div class="row row-lg">
+                    <div class="col-sm-12">
+                        <div class="row">
+                            <div class="col-sm-3">
+                                <#NameCon id="province" name="省份" />
+                            </div>
+                            <div class="col-sm-3">
+                                <#NameCon id="city" name="城市" />
+                            </div>
+                            <div class="col-sm-3">
+                                <#NameCon id="name" name="姓名" />
+                            </div>
+                            <div class="col-sm-3">
+                                <#NameCon id="phone" name="联系电话" />
+                            </div>
+                            <div class="col-sm-3">
+                                <#NameCon id="userName" name="所属用户" />
+                            </div>
+                            <div class="col-sm-3">
+                                <#button name="搜索" icon="fa-search" clickFun="TStudent.search()"/>
+                            </div>
+                        </div>
+                        <div class="hidden-xs" id="TStudentTableToolbar" role="group">
+                            @if(shiro.hasPermission("/tStudent/add")){
+                                <#button name="添加" icon="fa-plus" clickFun="TStudent.openAddTStudent()"/>
+                            @}
+
+                                <#button name="修改" icon="fa-edit" clickFun="TStudent.openTStudentDetail()" space="true"/>
+                            <#button name="查看详情" icon="fa-edit" clickFun="TStudent.openTStudentDetail1()" space="true"/>
+                            <#button name="学员评语" icon="fa-edit" clickFun="TStudent.openTStudentDetail2()" space="true"/>
+
+                            @if(shiro.hasPermission("/tStudent/delete")){
+                                <#button name="删除" icon="fa-remove" clickFun="TStudent.delete()" space="true"/>
+                            @}
+<!--                            <button id="exportButton">TTTTTTTTTT</button>-->
+                        </div>
+                        <#table id="TStudentTable"/>
+                    </div>
+                </div>
+            </div>
+        </div>
+    </div>
+</div>
+<script src="${ctxPath}/modular/system/tStudent/tStudent.js"></script>
+<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.4.0/jspdf.umd.min.js">
+</script>
+<script>
+    document.getElementById('exportButton').addEventListener('click', function() {
+        console.log("==============>")
+        var doc = new jsPDF();
+        var content = document.getElementById('ttt').innerHTML;
+        doc.text(content, 10, 10);
+        doc.save('export.pdf');
+    });
+</script>
+@}
diff --git a/cloud-server-management/src/main/webapp/WEB-INF/view/system/user/user1.html b/cloud-server-management/src/main/webapp/WEB-INF/view/system/user/user1.html
new file mode 100644
index 0000000..1346bd3
--- /dev/null
+++ b/cloud-server-management/src/main/webapp/WEB-INF/view/system/user/user1.html
@@ -0,0 +1,72 @@
+@layout("/common/_container.html"){
+<link rel="stylesheet" href="${ctxPath}/layui/css/layui.css"  media="all">
+<div class="row">
+	<div class="col-sm-12">
+		<div class="ibox float-e-margins">
+			<div class="ibox-title">
+				<h5>用户管理</h5>
+			</div>
+			<div class="ibox-content">
+				<div class="row row-lg">
+					<div class="col-sm-12">
+						<div class="row">
+							<div class="col-lg-10 col-sm-9">
+								<div class="row">
+									<div class="col-lg-4 col-sm-12">
+										<#NameCon id="name" name="搜索" placeholder="帐号/姓名/手机号"/>
+									</div>
+								</div>
+							</div>
+							<div class="col-lg-2 col-sm-3">
+								<div class="row">
+									<div class="col-lg-12 col-sm-12">
+										<#button name="搜索" icon="fa-search" clickFun="MgrUser.search()"/>
+										<#button name="重置" icon="fa-trash" clickFun="MgrUser.resetSearch()" space="true"/>
+									</div>
+								</div>
+							</div>
+						</div>
+						<div class="hidden-xs" id="managerTableToolbar" role="group">
+							@if(shiro.hasPermission("/mgr/add")){
+							<#button name="添加" icon="fa-plus" clickFun="MgrUser.openAddMgr()"/>
+							@}
+							@if(shiro.hasPermission("/mgr/edit")){
+							<#button name="修改" icon="fa-edit" clickFun="MgrUser.openChangeUser()" space="true"/>
+							@}
+							@if(shiro.hasPermission("/mgr/delete")){
+							<#button name="删除" icon="fa-remove" clickFun="MgrUser.delMgrUser()" space="true"/>
+							@}
+							@if(shiro.hasPermission("/mgr/reset")){
+							<#button name="重置密码" icon="fa-refresh" clickFun="MgrUser.resetPwd()" space="true"/>
+							@}
+							@if(shiro.hasPermission("/mgr/freeze")){
+							<#button name="冻结" icon="fa-warning" clickFun="MgrUser.freezeAccount()" space="true"/>
+							@}
+							@if(shiro.hasPermission("/mgr/unfreeze")){
+							<#button name="解冻" icon="fa-check-circle" clickFun="MgrUser.unfreeze()" space="true"/>
+							@}
+							@if(shiro.hasPermission("/mgr/setRole")){
+							<#button name="角色分配" icon="fa-user-secret" clickFun="MgrUser.roleAssign()" space="true"/>
+							@}
+							@if(shiro.hasPermission("/mgr/kanbanPermissions")){
+							<#button name="看板权限设置" icon="fa-user-secret" clickFun="MgrUser.kanbanPermissions()" space="true"/>
+							@}
+						</div>
+						<#table id="managerTable"/>
+					</div>
+				</div>
+			</div>
+		</div>
+	</div>
+</div>
+<script src="${ctxPath}/modular/system/user/user.js"></script>
+<script src="${ctxPath}/layui/layui.js" charset="utf-8"></script>
+<script>
+	laydate.render({
+		elem: '#beginTime'
+	});
+	laydate.render({
+		elem: '#endTime'
+	});
+</script>
+@}

--
Gitblit v1.7.1