111 lines
4.7 KiB
HTML
111 lines
4.7 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>收货地址-{$tpshop_config['shop_info_store_title']}</title>
|
|
<meta http-equiv="keywords" content="{$tpshop_config['shop_info_store_keyword']}" />
|
|
<meta name="description" content="{$tpshop_config['shop_info_store_desc']}" />
|
|
<link rel="stylesheet" href="__STATIC__/css/edit_address.css" type="text/css">
|
|
<script src="__PUBLIC__/js/jquery-1.10.2.min.js"></script>
|
|
<script src="__STATIC__/js/slider.js"></script>
|
|
<script src="__PUBLIC__/js/layer/layer-min.js"></script><!--弹窗js 参考文档 http://layer.layui.com/-->
|
|
</head>
|
|
<style type="text/css">
|
|
.wi80-BFB{width:80%}
|
|
.wi40-BFB{width:40%}
|
|
.seauii{ padding:7px 10px; margin-right:10px}
|
|
.he110{ height:110px}
|
|
.di-bl{ display:inherit}
|
|
</style>
|
|
<body>
|
|
<div class="adderss-add">
|
|
<div class="ner-reac ol_box_4" style="visibility: visible; position: fixed; z-index: 500; width: 100%; height:100%">
|
|
<div class="box-ct">
|
|
<div class="box-header">
|
|
<!-- <a href="" class="box-close"></a> -->
|
|
</div>
|
|
<form action="{:U('Admin/User/doSendMail')}" method="post" onSubmit="return checkForm()">
|
|
<table width="90%" border="0" cellspacing="0" cellpadding="0">
|
|
<input name="call_back" type="hidden" value="call_back" />
|
|
<input name="smtp" type="hidden" value="{$smtp}" />
|
|
<tr class="postmessage" style=" height:32px">
|
|
<td></td>
|
|
<td>
|
|
<if condition="count($users) gt 0"><input id="allvip" type="radio"checked="checked" name="type"><label for="allvip" class="allvip">发送给以下会员</label></if>
|
|
</td>
|
|
</tr>
|
|
<if condition="count($users) gt 0">
|
|
<tr>
|
|
<td align="right" valign="top">会员列表:</td>
|
|
<td>
|
|
<div class="wi80-BFB re-no viplist" >
|
|
<volist name="users" id="user">
|
|
<input type="hidden" name="user[]" value="{$user['user_id']}" />
|
|
<p><span>ID:{$user['user_id']}</span> <span>昵称:{$user['nickname']}</span> <span>邮箱:{$user['email']}</span></p>
|
|
</volist>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<else/>
|
|
<tr>
|
|
<td align="right" valign="top">邮箱地址:</td>
|
|
<td><input name="email" placeholder="邮箱地址" maxlength="100" /></td>
|
|
</tr>
|
|
</if>
|
|
<tr>
|
|
<td><div> </div></td>
|
|
<td><div> </div></td>
|
|
</tr>
|
|
<tr>
|
|
<td align="right" valign="top">邮箱标题:</td>
|
|
<td><input name="title" id="title" placeholder="邮箱标题" maxlength="100" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td><div> </div></td>
|
|
<td><div> </div></td>
|
|
</tr>
|
|
<tr>
|
|
<td align="right" valign="top">邮件内容:</td>
|
|
<td><textarea class="he110 wi80-BFB re-no" name="text" id="text" placeholder="邮件内容" maxlength="100"></textarea></td>
|
|
</tr>
|
|
<tr style="height:60px">
|
|
<td class="pa-50-0"> </td>
|
|
<td align="right">
|
|
<button type="submit" style="padding: 4px 16px;cursor: pointer;"><span>发送</span></button>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script src="__PUBLIC__/js/global.js"></script>
|
|
<script src="__PUBLIC__/js/pc_common.js"></script>
|
|
|
|
<script>
|
|
function checkForm(){
|
|
var text = $('#text').val();
|
|
var title = $('#title').val();
|
|
var error = '';
|
|
if(text == ''){
|
|
error += '邮件内容不能为空 <br/>';
|
|
}
|
|
if(title == ''){
|
|
error += '邮件标题不能为空 <br/>';
|
|
}
|
|
<if condition="count($users) eq 0">
|
|
var email = $("input[name='email']").val();
|
|
if(!checkEmail(email)){
|
|
error += '邮箱地址有误 <br/>';
|
|
}
|
|
</if>
|
|
if(error){
|
|
layer.alert(error, {icon: 2});
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|