|
@@ -1,6 +1,58 @@
|
|
|
<{include file='../public/admin_header.html'}>
|
|
|
<{include file='../public/admin_navi.html'}>
|
|
|
<!-- Right side column. Contains the navbar and content of the page -->
|
|
|
+<link rel="stylesheet" type="text/css"
|
|
|
+ href="https://www.jq22.com/demo/jqueryMobiscroll201803142314/css/mobiscroll.custom.min.css" />
|
|
|
+<script src="https://www.jq22.com/demo/jqueryMobiscroll201803142314/js/mobiscroll.custom.min.js"
|
|
|
+ type="text/javascript" charset="utf-8"></script>
|
|
|
+<style>
|
|
|
+ .mbsc-ios .dw {
|
|
|
+ top: 0 !important;
|
|
|
+ left: 0 !important;
|
|
|
+ right: 0 !important;
|
|
|
+ bottom: 0 !important;
|
|
|
+ width: 600px !important;
|
|
|
+ height: 300px;
|
|
|
+ margin: auto;
|
|
|
+ }
|
|
|
+
|
|
|
+ .mbsc-ios {
|
|
|
+ transition: .3s;
|
|
|
+ }
|
|
|
+
|
|
|
+ .mbsc-ios .dw-persp .dwcc {
|
|
|
+ padding: 30px 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .mbsc-ios .dwb {
|
|
|
+ color: transparent;
|
|
|
+ position: relative;
|
|
|
+ }
|
|
|
+
|
|
|
+ .mbsc-ios .dwbc {
|
|
|
+ border-bottom: 1px solid #cdcdcd;
|
|
|
+ background: #ebebeb;
|
|
|
+ }
|
|
|
+
|
|
|
+ .dwb-s::before,
|
|
|
+ .dwb-c::before {
|
|
|
+ position: absolute;
|
|
|
+ top: 6px;
|
|
|
+ color: #333;
|
|
|
+ font-size: 18px;
|
|
|
+ font-weight: 600;
|
|
|
+ }
|
|
|
+
|
|
|
+ .dwb-s::before {
|
|
|
+ content: "确定";
|
|
|
+ right: 10px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .dwb-c::before {
|
|
|
+ content: "取消";
|
|
|
+ left: 10px;
|
|
|
+ }
|
|
|
+</style>
|
|
|
<aside class="right-side">
|
|
|
<!-- Content Header (Page header) -->
|
|
|
<section class="content-header">
|
|
@@ -59,6 +111,14 @@
|
|
|
</td>
|
|
|
</tr>
|
|
|
|
|
|
+ <tr>
|
|
|
+
|
|
|
+ <td>日期时间</td>
|
|
|
+ <td>
|
|
|
+ <input type="text" id="demo_datetime" name="demo_datetime" />
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+
|
|
|
<tr>
|
|
|
<td> </td>
|
|
|
<td >
|
|
@@ -89,12 +149,28 @@
|
|
|
function to_submit(){
|
|
|
var template_id = $('#template_id').val();
|
|
|
var group_name = $('#group_name').val();
|
|
|
+ var demo_datetime = $('#demo_datetime').val();
|
|
|
if(template_id==0 || group_name==0){
|
|
|
alert("请选择模板和客户");
|
|
|
}else{
|
|
|
$('#form1').submit();
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ var theme = "ios";
|
|
|
+ var mode = "scroller";
|
|
|
+ var display = "bottom";
|
|
|
+ var lang = "zh";
|
|
|
+ $('#demo_datetime').mobiscroll().datetime({
|
|
|
+ theme: theme,
|
|
|
+ mode: mode,
|
|
|
+ display: display,
|
|
|
+ lang: lang,
|
|
|
+ dateFormat: "yyyy-mm-dd",
|
|
|
+ minDate: new Date(2000, 3, 10, 9, 22),
|
|
|
+ maxDate: new Date(2030, 7, 30, 15, 44),
|
|
|
+ stepMinute: 1
|
|
|
+ });
|
|
|
</script>
|
|
|
|
|
|
|