国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

548 linhas
26KB

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
  5. <title>修改图片集</title>
  6. <style type="text/css">
  7. body {
  8. background-image: url(images/allbg.gif);
  9. }
  10. </style>
  11. <link rel="stylesheet" href="../static/css/bootstrap.min.css">
  12. <link href="../static/font-awesome/css/font-awesome.min.css" rel="stylesheet">
  13. <link href="css/base.css" rel="stylesheet" type="text/css">
  14. <link href="css/albumupload.css" rel="stylesheet" type="text/css" />
  15. <script language="javascript" src="../static/js/jquery.js"></script>
  16. <script type="text/javascript" src="../static/js/dedeajax2.js"></script>
  17. <script type="text/javascript" src="js/calendar/calendar.js"></script>
  18. <script type="text/javascript" src="js/main.js"></script>
  19. <script type="text/javascript" src="js/album.js"></script>
  20. <script type="text/javascript" src="js/handlers.js"></script>
  21. <link href="../static/css/cropper.min.css" rel="stylesheet">
  22. <script src="../static/js/cropper.min.js"></script>
  23. <script src="../static/js/bootstrap.bundle.js"></script>
  24. <link rel="stylesheet" href="../static/css/jquery.fileupload.css">
  25. <script language="javascript" type="text/javascript">
  26. var swfu = null;
  27. var vcc = 0;
  28. var albums = [];
  29. $(document).ready(function () {
  30. // 添加图片
  31. $("#iptAlbumImages").change(function (event) {
  32. var files = event.target.files;
  33. for (var i = 0, f; f = files[i]; i++) {
  34. // 如果不是图片忽略
  35. if (!f.type.match('image.*')) {
  36. continue;
  37. }
  38. // 将图片渲染到浏览器
  39. var reader = new FileReader();
  40. reader.onload = (function (theFile) {
  41. return function (e) {
  42. litpicImgSrc = e.target.result;
  43. addImage(litpicImgSrc, 0);
  44. };
  45. })(f);
  46. reader.readAsDataURL(f);
  47. }
  48. $("#iptAlbumImages").val("");
  49. });
  50. });
  51. </script>
  52. <style>
  53. img {
  54. vertical-align: baseline;
  55. }
  56. input,
  57. select {
  58. height: auto !important;
  59. }
  60. </style>
  61. </head>
  62. <body topmargin="8">
  63. <form name="form1" action="album_edit.php" enctype="multipart/form-data" method="post" onSubmit="return checkSubmitAlb();">
  64. <input type="hidden" name="channelid" value="<?php echo $channelid?>" />
  65. <input type="hidden" name="id" value="<?php echo $aid?>" />
  66. <input type="hidden" name="imagebody" value="" />
  67. <input type="hidden" name="dopost" value="save" />
  68. <input type="hidden" id="albums" name="albums" value="">
  69. <input type="hidden" id="litpic_b64" name="litpic_b64" value="">
  70. <table width="98%" border="0" align="center" cellpadding="0" cellspacing="0">
  71. <tr>
  72. <td width="65%" height="30"><IMG height=14 src="images/book1.gif" width=20>&nbsp;<a href="catalog_do.php?cid=<?php echo $arcRow["typeid"]?>&dopost=listArchives"><u>图集列表</u></a> &gt;&gt; 更改图集</td>
  73. <td width="30%" align='right'><?php echo $backurl; ?><a href="catalog_main.php">[<u>栏目管理</u>]</a>&nbsp;</td>
  74. </tr>
  75. </table>
  76. <table width="98%" border="0" align="center" cellpadding="0" cellspacing="0" id="head1">
  77. <tr>
  78. <td colspan="2"><table width="168" border="0" cellpadding="0" cellspacing="0">
  79. <tr>
  80. <td width="84" height="24" align="center" background="images/itemnote1.gif">&nbsp;常规内容&nbsp;</td>
  81. <td width="84" align="center" background="images/itemnote2.gif"><a href="#" onClick="ShowItem2()"><u>图集图片</u></a>&nbsp;</td>
  82. </tr>
  83. </table></td>
  84. </tr>
  85. </table>
  86. <table width="98%" border="0" align="center" cellpadding="0" cellspacing="0" id="head2" style="display:none">
  87. <tr>
  88. <td colspan="2"><table width="168" height="24" border="0" cellpadding="0" cellspacing="0">
  89. <tr>
  90. <td width="84" align="center" background="images/itemnote2.gif"><a href="#" onClick="ShowItem1()"><u>常规内容</u></a>&nbsp;</td>
  91. <td width="84" align="center" background="images/itemnote1.gif">图集图片&nbsp;</td>
  92. </tr>
  93. </table></td>
  94. </tr>
  95. </table>
  96. <table width="98%" border="0" align="center" cellpadding="2" cellspacing="2" id="needset" style="border:1px solid #cfcfcf;background:#ffffff;">
  97. <tr>
  98. <td height="24" colspan="4" class="bline"><table width="800" border="0" cellspacing="0" cellpadding="0">
  99. <tr>
  100. <td width="90">&nbsp;图集标题:</td>
  101. <td width='408'><input name="title" type="text" id="title" value="<?php echo $arcRow['title']; ?>" style="width:388px"></td>
  102. <td width="90">&nbsp;简略标题:</td>
  103. <td><input name="shorttitle" type="text" id="shorttitle" style="width:150px" value="<?php echo $arcRow['shorttitle']; ?>"></td>
  104. </tr>
  105. </table></td>
  106. </tr>
  107. <tr>
  108. <td width="400%" height="24" colspan="4" class="bline"><table width="800" border="0" cellspacing="0" cellpadding="0">
  109. <tr>
  110. <td width="90">&nbsp;自定义属性:</td>
  111. <td><?php
  112. $dsql->SetQuery("SELECT * FROM `#@__arcatt` ORDER BY sortid ASC");
  113. $dsql->Execute();
  114. while($trow = $dsql->GetObject())
  115. {
  116. if($trow->att=='j') $jumpclick = " onclick='ShowUrlTr()'";
  117. else $jumpclick = '';
  118. if(preg_match("#".$trow->att."#", $arcRow['flag']))
  119. echo "<input class='np' type='checkbox' name='flags[]' id='flags{$trow->att}' value='{$trow->att}' {$jumpclick} checked='checked' />{$trow->attname}[{$trow->att}]";
  120. else
  121. echo "<input class='np' type='checkbox' name='flags[]' id='flags{$trow->att}' value='{$trow->att}'{$jumpclick} />{$trow->attname}[{$trow->att}]";
  122. }
  123. ?></td>
  124. </tr>
  125. </table></td>
  126. </tr>
  127. <tr>
  128. <td height="24" colspan="4" class="bline" id="redirecturltr" style="display:<?php echo (empty($addRow['redirecturl']) ? 'none' : 'block');?>"><table width="800" border="0" cellspacing="0" cellpadding="0">
  129. <tr>
  130. <td width="90">&nbsp;跳转网址:</td>
  131. <td><input name="redirecturl" type="text" id="redirecturl" style="width:300px" value="<?php echo $addRow["redirecturl"]?>" /></td>
  132. </tr>
  133. </table></td>
  134. </tr>
  135. <tr>
  136. <td width="400%" height="24" class="bline"><table width="800" border="0" cellspacing="0" cellpadding="0">
  137. <tr>
  138. <td width="90">&nbsp;TAG标签:</td>
  139. <td width="536"><input name="tags" type="text" id="tags" value="<?php echo $tags; ?>" style="width:300px" />
  140. (','号分开,单个标签小于12字节) </td>
  141. <td width="40">权重:</td>
  142. <td width="141"><input name="weight" type="text" id="weight" style="width:50px" value="<?php echo $arcRow['weight'];?>" />
  143. (越小越靠前)</td>
  144. </tr>
  145. </table></td>
  146. </tr>
  147. <tr id="pictable">
  148. <td height="24" colspan="4" class="bline"><table width="800" border="0" cellspacing="0" cellpadding="0">
  149. <tr>
  150. <td width="90" height="81">&nbsp;缩 略 图:<br/></td>
  151. <td><input name="picname" type="text" id="picname" style="width:300px"
  152. value="<?php echo $arcRow["litpic"]?>"><input type="button" name="Submit" value="浏览..."
  153. style="width:70px" onClick="SelectImage('form1.picname','');">
  154. <input type='checkbox' class='np' name='ddisremote' value='1'>
  155. 远程
  156. <span class="btn btn-success fileinput-button">
  157. <i class="glyphicon glyphicon-plus"></i>
  158. 选择图片
  159. <input type="file" name="files[]" id="iptAddImages">
  160. </span>
  161. <button id="btnClearAll" type="button" class="btn btn-danger delete">
  162. <i class="fa fa-trash-o"></i>
  163. <span>清空</span>
  164. </button> </td>
  165. <td align="center"><img id="litPic"
  166. src="<?php if($arcRow["litpic"]!="") echo $arcRow["litpic"]; else echo "../static/defaultpic.gif";?>"
  167. style="height: 80px"></td>
  168. </tr>
  169. </table></td>
  170. </tr>
  171. <tr>
  172. <td height="24" colspan="4" class="bline"><table width="800" border="0" cellspacing="0" cellpadding="0">
  173. <tr>
  174. <td width="90">&nbsp;图片来源:</td>
  175. <td width="240"><input name="source" type="text" id="source" style="width:200" value="<?php echo $arcRow["source"]?>"></td>
  176. <td width="90">作者:</td>
  177. <td><input name="writer" type="text" id="writer" style="width:120" value="<?php echo $arcRow["writer"]?>"></td>
  178. </tr>
  179. </table></td>
  180. </tr>
  181. <tr>
  182. <td height="24" colspan="4" class="bline"><table width="800" border="0" cellspacing="0" cellpadding="0">
  183. <tr>
  184. <td width="90">&nbsp;图集主栏目:</td>
  185. <td><?php
  186. $typeOptions = GetOptionList($arcRow['typeid'],$cuserLogin->getUserChannel(),$channelid);
  187. echo "<select name='typeid' id='typeid' style='width:240px'>\r\n";
  188. if($arcRow['typeid']=='0') echo "<option value='0' selected>请选择主分类...</option>\r\n";
  189. echo $typeOptions;
  190. echo '</select>';
  191. ?>
  192. <img src='images/menusearch.gif' style='cursor:pointer' onClick="ShowCatMap(event, this, <?php echo $channelid; ?>, 'typeid', '<?php echo $arcRow['typeid']; ?>')" alt='快捷选择' title='快捷选择' />
  193. <?php
  194. if($cfg_remote_site=='Y')
  195. {
  196. ?>
  197. <input name="isremote" type="checkbox" id="isremote" value="1" <?php if($cfg_title_site=='Y') echo "checked";?>>
  198. 是否同步远程发布
  199. <?php GetFtp();?>
  200. <?php
  201. }
  202. ?></td>
  203. </tr>
  204. </table></td>
  205. </tr>
  206. <?php
  207. if($cfg_need_typeid2=='Y') {
  208. ?>
  209. <tr>
  210. <td height="24" class="bline"><table width="800" border="0" cellspacing="0" cellpadding="0">
  211. <tr>
  212. <td width="90">&nbsp;图集副栏目:</td>
  213. <td><span id='typeid2ct'></span>
  214. <input type='text' name='typeid2' id='typeid2' value='<?php echo ($arcRow['typeid2']=='0' ? '' : $arcRow['typeid2']); ?>' style='width:200px;' />
  215. <img src='images/menusearch2.gif' style='cursor:pointer;' onClick="ShowCatMap(event, this, <?php echo $channelid; ?>, 'typeid2', '<?php echo $arcRow['typeid2']; ?>')" alt='选择副栏目' title='选择副栏目' /></td>
  216. </tr>
  217. </table></td>
  218. </tr>
  219. <?php } ?>
  220. <tr>
  221. <td><?php
  222. PrintAutoFieldsEdit($cInfos['fieldset'],$addRow,'autofield');
  223. ?></td>
  224. </tr>
  225. <tr>
  226. <td height="24" colspan="4" class="bline"><table width="800" border="0" cellspacing="0" cellpadding="0">
  227. <tr>
  228. <td width="90">&nbsp;图集内容:</td>
  229. <td><?php GetEditor("body",$body,450,"Diy"); ?></td>
  230. </tr>
  231. </table></td>
  232. </tr>
  233. <tr>
  234. <td height="24" bgcolor="#F9FCEF" class="bline2">&nbsp;<strong>高级属性:</strong></td>
  235. </tr>
  236. <tr>
  237. <td height="24" colspan="4" class="bline">
  238. <table width="800" border="0" cellspacing="0" cellpadding="0">
  239. <tr>
  240. <td width="90" height="22" width="240">
  241. &nbsp;评论选项:
  242. </td>
  243. <td width="250"><input type='radio' name='notpost' class='np' value='0'<?php if($arcRow['notpost']==0) echo " checked='1' "; ?>/>
  244. 允许评论
  245. &nbsp;
  246. <input type='radio' name='notpost' class='np' value='1'<?php if($arcRow['notpost']==1) echo " checked='1' "; ?>/>
  247. 禁止评论 </td>
  248. <td width="90">浏览次数:</td>
  249. <td><input type='text' name='click' value='<?php echo $arcRow['click']; ?>' style='width:100px;' /></td>
  250. </tr>
  251. </table>
  252. </tr>
  253. <tr>
  254. <td height="24" class="bline"><table width="800" border="0" cellspacing="0" cellpadding="0">
  255. <tr>
  256. <td width="90">&nbsp;文档排序:</td>
  257. <td width="250"><select name="sortup" id="sortup" style="width:150">
  258. <?php
  259. $subday = SubDay($arcRow["sortrank"],$arcRow["pubdate"]);
  260. echo "<option value='0'>正常排序</option>\r\n";
  261. if($subday>0) echo "<option value='$subday' selected>置顶 $subday 天</option>\r\n";
  262. ?>
  263. <option value="7">置顶一周</option>
  264. <option value="30">置顶一个月</option>
  265. <option value="90">置顶三个月</option>
  266. <option value="180">置顶半年</option>
  267. <option value="360">置顶一年</option>
  268. </select></td>
  269. <td width="90">标题颜色:</td>
  270. <td><input name="color" type="text" id="color" style="width:120" value="<?php echo $arcRow["color"]?>">
  271. <input name="modcolor" type="button" id="modcolor" value="选取" onClick="ShowColor(event,this)"></td>
  272. </tr>
  273. </table></td>
  274. </tr>
  275. <tr>
  276. <td height="24" class="bline"><table width="800" border="0" cellspacing="0" cellpadding="0">
  277. <tr>
  278. <td width="90">&nbsp;阅读权限:</td>
  279. <td width="250"><select name="arcrank" id="arcrank" style="width:150">
  280. <option value='<?php echo $arcRow["arcrank"]?>'> <?php echo $arcRow["rankname"]?> </option>
  281. <?php
  282. $urank = $cuserLogin->getUserRank();
  283. $dsql->SetQuery("Select * from #@__arcrank where adminrank<='$urank'");
  284. $dsql->Execute();
  285. while($row = $dsql->GetObject()){
  286. echo " <option value='".$row->rank."'>".$row->membername."</option>\r\n";
  287. }
  288. ?>
  289. </select></td>
  290. <td width="90">发布选项:</td>
  291. <td><input name="ishtml" type="radio" class="np" value="1"<?php if($arcRow["ismake"]!=-1) echo " checked";?>>
  292. 生成HTML
  293. <input type="radio" name="ishtml" class="np" value="0"<?php if($arcRow["ismake"]==-1) echo " checked";?>>
  294. 仅动态浏览 </td>
  295. </tr>
  296. </table></td>
  297. </tr>
  298. <tr>
  299. <td height="75" class="bline"><table width="800" border="0" cellspacing="0" cellpadding="0">
  300. <tr>
  301. <td width="90">&nbsp;发布时间:</td>
  302. <td width="250"><?php
  303. $nowtime = GetDateTimeMk(time());
  304. echo "<input name=\"pubdate\" value=\"$nowtime\" type=\"text\" id=\"pubdate\" style=\"width:200\">";
  305. ?>
  306. <script language="javascript" type="text/javascript">
  307. var showX = getElementLeft($Obj("pubdate")) - 130;
  308. var showY = (window.navigator.userAgent.indexOf("MSIE") >=1 )? getElementTop($Obj("pubdate")) + 465 : getElementTop($Obj("pubdate")) + 435;
  309. if((window.navigator.userAgent.indexOf("MSIE 7.0") >=1 )) {
  310. showX = getElementLeft($Obj("pubdate"))+105;
  311. showY = getElementTop($Obj("pubdate"))+1000;
  312. }
  313. if(window.navigator.userAgent.indexOf("MSIE 6.0")>=1)
  314. {
  315. Calendar.setup({
  316. inputField : "pubdate",
  317. ifFormat : "%Y-%m-%d %H:%M:%S",
  318. showsTime : true,
  319. timeFormat : "24"
  320. });
  321. } else {
  322. Calendar.setup({
  323. inputField : "pubdate",
  324. ifFormat : "%Y-%m-%d %H:%M:%S",
  325. showsTime : true,
  326. position : [showX, showY],
  327. timeFormat : "24"
  328. });
  329. }
  330. </script> </td>
  331. <td width="92">消费金币:</td>
  332. <td width="368"><input name="money" type="text" id="money" value="<?php echo $arcRow["money"]?>" size="10"></td>
  333. </tr>
  334. </table></td>
  335. </tr>
  336. <tr>
  337. <td height="24" class="bline"><table width="800" border="0" cellspacing="0" cellpadding="0">
  338. <tr>
  339. <td width="90" height="51">&nbsp;关键字:</td>
  340. <td><input type="text" name="keywords" id="keywords" style="width:60%" value="<?php echo $arcRow["keywords"]?>" /></td>
  341. </tr>
  342. </table></td>
  343. </tr>
  344. <tr>
  345. <td height="24" class="bline"><table width="800" border="0" cellspacing="0" cellpadding="0">
  346. <tr>
  347. <td width="90" height="51">&nbsp;图集内容摘要:</td>
  348. <td><textarea name="description" rows="3" id="description" style="width:60%"><?php echo $arcRow["description"]?></textarea></td>
  349. </tr>
  350. </table></td>
  351. </tr>
  352. <tr>
  353. <td height="24" colspan="4"><table width="800" border="0" cellspacing="0" cellpadding="0">
  354. <tr>
  355. <td width="90">&nbsp;自定义文件名:</td>
  356. <td width="449"><input type="text" name="filename" id="filename" value="<?php echo $arcRow["filename"]?>" />
  357. (不包括后缀名如.html等)</td>
  358. <td width="261">&nbsp;</td>
  359. </tr>
  360. </table></td>
  361. </tr>
  362. </table>
  363. <!-- //高级参数 -->
  364. <table width="98%" border="0" align="center" cellpadding="2" cellspacing="2" id="adset" style="border:1px solid #cfcfcf;background:#ffffff;display:none">
  365. <tr>
  366. <td height="24" bgcolor="#F9FCEF" class="bline2">&nbsp;<strong>图集选项:</strong></td>
  367. </tr>
  368. <tr>
  369. <td height="24" colspan="4" class="bline"><table width="800" border="0" cellspacing="0" cellpadding="0">
  370. <tr>
  371. <td width="90">&nbsp;表现方式:</td>
  372. <td><input name="pagestyle" class="np" type="radio" id="pagestyle1" onClick="checkMuList()" value="1"<?php if($pagestyle==1) echo " checked='checked'"; ?> />
  373. <img src='images/alb2.gif' alt='单页多图样式' title='单页多图样式' /> &nbsp;&nbsp;
  374. <input name="pagestyle" class="np" type="radio" id="pagestyle2" onClick="checkMuList()" value="2"<?php if($pagestyle==2) echo " checked='checked'"; ?> />
  375. <img src='images/alb1.gif' alt='幻灯片样式' title='幻灯片样式' /> &nbsp;&nbsp;
  376. <input name="pagestyle" class="np" type="radio" id="pagestyle3" onClick="checkMuList()" value="3"<?php if($pagestyle==3) echo " checked='checked'"; ?>/>
  377. <img src='images/alb3.gif' alt='多缩略图样式' title='多缩略图样式' /></td>
  378. </tr>
  379. </table></td>
  380. </tr>
  381. <tr id='cfgmulist' style='<?php if($pagestyle!=3) echo 'display:none'; ?>'>
  382. <td height="24" colspan="4" class="bline"><table width="800" border="0" cellspacing="0" cellpadding="0">
  383. <tr>
  384. <td height="26">&nbsp;多列式参数:</td>
  385. <td>行
  386. <input name="row" type="text" id="row" value="<?php echo $irow; ?>" size="6">
  387. <input name="col" type="text" id="col" value="<?php echo $icol; ?>" size="6">
  388. 缩略图宽度限制:
  389. <input name="ddmaxwidth" type="text" id="ddmaxwidth" value="<?php echo $ddmaxwidth; ?>" size="6">
  390. 像素</td>
  391. </tr>
  392. <tr>
  393. <td width="80" height="26">&nbsp;</td>
  394. <td><strong>(系统仅是每页输出&quot;行x列&quot;张图片,实现需自行控制样式表)</strong></td>
  395. </tr>
  396. </table></td>
  397. </tr>
  398. <tr id='spagelist' style='<?php if($pagestyle!=1) echo 'display:none'; ?>'>
  399. <td height="24" colspan="4" class="bline"><table width="800" border="0" cellspacing="0" cellpadding="0">
  400. <tr>
  401. <td width="95">&nbsp;每页图片数:</td>
  402. <td><input name='pagepicnum' id='pagpicnum' size='10' value='<?php echo $pagepicnum; ?>' />
  403. 单页多图显示需要设置此参数,这种模式下系统不会为每张图单独生成缩略图。 </td>
  404. </tr>
  405. </table></td>
  406. </tr>
  407. <tr style='display:none'>
  408. <td height="24" colspan="4" class="bline"><table width="800" border="0" cellspacing="0" cellpadding="0">
  409. <tr>
  410. <td width="90">&nbsp;限制宽度:</td>
  411. <td><input name="maxwidth" type="text" id="maxwidth" size="10" value="<?php echo $maxwidth?>">
  412. (防止图片太宽在模板页中溢出) </td>
  413. </tr>
  414. </table></td>
  415. </tr>
  416. <tr>
  417. <td height="24" colspan="4" class="bline"><table width="800" border="0" cellspacing="0" cellpadding="0">
  418. <tr>
  419. <td width="90">&nbsp;上传方式:</td>
  420. <td><input name="isrm" class="np" type="hidden" id="isrm" value="1" />
  421. <input name="byhand" class="np" type="checkbox" id="byhand" value="1" disabled="ture" checked />
  422. 手工上传
  423. <input name="formzip" class="np" type="checkbox" id="formzip" value="1" onClick="showZipField(this,'zipff','htmlfield');" />
  424. 从ZIP压缩包中解压图片
  425. </tr>
  426. </table></td>
  427. </tr>
  428. <tr id="zipff" style="display:none">
  429. <td height="24" colspan="4" class="bline"><table width="800" border="0" cellspacing="0" cellpadding="0" height="100">
  430. <tr>
  431. <td width="90">&nbsp;压缩包文件:</td>
  432. <td><input type='text' name='zipfile' id='zipfile' style='width:300px'>
  433. <input name='addon_bt' type='button' class='inputbut' value='浏览...' onClick="SelectSoft('form1.zipfile')">
  434. <input name="delzip" type="checkbox" id="delzip" value="1" checked="checked" />
  435. 处理后删除压缩文件 </td>
  436. </tr>
  437. </table></td>
  438. </tr>
  439. <tr id="htmlfield" style="display:none">
  440. <td height="24" colspan="4" class="bline"><table width="800" border="0" cellspacing="0" cellpadding="0">
  441. <tr>
  442. <td width="90">&nbsp;网上复制:</td>
  443. <td> 复制的源网址:
  444. <input name='copysource' type='text' value='http://' style='width:250px'/>
  445. (防盗链网站需填写您复制图片的其中一个网页网址) <br />
  446. 把图片从别的网页复制,在这里用Ctrl+V粘贴,提交后程序可直接获取这个区域的所有图片
  447. <input type="button" name="button" id="button" value="预览" onClick="LoadTestDiv()">
  448. <br />
  449. <div id='copyhtml' style='margin-top:6px;margin-bottom:6px;border:solid 1px #CCCCCC;width:96%;padding:6px;height:250px;width:100%' contenteditable="true">粘贴到这里...</div></td>
  450. </tr>
  451. </table></td>
  452. </tr>
  453. <tr>
  454. <td height="24" bgcolor="#F9FCEF" class="bline2">&nbsp;<b>原有图片:</b></td>
  455. </tr>
  456. <tr>
  457. <td height="24" colspan="4" class="bline"><table width='100%'>
  458. <tr>
  459. <td><div id="thumbnailsEdit">
  460. <?php
  461. $j = 1;
  462. if($imgurls!=""){
  463. $dtp = new DedeTagParse();
  464. $dtp->LoadSource($imgurls);
  465. if(is_array($dtp->CTags))
  466. {
  467. foreach($dtp->CTags as $ctag)
  468. {
  469. if($ctag->GetName()=="img")
  470. {
  471. $bigimg = trim($ctag->GetInnerText());
  472. if($ctag->GetAtt('ddimg') != $bigimg && $ctag->GetAtt('ddimg')!='')
  473. {
  474. $litimg = $ctag->GetAtt('ddimg');
  475. }
  476. else
  477. {
  478. $litimg = 'swfupload.php?dopost=ddimg&img='.$bigimg;
  479. }
  480. $fhtml = '';
  481. $fhtml .= "<div class='albCt albEdit' id='albold{$j}'>\r\n";
  482. $fhtml .= " <input type='hidden' name='imgurl{$j}' value='{$bigimg}' />\r\n";
  483. $fhtml .= " <input type='hidden' name='imgddurl{$j}' value='{$litimg}' />\r\n";
  484. $fhtml .= " <img src='{$litimg}' width='120' /><a href=\"javascript:delAlbPicOld('$bigimg', $j)\">[删除]</a>\r\n";
  485. $fhtml .= " <div style='margin-top:10px'>注释:<input type='text' name='imgmsg{$j}' value='".$ctag->GetAtt('text')."' style='width:190px;' /></div>\r\n";
  486. $fhtml .= " <div style='margin-top:10px'>更换:<input type='file' name='imgfile{$j}' size='18' style='width:190px' /></div>\r\n";
  487. $fhtml .= "</div>\r\n";
  488. echo $fhtml;
  489. $j++;
  490. }
  491. }
  492. }
  493. $dtp->Clear();
  494. }
  495. ?>
  496. </div></td>
  497. </tr>
  498. </table></td>
  499. </tr>
  500. <tr>
  501. <td height="24" colspan="4" class="bline" style="background:#F9FCEF;"><table width="800" border="0" cellspacing="0" cellpadding="0">
  502. <tr>
  503. <td width="90">&nbsp;<b>增加新图片:</b></td>
  504. <td>
  505. <span class="btn btn-success fileinput-button">
  506. <i class="glyphicon glyphicon-plus"></i>
  507. 选择本地图片(支持多选)
  508. <input type="file" name="files[]" id="iptAlbumImages" multiple>
  509. </span>
  510. </td>
  511. </tr>
  512. </table></td>
  513. </tr>
  514. <tr>
  515. <td colspan="4" style="background:#fff url(images/albviewbg.gif) 0 20px no-repeat;"><table width='100%' height='160' style="margin:0 0 20px 0">
  516. <tr>
  517. <td><div id="divFileProgressContainer" style="height:75px;"></div>
  518. <div id="thumbnails"></div></td>
  519. </tr>
  520. </table></td>
  521. </tr>
  522. </table>
  523. <table width="98%" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#F9FCEF" style="border:1px solid #cfcfcf;border-top:none;">
  524. <tr>
  525. <td height="35"><table width="100%" border="0" cellspacing="1" cellpadding="1">
  526. <tr>
  527. <td width="10%">&nbsp;</td>
  528. <td><table width="214" border="0" cellspacing="0" cellpadding="0">
  529. <tr>
  530. <td width="115"><input name="imageField2" type="image" class="np" src="images/button_ok.gif" width="60" height="22" border="0" style="cursor:ponter" /></td>
  531. <td width="99"><img src="images/button_reset.gif" width="60" height="22" border="0" onClick="location.reload();" style="cursor:ponter" /></td>
  532. </tr>
  533. </table></td>
  534. </tr>
  535. </table></td>
  536. </tr>
  537. </table>
  538. </form>
  539. <script language='javascript'>InitPage();</script>
  540. </body>
  541. </html>