| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209 |
- <%@ page contentType="text/html; charset=utf-8"%>
- <%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c"%>
- <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
- <%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
- <%@ taglib uri="http://www.springframework.org/tags" prefix="spring"%>
- <%@ taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
- <%@taglib prefix="shiro" uri="http://shiro.apache.org/tags" %>
- <c:set var="basePath" value="${pageContext.request.contextPath}"/>
- <div id="createDialog" class="crudDialog">
- <form id="createForm" method="post">
- <div class="form-group">
- <label for="username">帐号</label>
- <input id="username" type="text" class="form-control" name="username" maxlength="20">
- </div>
- <div class="form-group">
- <label for="password">密码</label>
- <input id="password" type="text" class="form-control" name="password" maxlength="32">
- </div>
- <div class="form-group">
- <label for="realname">姓名</label>
- <input id="realname" type="text" class="form-control" name="realname" maxlength="20">
- </div>
- <div class="row">
- <div class="col-lg-8 form-group">
- <label for="avatar">头像</label>
- <input id="avatar" type="text" class="form-control" name="avatar" maxlength="150">
- </div>
- <div class="col-lg-4">
- <div id="picker">上传头像</div>
- </div>
- </div>
- <div class="form-group">
- <label for="phone">电话</label>
- <input id="phone" type="text" class="form-control" name="phone" maxlength="20">
- </div>
- <div class="form-group">
- <label for="email">邮箱</label>
- <input id="email" type="text" class="form-control" name="email" maxlength="50">
- </div>
- <div class="radio">
- <div class="radio radio-inline radio-info">
- <input id="sex_1" type="radio" name="sex" value="1" checked>
- <label for="sex_1">男 </label>
- </div>
- <div class="radio radio-inline radio-danger">
- <input id="sex_0" type="radio" name="sex" value="0">
- <label for="sex_0">女 </label>
- </div>
- <div class="radio radio-inline radio-success">
- <input id="locked_0" type="radio" name="locked" value="0" checked>
- <label for="locked_0">正常 </label>
- </div>
- <div class="radio radio-inline">
- <input id="locked_1" type="radio" name="locked" value="1">
- <label for="locked_1">锁定 </label>
- </div>
- </div>
- <div class="form-group text-right dialog-buttons">
- <a class="waves-effect waves-button" href="javascript:;" onclick="createSubmit();">保存</a>
- <a class="waves-effect waves-button" href="javascript:;" onclick="createDialog.close();">取消</a>
- </div>
- </form>
- </div>
- <script>
- function initUploader() {
- //百度上传按钮
- var uploader = WebUploader.create({
- // swf文件路径
- swf: '${basePath}/resources/zheng-admin/plugins/webuploader-0.1.5/Uploader.swf',
- // 文件接收服务端
- method: 'POST',
- // 选择文件的按钮。可选。
- // 内部根据当前运行是创建,可能是input元素,也可能是flash.
- pick: {
- "id": '#picker',
- "multiple": false
- },
- // 不压缩image, 默认如果是jpeg,文件上传前会压缩一把再上传!
- resize: false,
- // 选完文件后,是否自动上传。
- auto: false,
- // 只允许选择图片文件
- accept: {
- title: '图片文件',
- extensions: 'gif,jpg,jpeg,bmp,png',
- mimeTypes: 'image/*'
- }
- });
- uploader.on( 'fileQueued', function(file) {
- $.ajax({
- url: '${ZHENG_OSS_ALIYUN_OSS_POLICY}',
- type: 'GET',
- dataType: 'jsonp',
- jsonp: 'callback',
- success: function(result) {
- var suffix = get_suffix(file.name);
- var random_name = random_string();
- uploader.options.formData.key = result.dir + '/' + random_name + suffix;
- uploader.options.formData.policy = result.policy;
- uploader.options.formData.OSSAccessKeyId = result.OSSAccessKeyId;
- uploader.options.formData.success_action_status = 200;
- uploader.options.formData.callback = result.callback;
- uploader.options.formData.signature = result.signature;
- uploader.options.server = result.action;
- uploader.upload();
- },
- error: function(msg) {
- console.log(msg);
- }
- });
- });
- uploader.on( 'uploadSuccess', function(file, response) {
- $('#avatar').val(response.data.filename).focus();
- });
- uploader.on( 'uploadError', function(file) {
- console.log('uploadError', file);
- });
- }
- // 根据路径获取后缀
- function get_suffix(filename) {
- var pos = filename.lastIndexOf('.');
- var suffix = '';
- if (pos != -1) {
- suffix = filename.substring(pos);
- }
- return suffix;
- }
- // 随机字符串
- function random_string(len) {
- len = len || 32;
- var chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
- var maxPos = chars.length;
- var pwd = '';
- for (i = 0; i < len; i++) {
- pwd += chars.charAt(Math.floor(Math.random() * maxPos));
- }
- return pwd;
- }
- function createSubmit() {
- $.ajax({
- type: 'post',
- url: '${basePath}/manage/user/create',
- data: $('#createForm').serialize(),
- beforeSend: function() {
- if ($('#username').val() == '') {
- $('#username').focus();
- return false;
- }
- if ($('#password').val() == '' || $('#password').val().length < 5) {
- $('#password').focus();
- return false;
- }
- },
- success: function(result) {
- if (result.code != 1) {
- if (result.data instanceof Array) {
- $.each(result.data, function(index, value) {
- $.confirm({
- theme: 'dark',
- animation: 'rotateX',
- closeAnimation: 'rotateX',
- title: false,
- content: value.errorMsg,
- buttons: {
- confirm: {
- text: '确认',
- btnClass: 'waves-effect waves-button waves-light'
- }
- }
- });
- });
- } else {
- $.confirm({
- theme: 'dark',
- animation: 'rotateX',
- closeAnimation: 'rotateX',
- title: false,
- content: result.data.errorMsg || result.data,
- buttons: {
- confirm: {
- text: '确认',
- btnClass: 'waves-effect waves-button waves-light'
- }
- }
- });
- }
- } else {
- createDialog.close();
- $table.bootstrapTable('refresh');
- }
- },
- error: function(XMLHttpRequest, textStatus, errorThrown) {
- $.confirm({
- theme: 'dark',
- animation: 'rotateX',
- closeAnimation: 'rotateX',
- title: false,
- content: textStatus,
- buttons: {
- confirm: {
- text: '确认',
- btnClass: 'waves-effect waves-button waves-light'
- }
- }
- });
- }
- });
- }
- </script>
|