国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

526 líneas
23KB

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