|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216 |
- <!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>
- <style type="text/css">
- body { background-image: url(images/allbg.gif); }
- </style>
- <link rel="stylesheet" href="../static/css/bootstrap.min.css">
- <link href="../static/font-awesome/css/font-awesome.min.css" rel="stylesheet">
- <link href="css/base.css" rel="stylesheet" type="text/css">
- <script language="javascript" src="../static/js/jquery.js"></script>
- <script language="javascript" src="../static/js/dedeajax2.js"></script>
- <script language="javascript" src="js/main.js"></script>
- <link href="../static/css/daterangepicker.css" rel="stylesheet">
- <script type="text/javascript" src="../static/js/moment.min.js"></script>
- <script type="text/javascript" src="../static/js/daterangepicker.js"></script>
- <script src="../static/js/bootstrap.bundle.js"></script>
- <link rel="stylesheet" href="../static/css/jquery.fileupload.css">
- <link href="../static/css/cropper.min.css" rel="stylesheet">
- <script src="../static/js/cropper.min.js"></script>
- <script language="javascript">
- function checkSubmit()
- {
- if(document.form1.title.value==""){
- alert("<?php echo $cInfos['titlename']; ?>不能为空!");
- document.form1.title.focus();
- return false;
- }
- }
- </script>
- <style>
- img {
- vertical-align: baseline;
- }
-
- input,
- select {
- height: auto !important;
- }
- </style>
- </head>
- <body topmargin="8">
- <table width="98%" border="0" align="center" cellpadding="0" cellspacing="0">
- <tr>
- <td width="65%" height="30"><IMG height=14 src="images/book1.gif" width='20' />
- <a href="content_sg_list.php?cid=<?php echo $addRow['typeid']?>&channelid=<?php echo $channelid?>&dopost=listArchives"><u>文档列表</u></a> >> 更改文档</td>
- <td width="30%" align='right'> <?php echo $backurl; ?><a href="catalog_main.php">[<u>栏目管理</u>]</a> </td>
- </tr>
- </table>
-
- <table width="98%" border="0" align="center" cellpadding="0" cellspacing="0" id="head1">
- <tr>
- <td colspan="2">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr>
- <td width="84" height="24" align="center" background="images/itemnote1.gif"> 常规信息 </td>
- <td width="84" align="center"></td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <form name="form1" action="archives_sg_edit.php" enctype="multipart/form-data" method="post" onSubmit="return checkSubmit();">
- <input type="hidden" name="channelid" value="<?php echo $channelid; ?>" />
- <input type="hidden" name="id" value="<?php echo $aid; ?>" />
- <input type="hidden" name="sortrank" value="<?php echo $addRow['senddate']; ?>" />
- <input type="hidden" name="dopost" value="save" />
- <input type="hidden" id="litpic_b64" name="litpic_b64" value="">
- <table width="98%" border="0" align="center" cellpadding="2" cellspacing="2" id="needset" style="border:1px solid #cfcfcf;background:#ffffff;">
- <tr>
- <td height="24" class="bline"><table width="800" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="90"> <?php echo $cInfos['titlename']; ?>:</td>
- <td><input name="title" type="text" id="title" value="<?php echo $addRow['title']; ?>" style="width:388px"> </td>
- </tr>
- </table></td>
- </tr>
-
- <tr>
- <td width="400%" height="24" class="bline">
- <table width="800" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="90"> 自定义属性:</td>
- <td>
- <?php
- $dsql->SetQuery("SELECT * FROM `#@__arcatt` WHERE att<>'j' AND att<>'p' ORDER BY sortid ASC");
- $dsql->Execute();
- while($trow = $dsql->GetObject())
- {
- if(preg_match("#".$trow->att."#", $addRow['flag']))
- echo "<input class='np' type='checkbox' name='flags[]' id='flags{$trow->att}' value='{$trow->att}' checked='checked' />{$trow->attname}[{$trow->att}]";
- else
- echo "<input class='np' type='checkbox' name='flags[]' id='flags{$trow->att}' value='{$trow->att}' />{$trow->attname}[{$trow->att}]";
- }
- ?>
- </td>
- </tr>
- </table></td>
- </tr>
- <tr>
- <td height="24" class="bline">
- <table width="800" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="90"> 浏览权限:</td>
- <td>
- <select name="arcrank" id="arcrank" style="width:150px">
- <option value='<?php echo $addRow["arcrank"]; ?>'><?php echo $addRow["rankname"]; ?></option>
- <?php
- $urank = $cuserLogin->getUserRank();
- $dsql->SetQuery("Select * from `#@__arcrank` where adminrank<='$urank' And rank<>'{$addRow["arcrank"]}' ");
- $dsql->Execute();
- while($row = $dsql->GetObject()) {
- echo " <option value='".$row->rank."'>".$row->membername."</option>\r\n";
- }
- ?>
- </select> </td>
- <td width="90"></td>
- <td></td>
- </tr>
- </table>
- </td>
- </tr>
- <tr id="pictable" style='<?php if($cInfos['needpic']==0) echo 'display:none'; ?>'>
- <td height="24" class="bline">
- <table width="800" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="90" height="81">
- 缩 略 图:<br/>
- </td>
- <td width="560">
- <input name="picname" type="text" id="picname" style="width:300px"
- value="<?php echo $addRow["litpic"]?>"><input type="button" name="Submit" value="浏览..."
- style="width:70px" onClick="SelectImage('form1.picname','');">
- <input type='checkbox' class='np' name='ddisremote' value='1'>
- 远程
- <span class="btn btn-success fileinput-button">
- <i class="glyphicon glyphicon-plus"></i>
- 选择图片
- <input type="file" name="files[]" id="iptAddImages">
- </span>
- <button id="btnClearAll" type="button" class="btn btn-danger delete">
- <i class="fa fa-trash-o"></i>
- <span>清空</span>
- </button>
- </td>
- <td align="center">
- <img id="litPic"
- src="<?php if($addRow["litpic"]!="") echo $addRow["litpic"]; else echo "../static/defaultpic.gif";?>"
- style="height: 80px">
- </td>
- </tr>
- </table></td>
- </tr>
- <?php if($cInfos['dfcid']>0)
- {
- echo "<input type='hidden' name='typeid' value='{$cInfos['dfcid']}' />\r\n";
- }
- else
- {
- ?>
- <tr>
- <td height="24" class="bline"> <table width="800" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="90"> 文档主栏目:</td>
- <td>
- <?php
- $typeOptions = GetOptionList($addRow['typeid'],$cuserLogin->getUserChannel(),$channelid);
- echo "<select name='typeid' id='typeid' style='width:240px'>\r\n";
- if($addRow["typeid"]=="0") echo "<option value='0' selected>请选择栏目...</option>\r\n";
- echo $typeOptions;
- echo "</select>";
- ?>
- <img src='images/menusearch.gif' style='cursor:pointer' onClick="ShowCatMap(event, this, <?php echo $channelid; ?>, 'typeid', '<?php echo $addRow['typeid']; ?>')" alt='快捷选择' title='快捷选择' />
- <?php
- if($cfg_remote_site=='Y')
- {
- ?>
- <input name="isremote" type="checkbox" id="isremote" value="1" <?php if($cfg_title_site=='Y') echo "checked";?>>是否同步远程发布 <?php GetFtp();?> <?php
- }
- ?> </td>
- </tr>
- </table></td>
- </tr>
- <?php } ?>
-
- <tr>
- <td>
- <?php
- PrintAutoFieldsEdit($cInfos['fieldset'],$addRow,'autofield');
- ?>
- </td>
- </tr>
- </table>
-
- <table width="98%" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#F9FCEF" style="border:1px solid #cfcfcf;border-top:none;">
- <tr>
- <td height="35">
- <table width="100%" border="0" cellspacing="1" cellpadding="1">
- <tr>
- <td width="17%"> </td>
- <td width="83%"><table width="214" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="115"><input name="imageField" type="image" src="images/button_ok.gif" width="60" height="22" class="np" border="0" style="cursor:pointer"></td>
- <td width="99">
- <img src="images/button_reset.gif" width="60" height="22" border="0" onClick="location.reload();" style="cursor:pointer">
- </td>
- </tr>
- </table></td>
- </tr>
- </table></td>
- </tr>
- </table>
- </form>
- </body>
- </html>
|