|
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="<?php echo $cfg_soft_lang; ?>">
- <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
- <title>投票管理</title>
- <link rel="stylesheet" href="../static/web/css/bootstrap.min.css">
- <link rel="stylesheet" href="../static/web/font/css/font-awesome.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.bundle.min.js"></script>
- <script src="js/main.js"></script>
- <script src="../static/web/js/moment.min.js"></script>
- <script src="../static/web/js/daterangepicker.js"></script>
- <script>
- $(document).ready(function () {
- $('.datepicker1').daterangepicker({
- "singleDatePicker": true,
- "autoApply": true,
- "showDropdowns": true,
- "linkedCalendars": false,
- "timePicker": true,
- "timePicker24Hour": true,
- //"timePickerSeconds": 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>
- </head>
- <body>
- <table width="98%" cellpadding="3" cellspacing="1" align="center" class="table maintable mt-3 mb-3">
- <tr>
- <td bgcolor="#f8f8f8"><a href="vote_main.php">投票管理</a> > 增加投票</td>
- </tr>
- <tr>
- <td>
- <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 width="100%" cellspacing="4" cellpadding="4" class="table table-borderless">
- <tr>
- <td width="260">投票名称:</td>
- <td><input name="votename" type="text" id="votename" value="<?php echo $row['votename']?>"></td>
- </tr>
- <tr>
- <td>投票总人数:</td>
- <td><input name="totalcount" type="text" id="totalcount" value="<?php echo $row['totalcount']?>"></td>
- </tr>
- <tr>
- <td>开始时间:</td>
- <td><input class="datepicker1" name="starttime" type="text" id="starttime" value="<?php echo GetDateMk($row['starttime'])?>"></td>
- </tr>
- <tr>
- <td>结束时间:</td>
- <td><input class="datepicker1" name="endtime" type="text" id="endtime" value="<?php echo GetDateMk($row['endtime'])?>"></td>
- </tr>
- <tr>
- <td>是否允许游客投票:</td>
- <td>
- <label><input name="isallow" type="radio" class="np" value="0" <?php if($row['isallow']==0) echo " checked"; ?>> 是</label>
- <label><input type="radio" name="isallow" class="np" value="1" <?php if($row['isallow']==1) echo " checked"; ?>> 否</label>
- </td>
- </tr>
- <tr>
- <td>是否允许查看投票:</td>
- <td>
- <label><input name="view" type="radio" class="np" value="0" <?php if($row['view']==0) echo " checked"; ?>> 是</label>
- <label><input type="radio" name="view" class="np" value="1" <?php if($row['view']==1) echo " checked"; ?>> 否</label>
- </td>
- </tr>
- <tr>
- <td>投票时间间隔:</td>
- <td><input name="spec" type="text" value="<?php echo $row['spec'] ?>" class="spec">(N天后可再次投票,0 表示此IP地址只能投一次)</td>
- </tr>
- <tr>
- <td>是否多选:</td>
- <td>
- <label><input name="ismore" type="radio" class="np" value="0" <?php if($row['ismore']==0) echo " checked"; ?>> 单选</label>
- <label><input type="radio" name="ismore" class="np" value="1" <?php if($row['ismore']==1) echo " checked"; ?>> 多选</label>
- </td>
- </tr>
- <tr>
- <td>投票项:<br>
- (请按相同的形式来增加或修改节点,其中属性:id不能重复)</td>
- <td><textarea name="votenote" rows="8" id="votenote" style="width:80%"><?php echo $row['votenote']?></textarea></td>
- </tr>
- <tr>
- <td>是否启用:</td>
- <td>
- <label><input name="isenable" type="radio" class="np" value="0" <?php if($row['isenable']==0) echo " checked"; ?>> 是</label>
- <label><input type="radio" name="isenable" class="np" value="1" <?php if($row['isenable']==1) echo " checked"; ?>> 否</label>
- </td>
- </tr>
- <tr>
- <td colspan="2" align="center" class="py-3">
- <button type="submit" name="Submit" class="btn btn-success btn-sm">保存</button>
- <button type="button" onclick="history.back()" name="Submit" class="btn btn-success btn-sm">返回</button>
- </td>
- </tr>
- </table>
- </form>
- </td>
- </tr>
- </table>
- </body>
- </html>
|