| @@ -1,52 +1,52 @@ | |||
| <!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"> | |||
| <!DOCTYPE html> | |||
| <html> | |||
| <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="css/albumupload.css"> | |||
| <script>const cfg_uplitpic_cut = '<?php echo $cfg_uplitpic_cut; ?>';</script> | |||
| <script language="javascript" src="../static/web/js/jquery.min.js"></script> | |||
| <script src="../static/web/js/bootstrap.bundle.min.js"></script> | |||
| <script type="text/javascript" src="../static/web/js/webajax.js"></script> | |||
| <link rel="stylesheet" href="../static/web/css/daterangepicker.css"> | |||
| <script type="text/javascript" src="../static/web/js/moment.min.js"></script> | |||
| <script type="text/javascript" src="../static/web/js/daterangepicker.js"></script> | |||
| <script type="text/javascript" src="js/main.js"></script> | |||
| <script type="text/javascript" src="js/album.js"></script> | |||
| <script type="text/javascript" src="js/handlers.js"></script> | |||
| <link rel="stylesheet" href="../static/web/css/cropper.min.css"> | |||
| <script src="../static/web/js/cropper.min.js"></script> | |||
| <link rel="stylesheet" href="../static/web/css/jquery.fileupload.css"> | |||
| <script language="javascript"> | |||
| var swfu = null; | |||
| var vcc = 0; | |||
| var albums = []; | |||
| $(document).ready(function () { | |||
| //添加图片 | |||
| $("#iptAlbumImages").change(function (event) { | |||
| var files = event.target.files; | |||
| for (var i = 0, f; f = files[i]; i++) { | |||
| //如果不是图片忽略 | |||
| if (!f.type.match('image.*')) { | |||
| continue; | |||
| } | |||
| //将图片渲染到浏览器 | |||
| var reader = new FileReader(); | |||
| reader.onload = (function (theFile) { | |||
| return function (e) { | |||
| litpicImgSrc = e.target.result; | |||
| addImage(litpicImgSrc, 0); | |||
| }; | |||
| })(f); | |||
| reader.readAsDataURL(f); | |||
| <meta 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="css/albumupload.css"> | |||
| <script>const cfg_uplitpic_cut = '<?php echo $cfg_uplitpic_cut; ?>';</script> | |||
| <script language="javascript" src="../static/web/js/jquery.min.js"></script> | |||
| <script src="../static/web/js/bootstrap.bundle.min.js"></script> | |||
| <script type="text/javascript" src="../static/web/js/webajax.js"></script> | |||
| <link rel="stylesheet" href="../static/web/css/daterangepicker.css"> | |||
| <script type="text/javascript" src="../static/web/js/moment.min.js"></script> | |||
| <script type="text/javascript" src="../static/web/js/daterangepicker.js"></script> | |||
| <script type="text/javascript" src="js/main.js"></script> | |||
| <script type="text/javascript" src="js/album.js"></script> | |||
| <script type="text/javascript" src="js/handlers.js"></script> | |||
| <link rel="stylesheet" href="../static/web/css/cropper.min.css"> | |||
| <script src="../static/web/js/cropper.min.js"></script> | |||
| <link rel="stylesheet" href="../static/web/css/jquery.fileupload.css"> | |||
| <script language="javascript"> | |||
| var swfu = null; | |||
| var vcc = 0; | |||
| var albums = []; | |||
| $(document).ready(function () { | |||
| //添加图片 | |||
| $("#iptAlbumImages").change(function (event) { | |||
| var files = event.target.files; | |||
| for (var i = 0, f; f = files[i]; i++) { | |||
| //如果不是图片忽略 | |||
| if (!f.type.match('image.*')) { | |||
| continue; | |||
| } | |||
| $("#iptAlbumImages").val(""); | |||
| }); | |||
| //将图片渲染到浏览器 | |||
| var reader = new FileReader(); | |||
| reader.onload = (function (theFile) { | |||
| return function (e) { | |||
| litpicImgSrc = e.target.result; | |||
| addImage(litpicImgSrc, 0); | |||
| }; | |||
| })(f); | |||
| reader.readAsDataURL(f); | |||
| } | |||
| $("#iptAlbumImages").val(""); | |||
| }); | |||
| </script> | |||
| }); | |||
| </script> | |||
| <style> | |||
| body{background:#fff} | |||
| img{vertical-align:baseline} | |||
| @@ -1,7 +1,7 @@ | |||
| <!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"> | |||
| <!DOCTYPE html> | |||
| <html> | |||
| <head> | |||
| <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>"> | |||
| <meta 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"> | |||
| @@ -21,31 +21,31 @@ | |||
| <script src="../static/web/js/cropper.min.js"></script> | |||
| <link rel="stylesheet" href="../static/web/css/jquery.fileupload.css"> | |||
| <script language="javascript" type="text/javascript"> | |||
| var swfu = null; | |||
| var vcc = 0; | |||
| var albums = []; | |||
| $(document).ready(function () { | |||
| //添加图片 | |||
| $("#iptAlbumImages").change(function (event) { | |||
| var files = event.target.files; | |||
| for (var i = 0, f; f = files[i]; i++) { | |||
| //如果不是图片忽略 | |||
| if (!f.type.match('image.*')) { | |||
| continue; | |||
| } | |||
| //将图片渲染到浏览器 | |||
| var reader = new FileReader(); | |||
| reader.onload = (function (theFile) { | |||
| return function (e) { | |||
| litpicImgSrc = e.target.result; | |||
| addImage(litpicImgSrc, 0); | |||
| }; | |||
| })(f); | |||
| reader.readAsDataURL(f); | |||
| var swfu = null; | |||
| var vcc = 0; | |||
| var albums = []; | |||
| $(document).ready(function () { | |||
| //添加图片 | |||
| $("#iptAlbumImages").change(function (event) { | |||
| var files = event.target.files; | |||
| for (var i = 0, f; f = files[i]; i++) { | |||
| //如果不是图片忽略 | |||
| if (!f.type.match('image.*')) { | |||
| continue; | |||
| } | |||
| $("#iptAlbumImages").val(""); | |||
| }); | |||
| //将图片渲染到浏览器 | |||
| var reader = new FileReader(); | |||
| reader.onload = (function (theFile) { | |||
| return function (e) { | |||
| litpicImgSrc = e.target.result; | |||
| addImage(litpicImgSrc, 0); | |||
| }; | |||
| })(f); | |||
| reader.readAsDataURL(f); | |||
| } | |||
| $("#iptAlbumImages").val(""); | |||
| }); | |||
| }); | |||
| </script> | |||
| <style> | |||
| body{background:#fff} | |||
| @@ -1,34 +1,34 @@ | |||
| <!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"> | |||
| <!DOCTYPE html> | |||
| <html> | |||
| <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"> | |||
| <script>const cfg_uplitpic_cut = '<?php echo $cfg_uplitpic_cut; ?>';</script> | |||
| <script language="javascript" src="../static/web/js/jquery.min.js"></script> | |||
| <script language="javascript" src="../static/web/js/webajax.js"></script> | |||
| <link rel="stylesheet" href="../static/web/css/daterangepicker.css"> | |||
| <script type="text/javascript" src="../static/web/js/moment.min.js"></script> | |||
| <script type="text/javascript" src="../static/web/js/daterangepicker.js"></script> | |||
| <script src="../static/web/js/bootstrap.bundle.min.js"></script> | |||
| <script language='javascript' src="js/main.js"></script> | |||
| <link rel="stylesheet" href="../static/web/css/jquery.fileupload.css"> | |||
| <link rel="stylesheet" href="../static/web/css/cropper.min.css"> | |||
| <script src="../static/web/js/cropper.min.js"></script> | |||
| <script language="javascript"> | |||
| function checkSubmit() { | |||
| if (document.form1.title.value == "") { | |||
| ShowMsg("<?php echo $cInfos['titlename']; ?>不能为空"); | |||
| return false; | |||
| } | |||
| if (document.form1.typeid.value == 0) { | |||
| ShowMsg("请选择档案的主栏目"); | |||
| return false; | |||
| } | |||
| <meta 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"> | |||
| <script>const cfg_uplitpic_cut = '<?php echo $cfg_uplitpic_cut; ?>';</script> | |||
| <script language="javascript" src="../static/web/js/jquery.min.js"></script> | |||
| <script language="javascript" src="../static/web/js/webajax.js"></script> | |||
| <link rel="stylesheet" href="../static/web/css/daterangepicker.css"> | |||
| <script type="text/javascript" src="../static/web/js/moment.min.js"></script> | |||
| <script type="text/javascript" src="../static/web/js/daterangepicker.js"></script> | |||
| <script src="../static/web/js/bootstrap.bundle.min.js"></script> | |||
| <script language='javascript' src="js/main.js"></script> | |||
| <link rel="stylesheet" href="../static/web/css/jquery.fileupload.css"> | |||
| <link rel="stylesheet" href="../static/web/css/cropper.min.css"> | |||
| <script src="../static/web/js/cropper.min.js"></script> | |||
| <script language="javascript"> | |||
| function checkSubmit() { | |||
| if (document.form1.title.value == "") { | |||
| ShowMsg("<?php echo $cInfos['titlename']; ?>不能为空"); | |||
| return false; | |||
| } | |||
| if (document.form1.typeid.value == 0) { | |||
| ShowMsg("请选择档案的主栏目"); | |||
| return false; | |||
| } | |||
| </script> | |||
| } | |||
| </script> | |||
| <style> | |||
| body{background:#fff} | |||
| img{vertical-align:baseline} | |||
| @@ -1,31 +1,31 @@ | |||
| <!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"> | |||
| <!DOCTYPE html> | |||
| <html> | |||
| <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"> | |||
| <script>const cfg_uplitpic_cut = '<?php echo $cfg_uplitpic_cut; ?>';</script> | |||
| <script src="../static/web/js/jquery.min.js"></script> | |||
| <script language="javascript" src="../static/web/js/webajax.js"></script> | |||
| <script src="../static/web/js/bootstrap.bundle.min.js"></script> | |||
| <script language="javascript" src="js/main.js"></script> | |||
| <link rel="stylesheet" href="../static/web/css/daterangepicker.css"> | |||
| <script type="text/javascript" src="../static/web/js/moment.min.js"></script> | |||
| <script type="text/javascript" src="../static/web/js/daterangepicker.js"></script> | |||
| <link rel="stylesheet" href="../static/web/css/jquery.fileupload.css"> | |||
| <link rel="stylesheet" href="../static/web/css/cropper.min.css"> | |||
| <script src="../static/web/js/cropper.min.js"></script> | |||
| <script language="javascript"> | |||
| function checkSubmit() { | |||
| if (document.form1.title.value == "") { | |||
| ShowMsg("<?php echo $cInfos['titlename']; ?>不能为空"); | |||
| document.form1.title.focus(); | |||
| return false; | |||
| } | |||
| <meta 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"> | |||
| <script>const cfg_uplitpic_cut = '<?php echo $cfg_uplitpic_cut; ?>';</script> | |||
| <script src="../static/web/js/jquery.min.js"></script> | |||
| <script language="javascript" src="../static/web/js/webajax.js"></script> | |||
| <script src="../static/web/js/bootstrap.bundle.min.js"></script> | |||
| <script language="javascript" src="js/main.js"></script> | |||
| <link rel="stylesheet" href="../static/web/css/daterangepicker.css"> | |||
| <script type="text/javascript" src="../static/web/js/moment.min.js"></script> | |||
| <script type="text/javascript" src="../static/web/js/daterangepicker.js"></script> | |||
| <link rel="stylesheet" href="../static/web/css/jquery.fileupload.css"> | |||
| <link rel="stylesheet" href="../static/web/css/cropper.min.css"> | |||
| <script src="../static/web/js/cropper.min.js"></script> | |||
| <script language="javascript"> | |||
| function checkSubmit() { | |||
| if (document.form1.title.value == "") { | |||
| ShowMsg("<?php echo $cInfos['titlename']; ?>不能为空"); | |||
| document.form1.title.focus(); | |||
| return false; | |||
| } | |||
| </script> | |||
| } | |||
| </script> | |||
| <style> | |||
| body{background:#fff} | |||
| img{vertical-align:baseline} | |||
| @@ -1,7 +1,7 @@ | |||
| <!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"> | |||
| <!DOCTYPE html> | |||
| <html> | |||
| <head> | |||
| <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>"> | |||
| <meta 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"> | |||
| @@ -1,7 +1,7 @@ | |||
| <!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"> | |||
| <!DOCTYPE html> | |||
| <html> | |||
| <head> | |||
| <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>"> | |||
| <meta 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"> | |||
| @@ -1,7 +1,7 @@ | |||
| <!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"> | |||
| <!DOCTYPE html> | |||
| <html> | |||
| <head> | |||
| <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>"> | |||
| <meta charset="<?php echo $cfg_soft_lang; ?>"> | |||
| <title>批量增加栏目</title> | |||
| <script type="text/javascript" src="../static/web/js/jquery.min.js"></script> | |||
| <script type="text/javascript"> | |||
| @@ -1,7 +1,7 @@ | |||
| <!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"> | |||
| <!DOCTYPE html> | |||
| <html> | |||
| <head> | |||
| <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>"> | |||
| <meta charset="<?php echo $cfg_soft_lang; ?>"> | |||
| <title>栏目管理</title> | |||
| <meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> | |||
| <link rel="stylesheet" href="../static/web/css/bootstrap.min.css"> | |||
| @@ -1,11 +1,11 @@ | |||
| <!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"> | |||
| <!DOCTYPE html> | |||
| <html> | |||
| <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"> | |||
| <meta 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"> | |||
| </head> | |||
| <body> | |||
| <table width="98%" cellpadding="3" cellspacing="1" align="center" class="table maintable mt-3 mb-3"> | |||
| @@ -1,23 +1,23 @@ | |||
| <!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"> | |||
| <!DOCTYPE html> | |||
| <html> | |||
| <head> | |||
| <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>"> | |||
| <title>更新首页</title> | |||
| <script src="../static/web/js/jquery.min.js" language="javascript" type="text/javascript"></script> | |||
| <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"> | |||
| <script src="js/main.js" language="javascript"></script> | |||
| <script language="javascript"> | |||
| function SelectTemplets(fname) { | |||
| var pos = GetWinPos(800,600); | |||
| window.open("./dialog/select_templets.php?f=" + fname, "poptempWin", "scrollbars=yes,resizable=yes,statebar=no,width=800,height=600,left=" + pos.left + ", top=" + pos.top); | |||
| } | |||
| function htmlSubmit() { | |||
| form1.submit(); | |||
| $("#dedebiz_admin").val(""); | |||
| } | |||
| </script> | |||
| <meta charset="<?php echo $cfg_soft_lang; ?>"> | |||
| <title>更新首页</title> | |||
| <script src="../static/web/js/jquery.min.js" language="javascript" type="text/javascript"></script> | |||
| <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"> | |||
| <script src="js/main.js" language="javascript"></script> | |||
| <script language="javascript"> | |||
| function SelectTemplets(fname) { | |||
| var pos = GetWinPos(800,600); | |||
| window.open("./dialog/select_templets.php?f=" + fname, "poptempWin", "scrollbars=yes,resizable=yes,statebar=no,width=800,height=600,left=" + pos.left + ", top=" + pos.top); | |||
| } | |||
| function htmlSubmit() { | |||
| form1.submit(); | |||
| $("#dedebiz_admin").val(""); | |||
| } | |||
| </script> | |||
| </head> | |||
| <body> | |||
| <table width="98%" cellpadding="3" cellspacing="1" align="center" class="table maintable mt-3 mb-3"> | |||
| @@ -1,19 +1,19 @@ | |||
| <!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"> | |||
| <!DOCTYPE html> | |||
| <html> | |||
| <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"> | |||
| <script src="../static/web/js/jquery.min.js"></script> | |||
| <script src="js/main.js" language="javascript"></script> | |||
| <script language="javascript"> | |||
| function SelectTemplets(fname) { | |||
| var pos = GetWinPos(800,600); | |||
| window.open("./dialog/select_templets.php?&activepath=<?php echo urlencode($cfg_templets_dir.'/plus')?>&f=" + fname, "poptempWin", "scrollbars=yes,resizable=yes,statebar=no,width=800,height=600,left=" + pos.left + ", top=" + pos.top); | |||
| } | |||
| </script> | |||
| <meta 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"> | |||
| <script src="../static/web/js/jquery.min.js"></script> | |||
| <script src="js/main.js" language="javascript"></script> | |||
| <script language="javascript"> | |||
| function SelectTemplets(fname) { | |||
| var pos = GetWinPos(800,600); | |||
| window.open("./dialog/select_templets.php?&activepath=<?php echo urlencode($cfg_templets_dir.'/plus')?>&f=" + fname, "poptempWin", "scrollbars=yes,resizable=yes,statebar=no,width=800,height=600,left=" + pos.left + ", top=" + pos.top); | |||
| } | |||
| </script> | |||
| </head> | |||
| <body> | |||
| <table width="98%" cellpadding="3" cellspacing="1" align="center" class="table maintable mt-3 mb-3"> | |||
| @@ -1,11 +1,11 @@ | |||
| <!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"> | |||
| <!DOCTYPE html> | |||
| <html> | |||
| <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"> | |||
| <meta 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"> | |||
| </head> | |||
| <body> | |||
| <table width="98%" cellpadding="3" cellspacing="1" align="center" class="table maintable mt-3 mb-3"> | |||
| @@ -1,11 +1,11 @@ | |||
| <!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"> | |||
| <!DOCTYPE html> | |||
| <html> | |||
| <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"> | |||
| <meta 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"> | |||
| </head> | |||
| <body> | |||
| <table width="98%" cellpadding="3" cellspacing="1" align="center" class="table maintable mt-3 mb-3"> | |||
| @@ -1,11 +1,11 @@ | |||
| <!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"> | |||
| <!DOCTYPE html> | |||
| <html> | |||
| <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"> | |||
| <meta 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"> | |||
| </head> | |||
| <body> | |||
| <table width="98%" cellpadding="3" cellspacing="1" align="center" class="table maintable mt-3 mb-3"> | |||
| @@ -1,19 +1,20 @@ | |||
| <!DOCTYPE html> | |||
| <html> | |||
| <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/css/select2.min.css"> | |||
| <link rel="stylesheet" href="../static/web/font/css/font-awesome.min.css"> | |||
| <link rel="stylesheet" href="../static/web/css/admin.css"> | |||
| <script language="javascript" src="../static/web/js/jquery.min.js"></script> | |||
| <script language="javascript" src="../static/web/js/select2.full.min.js"></script> | |||
| <script language="javascript" src="../static/web/js/i18n/zh-CN.js"></script> | |||
| <script> | |||
| function onTagSubmit() { | |||
| document.form1.submit(); | |||
| } | |||
| </script> | |||
| <meta charset="<?php echo $cfg_soft_lang; ?>"> | |||
| <title>更新标签</title> | |||
| <link rel="stylesheet" href="../static/web/css/bootstrap.min.css"> | |||
| <link rel="stylesheet" href="../static/web/css/select2.min.css"> | |||
| <link rel="stylesheet" href="../static/web/font/css/font-awesome.min.css"> | |||
| <link rel="stylesheet" href="../static/web/css/admin.css"> | |||
| <script language="javascript" src="../static/web/js/jquery.min.js"></script> | |||
| <script language="javascript" src="../static/web/js/select2.full.min.js"></script> | |||
| <script language="javascript" src="../static/web/js/i18n/zh-CN.js"></script> | |||
| <script> | |||
| function onTagSubmit() { | |||
| document.form1.submit(); | |||
| } | |||
| </script> | |||
| </head> | |||
| <body> | |||
| <table width="98%" cellpadding="3" cellspacing="1" align="center" class="table maintable mt-3 mb-3"> | |||
| @@ -36,9 +37,7 @@ | |||
| ?> | |||
| <tr> | |||
| <td width="260" height="26">输入标签:</td> | |||
| <td height="26"> | |||
| <input type="hidden" name="tagid" value="<?php echo $tagid;?>"><?php echo $row['tag'];?> <a class="text-success" href="makehtml_taglist.php">重新选择</a> | |||
| </td> | |||
| <td height="26"><input type="hidden" name="tagid" value="<?php echo $tagid;?>"><?php echo $row['tag'];?> <a class="text-success" href="makehtml_taglist.php">重新选择</a></td> | |||
| </tr> | |||
| <?php | |||
| } else { | |||
| @@ -1,7 +1,7 @@ | |||
| <!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"> | |||
| <!DOCTYPE html> | |||
| <html> | |||
| <head> | |||
| <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>"> | |||
| <meta 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"> | |||
| @@ -1,7 +1,7 @@ | |||
| <!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"> | |||
| <!DOCTYPE html> | |||
| <html> | |||
| <head> | |||
| <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>"> | |||
| <meta 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"> | |||
| @@ -1,7 +1,7 @@ | |||
| <!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"> | |||
| <!DOCTYPE html> | |||
| <html> | |||
| <head> | |||
| <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>"> | |||
| <meta 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"> | |||
| @@ -1,7 +1,7 @@ | |||
| <!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"> | |||
| <!DOCTYPE html> | |||
| <html> | |||
| <head> | |||
| <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>"> | |||
| <meta 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"> | |||
| @@ -1,11 +1,11 @@ | |||
| <!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"> | |||
| <!DOCTYPE html> | |||
| <html> | |||
| <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"> | |||
| <meta 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"> | |||
| </head> | |||
| <body> | |||
| <table width="98%" cellpadding="3" cellspacing="1" align="center" class="table maintable mt-3 mb-3"> | |||
| @@ -1,25 +1,25 @@ | |||
| <!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"> | |||
| <!DOCTYPE html> | |||
| <html> | |||
| <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"> | |||
| <script src="../static/web/js/jquery.min.js" language="javascript" type="text/javascript"></script> | |||
| <script language='javascript' src='js/main.js'></script> | |||
| <script language="javascript"> | |||
| function SelectTemplets(fname) { | |||
| var pos = GetWinPos(800,600); | |||
| window.open("./dialog/select_templets.php?f=" + fname, "poptempWin", "scrollbars=yes,resizable=yes,statebar=no,width=800,height=600,left=" + pos.left + ", top=" + pos.top); | |||
| } | |||
| </script> | |||
| <link rel="stylesheet" href="css/codemirror.css"> | |||
| <script type="text/javascript" src="js/codemirror.js"></script> | |||
| <script type="text/javascript" src="js/mode/xml/xml.js"></script> | |||
| <script type="text/javascript" src="js/mode/javascript/javascript.js"></script> | |||
| <script type="text/javascript" src="js/mode/css/css.js"></script> | |||
| <script type="text/javascript" src="js/mode/htmlmixed/htmlmixed.js"></script> | |||
| <meta 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"> | |||
| <script src="../static/web/js/jquery.min.js" language="javascript" type="text/javascript"></script> | |||
| <script language='javascript' src='js/main.js'></script> | |||
| <script language="javascript"> | |||
| function SelectTemplets(fname) { | |||
| var pos = GetWinPos(800,600); | |||
| window.open("./dialog/select_templets.php?f=" + fname, "poptempWin", "scrollbars=yes,resizable=yes,statebar=no,width=800,height=600,left=" + pos.left + ", top=" + pos.top); | |||
| } | |||
| </script> | |||
| <link rel="stylesheet" href="css/codemirror.css"> | |||
| <script type="text/javascript" src="js/codemirror.js"></script> | |||
| <script type="text/javascript" src="js/mode/xml/xml.js"></script> | |||
| <script type="text/javascript" src="js/mode/javascript/javascript.js"></script> | |||
| <script type="text/javascript" src="js/mode/css/css.js"></script> | |||
| <script type="text/javascript" src="js/mode/htmlmixed/htmlmixed.js"></script> | |||
| </head> | |||
| <body> | |||
| <table width="98%" cellpadding="3" cellspacing="1" align="center" class="table maintable mt-3 mb-3"> | |||
| @@ -1,7 +1,7 @@ | |||
| <!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"> | |||
| <!DOCTYPE html> | |||
| <html> | |||
| <head> | |||
| <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>"> | |||
| <meta 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"> | |||
| @@ -1,6 +1,5 @@ | |||
| {dede:config.pagesize value="20"/} | |||
| <!DOCTYPE html | |||
| PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |||
| <!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; ?>"> | |||