|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
- <title>修改投票</title>
- <link rel="stylesheet" href="/static/web/css/font-awesome.min.css">
- <link rel="stylesheet" href="/static/web/css/bootstrap.min.css">
- <link rel="stylesheet" href="/static/web/css/admin.css">
- <link rel="stylesheet" href="/static/web/css/daterangepicker.css">
- <script src="/static/web/js/jquery.min.js"></script>
- <script src="/static/web/js/bootstrap.min.js"></script>
- <script src="/static/web/js/moment.min.js"></script>
- <script src="/static/web/js/daterangepicker.js"></script>
- <script src="/static/web/js/admin.main.js"></script>
- </head>
- <body>
- <form name="form1" method="post" action="vote_edit.php">
- <input type="hidden" name="dopost" value="saveedit">
- <input type="hidden" name="aid" value="<?php echo $aid?>">
- <input type="hidden" name="_csrf_token" value="<?php echo $GLOBALS['csrf_token'];?>">
- <table align="center" class="table maintable my-3">
- <tr>
- <td bgcolor="#f8fafb" colspan="2"><a href="vote_main.php">投票管理</a> - 修改投票</td>
- </tr>
- <tr>
- <td width="260">投票名称:</td>
- <td><input type="text" name="votename" id="votename" value="<?php echo $row['votename']?>"></td>
- </tr>
- <tr>
- <td>投票总人数:</td>
- <td><input type="text" name="totalcount" id="totalcount" value="<?php echo $row['totalcount']?>"></td>
- </tr>
- <tr>
- <td>开始时间:</td>
- <td><input type="text" name="starttime" id="starttime" class="datepicker1" value="<?php echo GetDateMk($row['starttime'])?>"></td>
- </tr>
- <tr>
- <td>结束时间:</td>
- <td><input type="text" name="endtime" id="endtime" class="datepicker1" value="<?php echo GetDateMk($row['endtime'])?>"></td>
- </tr>
- <tr>
- <td>是否允许游客投票:</td>
- <td>
- <label><input type="radio" name="isallow" value="0" <?php if ($row['isallow']==0) echo 'checked';?>> 是</label>
- <label><input type="radio" name="isallow" value="1" <?php if ($row['isallow']==1) echo 'checked';?>> 否</label>
- </td>
- </tr>
- <tr>
- <td>是否允许查看投票:</td>
- <td>
- <label><input type="radio" name="view" value="0" <?php if ($row['view']==0) echo 'checked';?>> 是</label>
- <label><input type="radio" name="view" value="1" <?php if ($row['view']==1) echo 'checked';?>> 否</label>
- </td>
- </tr>
- <tr>
- <td>投票时间间隔:</td>
- <td>
- <input type="text" name="spec" value="<?php echo $row['spec'] ?>">
- <span>(N天后可再次投票,0表示此ip地址只能投一次)</span>
- </td>
- </tr>
- <tr>
- <td>是否多选:</td>
- <td>
- <label><input type="radio" name="ismore" value="0" <?php if ($row['ismore']==0) echo 'checked';?>> 单选</label>
- <label><input type="radio" name="ismore" value="1" <?php if ($row['ismore']==1) echo 'checked';?>> 多选</label>
- </td>
- </tr>
- <tr>
- <td>投票项</td>
- <td><textarea name="votenote" id="votenote" class="admin-textarea-xl"><?php echo $row['votenote']?></textarea></td>
- </tr>
- <tr>
- <td>是否启用:</td>
- <td>
- <label><input type="radio" name="isenable" value="0" <?php if ($row['isenable']==0) echo 'checked';?>> 是</label>
- <label><input type="radio" name="isenable" value="1" <?php if ($row['isenable']==1) echo 'checked';?>> 否</label>
- </td>
- </tr>
- <tr>
- <td bgcolor="#f8fafb" colspan="2" align="center">
- <button type="submit" name="submit" class="btn btn-success btn-sm">保存</button>
- <button type="button" name="submit" class="btn btn-outline-success btn-sm" onclick="history.back();">返回</button>
- </td>
- </tr>
- </table>
- </form>
- <script>
- $(document).ready(function() {
- $('.datepicker1').daterangepicker({
- "singleDatePicker": true,
- "autoApply": true,
- "showDropdowns": true,
- "linkedCalendars": false,
- "timePicker": true,
- "timePicker24Hour": true,
- "showCustomRangeLabel": false,
- ranges: {
- '今日': [moment(), moment()],
- '昨日': [moment().subtract(1, 'days'), moment().subtract(1, 'days')],
- '本月': [moment().startOf('month'), moment().startOf('month')],
- '上月': [moment().subtract(1, 'month').startOf('month'), moment().subtract(1, 'month').startOf('month')]
- },
- "locale": {
- format: 'YYYY-MM-DD HH:mm',
- applyLabel: '确定',
- cancelLabel: '取消',
- daysOfWeek: ['日', '一', '二', '三', '四', '五', '六'],
- monthNames: ['一月', '二月', '三月', '四月', '五月', '六月', '七月', '八月', '九月', '十月', '十一月', '十二月'],
- firstDay: 1
- }
- }, function(start) {
- $(this).val(start.format("YYYY-MM-DD HH:mm"));
- });
- });
- </script>
- </body>
- </html>
|