|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
- <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" language="javascript" type="text/javascript"></script>
- <script type="text/javascript" src="../static/web/js/moment.min.js"></script>
- <script type="text/javascript" src="../static/web/js/daterangepicker.js"></script>
- <script language="javascript">
- $(document).ready(function () {
- $('.datepicker').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%" border="0" cellpadding="3" cellspacing="1" align="center" class="table maintable mt-3">
- <tr>
- <td height="26" background="../static/web/img/tbg.gif" style="padding-left:10px"><a href="ad_main.php">广告管理</a> > 修改广告</td>
- </tr>
- <tr>
- <td height="200" bgcolor="#ffffff">
- <table width="100%" border="0" cellspacing="4" cellpadding="4" class="table table-borderless">
- <form action="ad_edit.php" method="post" enctype="multipart/form-data" name="form1">
- <input type='hidden' name='aid' value='<?php echo $aid?>'>
- <input type='hidden' name='dopost' value='saveedit'>
- <input type="hidden" name="_csrf_token" value="<?php echo $GLOBALS['csrf_token']; ?>">
- <tr>
- <td height="26">广告位标识:</td>
- <td colspan="2"><?php echo $row['tagname']; ?></td>
- </tr>
- <tr>
- <td height="26">广告分类:</td>
- <td colspan="2">
- <select name='clsid' id="clsid" style='width:160px'>
- <option value='0'>默认分类</option>
- <?php echo $option; ?>
- </select></td>
- </tr>
- <tr>
- <td width="15%" height="26">广告投放范围:</td>
- <td colspan="2"><?php
- $tl = new TypeLink(0);
- $typeOptions = $tl->GetOptionArray($row['typeid'],0,0);
- echo "<select name='typeid' style='width:260px'>\r\n";
- echo "<option value='0' selected>投放在没有同名标识的所有栏目</option>\r\n";
- echo $typeOptions;
- echo "</select>";
- ?>
- <br>
- (如果在所选栏目找不到指定标识的广告内容,系统会自动搜索父栏目)</td>
- </tr>
- <tr>
- <td height="26">广告位名称:</td>
- <td colspan="2"><input name="adname" type="text" id="adname" value="<?php echo $row['adname']?>" class="iptxt" style="width:260px"></td>
- </tr>
- <tr>
- <td height="26">时间限制:</td>
- <td colspan="2">
- <label><input class="np" name="timeset" type="radio" value="0" <?php if($row['timeset']==0) echo " checked='1' "; ?> />
- 永不过期</label>
- <label><input class="np" type="radio" name="timeset" value="1" <?php if($row['timeset']==1) echo " checked='1' "; ?> />
- 在设内时间内有效</label>
- </td>
- </tr>
- <tr>
- <td height="26">投放时间:</td>
- <td colspan="2">从
- <input name="starttime" type="text" id="starttime" value="<?php echo GetDateTimeMk($row['starttime'])?>" class='iptxt datepicker' style="width:160px">
- 到
- <input name="endtime" type="text" id="endtime" value="<?php echo GetDateTimeMk($row['endtime'])?>" class='iptxt datepicker' style="width:160px">
- </td>
- </tr>
- <tr>
- <td height="80">正常显示内容:</td>
- <td width="70%"><textarea name="normbody" rows="10" id="normbody" style="width:80%;height:100px"><?php echo dede_htmlspecialchars(stripslashes($row['normbody']))?></textarea>
- </td>
- <td width="9%"></td>
- </tr>
- <tr>
- <td height="80">过期显示内容:</td>
- <td><textarea name="expbody" rows="10" id="expbody" style="width:80%;height:100px"><?php echo dede_htmlspecialchars($row['expbody'])?></textarea></td>
- <td></td>
- </tr>
- <tr>
- <td colspan="3" align="center" class="py-3"><button type="submit" class="btn btn-success">保存</button></td>
- </tr>
- </form>
- </table>
- </td>
- </tr>
- </table>
- </body>
- </html>
|