| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 | 
							- <{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">
 
- 		<h1>
 
- 			短信发送-模板发送
 
- 			<!--<small>待发送邮件  <span style="color:red;"><{$email_counts}></span> 封</small>-->
 
- 		</h1>
 
- 		<ol class="breadcrumb">
 
- 			<li><a href="#"><i class="fa fa-dashboard"></i> Home</a></li>
 
- 			<li class="active">Blank page</li>
 
- 		</ol>
 
- 	</section>
 
- 	<!-- Main content -->
 
- 	<section class="content">
 
- 		<div class="span9">
 
- 			<{if $info}>
 
- 			<div   class="alert alert-success  nodisplay"><{$info}></div>
 
- 			<{/if}>
 
- 			<div id='main' class="form-actions">
 
- 				<form method="post" action="" id="form1">
 
- 					<table class="table table-bordered" style="margin-top:15px;">
 
- 						<tr>
 
- 							<td>收件人</td>
 
- 							<td>
 
- 								<select name="group_name" id="group_name">
 
- 									<option value="0">请选择</option>
 
- 									<option value="all">所有客户</option>
 
- 									<{foreach from=$group_list item=item}>
 
- 									<option value="<{$item.name}>"><{$item.name}></option>
 
- 									<{/foreach}>
 
- 								</select>
 
- 							</td>
 
- 						</tr>
 
- 						<tr>
 
- 							<td>请选择短信模板</td>
 
- 							<td>
 
- 								<select name="template_id" id="template_id">
 
- 									<option value="0">请选择</option>
 
- 									<{foreach from=$template_list item=item}>
 
- 									<option value="<{$item.id}>"><{$item.msg_title}></option>
 
- 									<{/foreach}>
 
- 								</select>
 
- 							</td>
 
- 						</tr>
 
- 						<tr>
 
- 								<td>日期时间</td>
 
- 							<td>
 
- 								<input type="text" id="demo_datetime" name="demo_datetime" />
 
- 							</td>
 
- 						</tr>
 
- 						<tr>
 
- 							<td> </td>
 
- 							<td >
 
- 								<input type="button" onclick="to_submit();" value="提交" class="btn btn-info" style="width:120px;" />
 
- 							</td>
 
- 						</tr>
 
- 					</table>
 
- 				</form>
 
- 			</div>
 
- 		</div>
 
- 	</section><!-- /.content -->
 
- </aside><!-- /.right-side -->
 
- </div><!-- ./wrapper -->
 
- <style>
 
- 	select{height:30px;}
 
- 	.form-actions li{list-style:none;width:25px;float:left;padding-bottom:8px;padding-right:5px;}
 
- </style>
 
- <script>
 
- 	function to_submit(){
 
- 		var template_ids = $('#template_id').val();
 
- 		var group_name = $('#group_name').val();
 
- 		var demo_datetime = $('#demo_datetime').val();
 
- 		$('#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>
 
- <script>
 
-     $('#treeview11').addClass('active');
 
-     $(".send_sms_admin").addClass('active');
 
- </script>
 
- </body>
 
- </html>
 
 
  |