12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- {Template header}
- <body>
- <div class="warp">
- <div class="fixed">
- <ul class="search">
- <li>
- 店铺名称:<select name="shop" class="select" style="width:90px">
- <option value="">请选择</option>
- {loop usershop() as $val}
- <option value="{$val['id']}">{$val['shopname']}</option>
- {/loop}</select>
- </li>
- <li>
- 发送模板:<select name="notice">
- <option value="">请选择</option>
- {loop $notice as $val}
- <option value="{$val['id']}">{$val['title']}</option>
- {/loop}</select>
- </li>
- <li>Email:<input value="" name="email" type="text" style="width:280px;"></li>
- <li>选择时间条件:<select name="xztime" class="select">
- <option value="addtime">添加时间</option>
- <option value="time">发送时间</option>
- </select></li>
- <li><input id="timetk" value="{date('Y-m-d',time()-29*24*3600)} 0:00" name="timetk" type="text" onClick="laydate({istime: true,format:'YYYY-MM-DD hh:mm'})" style="width:130px">
- 至 <input id="timetj" value="{date('Y-m-d',time()+24*3600)} 0:00" name="timetj" type="text" onClick="laydate({istime: true,format:'YYYY-MM-DD hh:mm'})" style="width:130px"></li>
- <li><span>确 定</span></li>
- </ul>
- <div class="control">
- <a href="javascript:void(0);" class="window" data-h="/notice/addemail/" data-t="发送Email">发送Email</a>
- </div>
- <table class="datatitle data" border="0" style="border-collapse:collapse;">
- <tr>
- <td><label onClick="swapCheck()"><input name="checkbox" type="checkbox" class="regular-checkbox"></label></td>
- <td>店铺</td>
- <td>邮箱</td>
- <td>模板</td>
- <td>添加时间</td>
- <td>发送时间</td>
- </tr>
- </table>
- </div>
- <table class="datatext data" border="0" style="border-collapse:collapse;">
- </table>
- <div class="bomf"></div>
- </div>
- <script>
- var dataurl = "/notice/email";
- var customon = 1;
- function custom(){
- $(".data tr").each(function() {
- $(this).find('td:eq(0)').css("width","2%");
- $(this).find('td:eq(1)').css("width","10%");
- $(this).find('td:eq(2)').css("width","20%");
- $(this).find('td:eq(3)').css("width","23%");
- $(this).find('td:eq(4)').css("width","15%");
- $(this).find('td:eq(5)').css("width","30%");
- });}
- </script>
- <script type="text/javascript" src="{$theme}js/laydate.js"></script>
- {Template footer}
|