活动管理-添加活动
This commit is contained in:
parent
184363a90b
commit
60f5019779
|
|
@ -3,11 +3,165 @@
|
||||||
<head>
|
<head>
|
||||||
<th:block th:include="include :: header('创建活动')" />
|
<th:block th:include="include :: header('创建活动')" />
|
||||||
<th:block th:include="include :: datetimepicker-css" />
|
<th:block th:include="include :: datetimepicker-css" />
|
||||||
|
<th:block th:include="include :: jquery-smartwizard-css" />
|
||||||
</head>
|
</head>
|
||||||
<body class="white-bg">
|
<body class="white-bg">
|
||||||
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
|
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
|
||||||
<form class="form-horizontal m" id="form-info-add">
|
<form class="form-horizontal m" id="form-info-add">
|
||||||
<h4 class="form-header h4">活动管理</h4>
|
<h4 class="form-header h4">活动管理</h4>
|
||||||
|
<div id="smartwizard">
|
||||||
|
<ul class="nav">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="#step-1"> 第一步 </a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="#step-2"> 第二步 </a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="#step-3"> 第三步 </a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="#step-4"> 第四步 </a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<div class="tab-content">
|
||||||
|
<div id="step-1" class="tab-pane" role="tabpanel" aria-labelledby="step-1">
|
||||||
|
<div>
|
||||||
|
<form class="form form-horizontal m-t">
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-sm-3 control-label">姓氏:</label>
|
||||||
|
<div class="col-sm-8">
|
||||||
|
<input id="firstname" name="firstname" class="form-control" type="text">
|
||||||
|
<span class="help-block m-b-none">
|
||||||
|
<i class="fa fa-info-circle"></i>
|
||||||
|
这里写点提示的内容
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-sm-3 control-label is-required">名字:</label>
|
||||||
|
<div class="col-sm-8">
|
||||||
|
<input id="lastname" name="lastname" class="form-control" type="text" required>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-sm-3 control-label is-required">用户名:</label>
|
||||||
|
<div class="col-sm-8">
|
||||||
|
<input id="username" name="username" class="form-control" type="text" required>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-sm-3 control-label">密码:</label>
|
||||||
|
<div class="col-sm-8">
|
||||||
|
<input id="password" name="password" class="form-control" type="password">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-sm-3 control-label">确认密码:</label>
|
||||||
|
<div class="col-sm-8">
|
||||||
|
<input id="confirm_password" name="confirm_password" class="form-control" type="password">
|
||||||
|
<span class="help-block m-b-none">
|
||||||
|
<i class="fa fa-info-circle"></i>
|
||||||
|
请再次输入您的密码
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-sm-3 control-label">E-mail:</label>
|
||||||
|
<div class="col-sm-8">
|
||||||
|
<input id="email" name="email" class="form-control" type="email">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="step-2" class="tab-pane" role="tabpanel" aria-labelledby="step-2">
|
||||||
|
<div>
|
||||||
|
<form class="form form-horizontal m-t">
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-sm-3 control-label">性别:</label>
|
||||||
|
<div class="col-sm-8">
|
||||||
|
<select name="sex" class="form-control m-b" th:with="type=${@dict.getType('sys_user_sex')}">
|
||||||
|
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-sm-3 control-label">时间:</label>
|
||||||
|
<div class="col-sm-8">
|
||||||
|
<input id="time" name="time" class="form-control time-input" type="text">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-sm-3 control-label">状态:</label>
|
||||||
|
<div class="col-sm-8">
|
||||||
|
<div class="radio-box" th:each="dict : ${@dict.getType('sys_normal_disable')}">
|
||||||
|
<input type="radio" th:id="${dict.dictCode}" name="status" th:value="${dict.dictValue}" th:checked="${dict.default}">
|
||||||
|
<label th:for="${dict.dictCode}" th:text="${dict.dictLabel}"></label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="step-3" class="tab-pane" role="tabpanel" aria-labelledby="step-3">
|
||||||
|
<div class="m-t-md">
|
||||||
|
<p>1、如果需要工具栏在页面底部显示, 将style中下面的部分取消注释<blockquote>.sw>.toolbar-bottom </blockquote></p>
|
||||||
|
<p>2、如果设置了自动调节高度为false, 将style中下面的部分取消注释<blockquote>.sw>.tab-content </blockquote></p>
|
||||||
|
<p>3、工具栏的按钮样式会被表单插件中.btn样式覆盖导致bootstrap中的按钮样式无效, 如果需要改变按钮样式可以自己定义并提高优先级</blockquote></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="step-4" class="tab-pane" role="tabpanel" aria-labelledby="step-4">
|
||||||
|
<div class="m-t-md">
|
||||||
|
<h3>测试多行显示</h3>
|
||||||
|
<pre style="overflow-x: hidden;">
|
||||||
|
$('#smartwizard').smartWizard({
|
||||||
|
selected: 0, // Initial selected step, 0 = first step
|
||||||
|
theme: 'default', // theme for the wizard, related css need to include for other than default theme
|
||||||
|
justified: true, // Nav menu justification. true/false
|
||||||
|
darkMode:false, // Enable/disable Dark Mode if the theme supports. true/false
|
||||||
|
autoAdjustHeight: true, // Automatically adjust content height
|
||||||
|
cycleSteps: false, // Allows to cycle the navigation of steps
|
||||||
|
backButtonSupport: true, // Enable the back button support
|
||||||
|
enableURLhash: true, // Enable selection of the step based on url hash
|
||||||
|
transition: {
|
||||||
|
animation: 'none', // Effect on navigation, none/fade/slide-horizontal/slide-vertical/slide-swing
|
||||||
|
speed: '400', // Transion animation speed
|
||||||
|
easing:'' // Transition animation easing. Not supported without a jQuery easing plugin
|
||||||
|
},
|
||||||
|
toolbarSettings: {
|
||||||
|
toolbarPosition: 'bottom', // none, top, bottom, both
|
||||||
|
toolbarButtonPosition: 'right', // left, right, center
|
||||||
|
showNextButton: true, // show/hide a Next button
|
||||||
|
showPreviousButton: true, // show/hide a Previous button
|
||||||
|
toolbarExtraButtons: [] // Extra buttons to show on toolbar, array of jQuery input/buttons elements
|
||||||
|
},
|
||||||
|
anchorSettings: {
|
||||||
|
anchorClickable: true, // Enable/Disable anchor navigation
|
||||||
|
enableAllAnchors: false, // Activates all anchors clickable all times
|
||||||
|
markDoneStep: true, // Add done state on navigation
|
||||||
|
markAllPreviousStepsAsDone: true, // When a step selected by url hash, all previous steps are marked done
|
||||||
|
removeDoneStepOnNavigateBack: false, // While navigate back done step after active step will be cleared
|
||||||
|
enableAnchorOnDoneStep: true // Enable/Disable the done steps navigation
|
||||||
|
},
|
||||||
|
keyboardSettings: {
|
||||||
|
keyNavigation: true, // Enable/Disable keyboard navigation(left and right keys are used if enabled)
|
||||||
|
keyLeft: [37], // Left key code
|
||||||
|
keyRight: [39] // Right key code
|
||||||
|
},
|
||||||
|
lang: { // Language variables for button
|
||||||
|
next: 'Next',
|
||||||
|
previous: 'Previous'
|
||||||
|
},
|
||||||
|
disabledSteps: [], // Array Steps disabled
|
||||||
|
errorSteps: [], // Highlight step with errors
|
||||||
|
hiddenSteps: [] // Hidden steps
|
||||||
|
});
|
||||||
|
</pre>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-sm-6">
|
<div class="col-sm-6">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
|
|
@ -178,6 +332,7 @@
|
||||||
</div>
|
</div>
|
||||||
<th:block th:include="include :: footer" />
|
<th:block th:include="include :: footer" />
|
||||||
<th:block th:include="include :: datetimepicker-js" />
|
<th:block th:include="include :: datetimepicker-js" />
|
||||||
|
<th:block th:include="include :: jquery-smartwizard-js" />
|
||||||
<script th:inline="javascript">
|
<script th:inline="javascript">
|
||||||
var prefix = ctx + "activity/info"
|
var prefix = ctx + "activity/info"
|
||||||
|
|
||||||
|
|
@ -264,5 +419,101 @@
|
||||||
format: 'yyyy-mm-dd hh:ii:ss'
|
format: 'yyyy-mm-dd hh:ii:ss'
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
<script th:inline="javascript">
|
||||||
|
$(document).ready(function() {
|
||||||
|
// 工具栏按钮
|
||||||
|
var btnFinish = $('<a id="btn-finish"></a>').text('完成')
|
||||||
|
.addClass('btn btn-info')
|
||||||
|
.on('click', function(){ submit(); });
|
||||||
|
var btnCancel = $('<a id="btn-cancel"></a>').text('取消')
|
||||||
|
.addClass('btn btn-danger')
|
||||||
|
.on('click', function(){ $('#smartwizard').smartWizard("reset"); });
|
||||||
|
// 下面两个按钮是为了因为插件默认的是botton,这里换成<a>,也可以选择用样式替换,或者不替换
|
||||||
|
var btnNext = $('<a id="btn-next"></a>').text('下一步')
|
||||||
|
.addClass('btn btn-info')
|
||||||
|
.on('click', function(){ $('#smartwizard').smartWizard("next");});
|
||||||
|
var btnPrev = $('<a id="btn-prev"></a>').text('上一步')
|
||||||
|
.addClass('btn btn-success disabled')
|
||||||
|
.on('click', function(){ $('#smartwizard').smartWizard("prev"); });
|
||||||
|
// 初始化表单向导组件
|
||||||
|
$('#smartwizard').smartWizard({
|
||||||
|
theme: 'dots', // default, arrows, dots, progress
|
||||||
|
autoAdjustHeight : false, // 自动调整高度, 默认true
|
||||||
|
enableURLhash:false, //开启URL hash,开启后点击浏览器前进后退按钮会执行下一步和上一步操作
|
||||||
|
transition: {
|
||||||
|
animation: 'slide-horizontal', // Effect on navigation, none/fade/slide-horizontal/slide-vertical/slide-swing
|
||||||
|
},
|
||||||
|
toolbarSettings: {
|
||||||
|
showNextButton: false,// 因为上面自定义了下一步按钮, 所以隐藏掉插件自带的按钮, 如果不使用自定义按钮, 需要改为true或者去掉该属性
|
||||||
|
showPreviousButton: false,// 因为上面自定义了上一步按钮, 所以隐藏掉插件自带的按钮, 如果不使用自定义按钮, 需要改为true或者去掉该属性
|
||||||
|
toolbarExtraButtons: [btnCancel,btnPrev,btnNext,btnFinish]// 扩展的按钮集合
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
// 显示步骤时将触发事件
|
||||||
|
$("#smartwizard").on("showStep", function(e, anchorObject, stepNumber, stepDirection, stepPosition) {
|
||||||
|
// 下面按钮是快速操作栏的
|
||||||
|
$("#prev-btn").removeClass('disabled');
|
||||||
|
$("#next-btn").removeClass('disabled');
|
||||||
|
// 下面按钮是工具栏的
|
||||||
|
$("#btn-prev").removeClass('disabled');
|
||||||
|
$("#btn-next").removeClass('disabled');
|
||||||
|
$("#btn-finish").removeClass('disabled');
|
||||||
|
if(stepPosition === 'first') {
|
||||||
|
$("#prev-btn").addClass('disabled');// 快速操作栏(演示用)
|
||||||
|
$("#btn-prev").addClass('disabled');
|
||||||
|
$("#btn-finish").addClass('disabled');
|
||||||
|
} else if(stepPosition === 'last') {
|
||||||
|
$("#next-btn").addClass('disabled');// 快速操作栏(演示用)
|
||||||
|
$("#btn-next").addClass('disabled');
|
||||||
|
} else {
|
||||||
|
$("#prev-btn").removeClass('disabled');// 快速操作栏(演示用)
|
||||||
|
$("#next-btn").removeClass('disabled');// 快速操作栏(演示用)
|
||||||
|
$("#btn-prev").removeClass('disabled');
|
||||||
|
$("#btn-next").removeClass('disabled');
|
||||||
|
$("#btn-finish").addClass('disabled');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// 该事件在离开某个步骤之前触发
|
||||||
|
$("#smartwizard").on("leaveStep", function(e, anchorObject, currentStepNumber, nextStepNumber, stepDirection) {
|
||||||
|
if(stepDirection == 'forward'){
|
||||||
|
var form = $("#step-" + (currentStepNumber + 1)).find('.form');
|
||||||
|
if(form.length > 0){
|
||||||
|
return form.validate().form();
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
});
|
||||||
|
|
||||||
|
$("#theme-selector").on("change", function() {
|
||||||
|
// Change theme
|
||||||
|
var options = {
|
||||||
|
theme : $(this).val()
|
||||||
|
};
|
||||||
|
$('#smartwizard').smartWizard("setOptions", options);
|
||||||
|
return true;
|
||||||
|
});
|
||||||
|
|
||||||
|
$("#reset-btn").on("click", function() {
|
||||||
|
// Reset wizard
|
||||||
|
$('#smartwizard').smartWizard("reset");
|
||||||
|
return true;
|
||||||
|
});
|
||||||
|
|
||||||
|
$("#prev-btn").on("click", function() {
|
||||||
|
// Navigate previous
|
||||||
|
$('#smartwizard').smartWizard("prev");
|
||||||
|
return true;
|
||||||
|
});
|
||||||
|
|
||||||
|
$("#next-btn").on("click", function() {
|
||||||
|
// Navigate next
|
||||||
|
$('#smartwizard').smartWizard("next");
|
||||||
|
return true;
|
||||||
|
});
|
||||||
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
Loading…
Reference in New Issue