Browse Source

添加提取文档多图片标签,统一标签命名

tags/6.2.8
叙述、别离 1 year ago
parent
commit
0037d093a2
38 changed files with 101 additions and 84 deletions
  1. +27
    -10
      src/system/common.func.php
  2. +2
    -2
      src/theme/apps/download_links.htm
  3. +2
    -2
      src/theme/apps/flink_add.htm
  4. +2
    -2
      src/theme/apps/flink_list.htm
  5. +2
    -2
      src/theme/apps/heightsearch.htm
  6. +2
    -2
      src/theme/apps/list_diyform.htm
  7. +2
    -2
      src/theme/apps/post_diyform.htm
  8. +2
    -2
      src/theme/apps/recommend.htm
  9. +2
    -2
      src/theme/apps/showphoto.htm
  10. +2
    -2
      src/theme/apps/view_diyform.htm
  11. +2
    -2
      src/theme/apps/view_msg.htm
  12. +2
    -2
      src/theme/apps/view_msg_catalog.htm
  13. +2
    -2
      src/theme/apps/vote.htm
  14. +2
    -2
      src/user/templets/album_add.htm
  15. +2
    -2
      src/user/templets/album_edit.htm
  16. +2
    -2
      src/user/templets/archives_add.htm
  17. +2
    -2
      src/user/templets/archives_edit.htm
  18. +2
    -2
      src/user/templets/archives_sg_add.htm
  19. +2
    -2
      src/user/templets/archives_sg_edit.htm
  20. +2
    -2
      src/user/templets/article_add.htm
  21. +2
    -2
      src/user/templets/article_edit.htm
  22. +2
    -2
      src/user/templets/buy.htm
  23. +2
    -2
      src/user/templets/buy_action_payment.htm
  24. +2
    -2
      src/user/templets/content_list.htm
  25. +2
    -2
      src/user/templets/content_sg_list.htm
  26. +2
    -2
      src/user/templets/edit_baseinfo.htm
  27. +2
    -2
      src/user/templets/index.htm
  28. +2
    -2
      src/user/templets/login.htm
  29. +2
    -2
      src/user/templets/mypay.htm
  30. +2
    -2
      src/user/templets/mystow.htm
  31. +2
    -2
      src/user/templets/operation.htm
  32. +2
    -2
      src/user/templets/pm-main.htm
  33. +2
    -2
      src/user/templets/reg-new.htm
  34. +2
    -2
      src/user/templets/resetpassword.htm
  35. +2
    -2
      src/user/templets/resetpassword2.htm
  36. +2
    -2
      src/user/templets/resetpassword3.htm
  37. +2
    -2
      src/user/templets/soft_add.htm
  38. +2
    -2
      src/user/templets/soft_edit.htm

+ 27
- 10
src/system/common.func.php View File

@@ -527,10 +527,10 @@ function GetUpdateSQL()
fclose($fp);
return $result;
}
/*会员中心调用默认主题模板<?php pasterTempletDiy('head.htm');?>*/
if (!function_exists('pasterTempletDiy')) {
/*会员中心调用默认主题模板<?php obtaintheme('head.htm');?>*/
if (!function_exists('obtaintheme')) {
require_once DEDEINC."/archive/partview.class.php";
function pasterTempletDiy($path)
function obtaintheme($path)
{
global $cfg_basedir, $cfg_templets_dir, $cfg_df_style;
$tmpfile = $cfg_basedir.$cfg_templets_dir.'/'.$cfg_df_style.'/'.$path;
@@ -539,9 +539,9 @@ if (!function_exists('pasterTempletDiy')) {
$dtp->Display();
}
}
//标签调用标签[field:id function='GetMyTags(@me,2)'/]2表示调用文档2个标签
if (!function_exists('GetMyTags')) {
function GetMyTags($aid, $num=3)
//标签调用[field:id function='obtaintags(@me,3)'/]3表示调用文档3个标签
if (!function_exists('obtaintags')) {
function obtaintags($aid, $num = 3)
{
global $dsql, $cfg_cmspath;
$tags = '';
@@ -549,15 +549,32 @@ if (!function_exists('GetMyTags')) {
$dsql->Execute('tag',$query);
while($row = $dsql->GetArray('tag')) {
$link = $cfg_cmspath."/apps/tags.php?/{$row['tid']}";
$tags.= ($tags==''?"<a href='{$link}'>{$row['tag']}</a>" : "<a href='{$link}'>{$row['tag']}</a>");
$tags .= ($tags==''?"<a href='{$link}'>{$row['tag']}</a>" : "<a href='{$link}'>{$row['tag']}</a>");
}
return $tags;
}
}
//联动单筛选标签{dede:php}AddFilter(模型id,类型,'字段1,字段2');{/dede:php}类型对应以下case数值
//提取文档多图片[field:body function='obtainimgs(@me,3)'/]3表示调用文档3张图片
if (!function_exists('obtainimgs')) {
function obtainimgs($string, $num)
{
preg_match_all("/<img([^>]*)\s*src=('|\")([^'\"]+)('|\")/", $string, $matches);
$imgsrc_arr = array_unique($matches[3]);
$count = count($imgsrc_arr);
$i = 0;
foreach($imgsrc_arr as $imgsrc)
{
if ($i == $num) break;
$result .= "<img src=\"$imgsrc\">";
$i++;
}
return $result;
}
}
//联动单筛选{dede:php}AddFilter(模型id,类型,'字段1,字段2');{/dede:php}类型有三种,对应以下case值
function litimgurls($imgid = 0)
{
global $lit_imglist, $dsql;
global $dsql, $lit_imglist;
$row = $dsql->GetOne("SELECT c.addtable FROM `#@__archives` AS a LEFT JOIN `#@__channeltype` AS c ON a.channel=c.id WHERE a.id='$imgid'");
$addtable = trim($row['addtable']);
$row = $dsql->GetOne("SELECT imgurls FROM `$addtable` WHERE aid='$imgid'");
@@ -586,7 +603,7 @@ function string_filter($str, $stype = "inject")
}
return $str;
}
//联动单筛选发布三种类型
//联动单筛选三种类型显示
function AddFilter($channelid, $type = 1, $fieldsnamef = '', $defaulttid = 0, $toptid = 0, $loadtype = 'autofield')
{
global $tid, $dsql, $id, $aid;


+ 2
- 2
src/theme/apps/download_links.htm View File

@@ -10,7 +10,7 @@
<link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/css/style.css">
</head>
<body>
<?php pasterTempletDiy('top.htm');?>
<?php obtaintheme('top.htm');?>
<main class="container py-3">
<div class="row">
<div class="col-md-12">
@@ -30,6 +30,6 @@
</div>
</div>
</main>
<?php pasterTempletDiy('foot.htm');?>
<?php obtaintheme('foot.htm');?>
</body>
</html>

+ 2
- 2
src/theme/apps/flink_add.htm View File

@@ -10,7 +10,7 @@
<link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/css/style.css">
</head>
<body>
<?php pasterTempletDiy('top.htm');?>
<?php obtaintheme('top.htm');?>
<main class="container py-3">
<div class="row">
<div class="col-md-12">
@@ -77,6 +77,6 @@
</div>
</div>
</main>
<?php pasterTempletDiy('foot.htm');?>
<?php obtaintheme('foot.htm');?>
</body>
</html>

+ 2
- 2
src/theme/apps/flink_list.htm View File

@@ -10,7 +10,7 @@
<link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/css/style.css">
</head>
<body>
<?php pasterTempletDiy('top.htm');?>
<?php obtaintheme('top.htm');?>
<main class="container py-3">
<div class="row">
<div class="col-md-12">
@@ -45,6 +45,6 @@
</div>
</div>
</main>
<?php pasterTempletDiy('foot.htm');?>
<?php obtaintheme('foot.htm');?>
</body>
</html>

+ 2
- 2
src/theme/apps/heightsearch.htm View File

@@ -10,7 +10,7 @@
<link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/css/style.css">
</head>
<body>
<?php pasterTempletDiy('top.htm');?>
<?php obtaintheme('top.htm');?>
<main class="container py-3">
<div class="row">
<div class="col-md-12">
@@ -103,6 +103,6 @@
</div>
</div>
</main>
<?php pasterTempletDiy('foot.htm');?>
<?php obtaintheme('foot.htm');?>
</body>
</html>

+ 2
- 2
src/theme/apps/list_diyform.htm View File

@@ -10,7 +10,7 @@
<link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/css/style.css">
</head>
<body>
<?php pasterTempletDiy('top.htm');?>
<?php obtaintheme('top.htm');?>
<main class="container py-3">
<div class="row">
<div class="col-md-12">
@@ -42,6 +42,6 @@
</div>
</div>
</main>
<?php pasterTempletDiy('foot.htm');?>
<?php obtaintheme('foot.htm');?>
</body>
</html>

+ 2
- 2
src/theme/apps/post_diyform.htm View File

@@ -15,7 +15,7 @@
<script src="<?php echo $cfg_cmsurl;?>/static/web/js/diy.js"></script>
</head>
<body>
<?php pasterTempletDiy('top.htm');?>
<?php obtaintheme('top.htm');?>
<main class="container py-3">
<div class="row">
<div class="col-md-12">
@@ -43,6 +43,6 @@
</div>
</div>
</main>
<?php pasterTempletDiy('foot.htm');?>
<?php obtaintheme('foot.htm');?>
</body>
</html>

+ 2
- 2
src/theme/apps/recommend.htm View File

@@ -10,7 +10,7 @@
<link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/css/style.css">
</head>
<body>
<?php pasterTempletDiy('top.htm');?>
<?php obtaintheme('top.htm');?>
<main class="container py-3">
<div class="row">
<div class="col-md-12">
@@ -42,6 +42,6 @@
</div>
</div>
</main>
<?php pasterTempletDiy('foot.htm');?>
<?php obtaintheme('foot.htm');?>
</body>
</html>

+ 2
- 2
src/theme/apps/showphoto.htm View File

@@ -10,7 +10,7 @@
<link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/css/style.css">
</head>
<body>
<?php pasterTempletDiy('top.htm');?>
<?php obtaintheme('top.htm');?>
<main class="container py-3">
<div class="row">
<div class="col-md-12">
@@ -31,6 +31,6 @@
</div>
</div>
</main>
<?php pasterTempletDiy('foot.htm');?>
<?php obtaintheme('foot.htm');?>
</body>
</html>

+ 2
- 2
src/theme/apps/view_diyform.htm View File

@@ -10,7 +10,7 @@
<link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/css/style.css">
</head>
<body>
<?php pasterTempletDiy('top.htm');?>
<?php obtaintheme('top.htm');?>
<main class="container py-3">
<div class="row">
<div class="col-md-12">
@@ -37,6 +37,6 @@
</div>
</div>
</main>
<?php pasterTempletDiy('foot.htm');?>
<?php obtaintheme('foot.htm');?>
</body>
</html>

+ 2
- 2
src/theme/apps/view_msg.htm View File

@@ -10,7 +10,7 @@
<link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/css/style.css">
</head>
<body>
<?php pasterTempletDiy('top.htm');?>
<?php obtaintheme('top.htm');?>
<main class="container py-3">
<div class="row">
<div class="col-md-12">
@@ -39,6 +39,6 @@
</div>
</div>
</main>
<?php pasterTempletDiy('foot.htm');?>
<?php obtaintheme('foot.htm');?>
</body>
</html>

+ 2
- 2
src/theme/apps/view_msg_catalog.htm View File

@@ -10,7 +10,7 @@
<link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/css/style.css">
</head>
<body>
<?php pasterTempletDiy('top.htm');?>
<?php obtaintheme('top.htm');?>
<main class="container py-3">
<div class="row">
<div class="col-md-12">
@@ -35,6 +35,6 @@
</div>
</div>
</main>
<?php pasterTempletDiy('foot.htm');?>
<?php obtaintheme('foot.htm');?>
</body>
</html>

+ 2
- 2
src/theme/apps/vote.htm View File

@@ -10,7 +10,7 @@
<link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/css/style.css">
</head>
<body>
<?php pasterTempletDiy('top.htm');?>
<?php obtaintheme('top.htm');?>
<main class="container py-3">
<div class="row">
<div class="col-md-12">
@@ -29,6 +29,6 @@
</div>
</div>
</main>
<?php pasterTempletDiy('foot.htm');?>
<?php obtaintheme('foot.htm');?>
</body>
</html>

+ 2
- 2
src/user/templets/album_add.htm View File

@@ -13,7 +13,7 @@
<script src="<?php echo $cfg_cmsurl;?>/static/web/js/user.album.js"></script>
</head>
<body class="body-bg">
<?php pasterTempletDiy('top.htm');?>
<?php obtaintheme('top.htm');?>
<main class="container py-3">
<div class="row">
<div class="col-md-12">
@@ -100,7 +100,7 @@
</div>
</div>
</main>
<?php pasterTempletDiy('foot.htm');?>
<?php obtaintheme('foot.htm');?>
<?php include(DEDEMEMBER."/templets/widget_litpic.htm");?>
</body>
</html>

+ 2
- 2
src/user/templets/album_edit.htm View File

@@ -13,7 +13,7 @@
<script src="<?php echo $cfg_cmsurl;?>/static/web/js/user.album.js"></script>
</head>
<body class="body-bg">
<?php pasterTempletDiy('top.htm');?>
<?php obtaintheme('top.htm');?>
<main class="container py-3">
<div class="row">
<div class="col-md-12">
@@ -127,7 +127,7 @@
</div>
</div>
</main>
<?php pasterTempletDiy('foot.htm');?>
<?php obtaintheme('foot.htm');?>
<script>
startNum = <?php echo $j;?>;
</script>


+ 2
- 2
src/user/templets/archives_add.htm View File

@@ -12,7 +12,7 @@
<script src="<?php echo $cfg_cmsurl;?>/static/web/js/user.js"></script>
</head>
<body class="body-bg">
<?php pasterTempletDiy('top.htm');?>
<?php obtaintheme('top.htm');?>
<main class="container py-3">
<div class="row">
<div class="col-md-12">
@@ -74,7 +74,7 @@
</div>
</div>
</main>
<?php pasterTempletDiy('foot.htm');?>
<?php obtaintheme('foot.htm');?>
<?php include(DEDEMEMBER."/templets/widget_litpic.htm");?>
</body>
</html>

+ 2
- 2
src/user/templets/archives_edit.htm View File

@@ -12,7 +12,7 @@
<script src="<?php echo $cfg_cmsurl;?>/static/web/js/user.js"></script>
</head>
<body class="body-bg">
<?php pasterTempletDiy('top.htm');?>
<?php obtaintheme('top.htm');?>
<main class="container py-3">
<div class="row">
<div class="col-md-12">
@@ -73,7 +73,7 @@
</div>
</div>
</main>
<?php pasterTempletDiy('foot.htm');?>
<?php obtaintheme('foot.htm');?>
<?php include(DEDEMEMBER."/templets/widget_litpic.htm");?>
</body>
</html>

+ 2
- 2
src/user/templets/archives_sg_add.htm View File

@@ -12,7 +12,7 @@
<script src="<?php echo $cfg_cmsurl;?>/static/web/js/user.js"></script>
</head>
<body class="body-bg">
<?php pasterTempletDiy('top.htm');?>
<?php obtaintheme('top.htm');?>
<main class="container py-3">
<div class="row">
<div class="col-md-12">
@@ -70,7 +70,7 @@
</div>
</div>
</main>
<?php pasterTempletDiy('foot.htm');?>
<?php obtaintheme('foot.htm');?>
<?php include(DEDEMEMBER."/templets/widget_litpic.htm");?>
</body>
</html>

+ 2
- 2
src/user/templets/archives_sg_edit.htm View File

@@ -12,7 +12,7 @@
<script src="<?php echo $cfg_cmsurl;?>/static/web/js/user.js"></script>
</head>
<body class="body-bg">
<?php pasterTempletDiy('top.htm');?>
<?php obtaintheme('top.htm');?>
<main class="container py-3">
<div class="row">
<div class="col-md-12">
@@ -69,7 +69,7 @@
</div>
</div>
</main>
<?php pasterTempletDiy('foot.htm');?>
<?php obtaintheme('foot.htm');?>
<?php include(DEDEMEMBER."/templets/widget_litpic.htm");?>
</body>
</html>

+ 2
- 2
src/user/templets/article_add.htm View File

@@ -12,7 +12,7 @@
<script src="<?php echo $cfg_cmsurl;?>/static/web/js/user.js"></script>
</head>
<body class="body-bg">
<?php pasterTempletDiy('top.htm');?>
<?php obtaintheme('top.htm');?>
<main class="container py-3">
<div class="row">
<div class="col-md-12">
@@ -78,7 +78,7 @@
</div>
</div>
</main>
<?php pasterTempletDiy('foot.htm');?>
<?php obtaintheme('foot.htm');?>
<?php include(DEDEMEMBER."/templets/widget_litpic.htm");?>
</body>
</html>

+ 2
- 2
src/user/templets/article_edit.htm View File

@@ -12,7 +12,7 @@
<script src="<?php echo $cfg_cmsurl;?>/static/web/js/user.js"></script>
</head>
<body class="body-bg">
<?php pasterTempletDiy('top.htm');?>
<?php obtaintheme('top.htm');?>
<main class="container py-3">
<div class="row">
<div class="col-md-12">
@@ -81,7 +81,7 @@
</div>
</div>
</main>
<?php pasterTempletDiy('foot.htm');?>
<?php obtaintheme('foot.htm');?>
<?php include(DEDEMEMBER."/templets/widget_litpic.htm");?>
</body>
</html>

+ 2
- 2
src/user/templets/buy.htm View File

@@ -11,7 +11,7 @@
<script src="<?php echo $cfg_cmsurl;?>/static/web/js/jquery.min.js"></script>
</head>
<body class="body-bg">
<?php pasterTempletDiy('top.htm');?>
<?php obtaintheme('top.htm');?>
<main class="container py-3">
<div class="row">
<?php include(DEDEMEMBER."/templets/menu.htm");?>
@@ -110,6 +110,6 @@
</div>
</div>
</main>
<?php pasterTempletDiy('foot.htm');?>
<?php obtaintheme('foot.htm');?>
</body>
</html>

+ 2
- 2
src/user/templets/buy_action_payment.htm View File

@@ -11,7 +11,7 @@
<script src="<?php echo $cfg_cmsurl;?>/static/web/js/jquery.min.js"></script>
</head>
<body class="body-bg">
<?php pasterTempletDiy('top.htm');?>
<?php obtaintheme('top.htm');?>
<main class="container py-3">
<div class="row">
<?php include(DEDEMEMBER."/templets/menu.htm");?>
@@ -75,6 +75,6 @@
</div>
</div>
</main>
<?php pasterTempletDiy('foot.htm');?>
<?php obtaintheme('foot.htm');?>
</body>
</html>

+ 2
- 2
src/user/templets/content_list.htm View File

@@ -11,7 +11,7 @@
<script src="<?php echo $cfg_cmsurl;?>/static/web/js/jquery.min.js"></script>
</head>
<body class="body-bg">
<?php pasterTempletDiy('top.htm');?>
<?php obtaintheme('top.htm');?>
<main class="container py-3">
<div class="row">
<?php
@@ -74,7 +74,7 @@
</div>
</div>
</main>
<?php pasterTempletDiy('foot.htm');?>
<?php obtaintheme('foot.htm');?>
<script>
function viewArc(aid) {
window.open("{dede:global.cfg_phpurl/}/view.php?aid=" + aid);


+ 2
- 2
src/user/templets/content_sg_list.htm View File

@@ -11,7 +11,7 @@
<script src="<?php echo $cfg_cmsurl;?>/static/web/js/jquery.min.js"></script>
</head>
<body class="body-bg">
<?php pasterTempletDiy('top.htm');?>
<?php obtaintheme('top.htm');?>
<main class="container py-3">
<div class="row">
<?php
@@ -67,7 +67,7 @@
</div>
</div>
</main>
<?php pasterTempletDiy('foot.htm');?>
<?php obtaintheme('foot.htm');?>
<script>
function viewArc(aid) {
window.open("{dede:global.cfg_phpurl/}/view.php?aid=" + aid);


+ 2
- 2
src/user/templets/edit_baseinfo.htm View File

@@ -11,7 +11,7 @@
<script src="<?php echo $cfg_cmsurl;?>/static/web/js/jquery.min.js"></script>
</head>
<body class="body-bg">
<?php pasterTempletDiy('top.htm');?>
<?php obtaintheme('top.htm');?>
<main class="container py-3">
<div class="row">
<?php
@@ -98,7 +98,7 @@
</div>
</div>
</main>
<?php pasterTempletDiy('foot.htm');?>
<?php obtaintheme('foot.htm');?>
<script>
function checkSubmit() {
if (document.form2.oldpwd.value == '') {


+ 2
- 2
src/user/templets/index.htm View File

@@ -11,7 +11,7 @@
<script src="<?php echo $cfg_cmsurl;?>/static/web/js/jquery.min.js"></script>
</head>
<body class="body-bg">
<?php pasterTempletDiy('top.htm');?>
<?php obtaintheme('top.htm');?>
<main class="container py-3">
<div class="row">
<?php
@@ -97,6 +97,6 @@
</div>
</div>
</main>
<?php pasterTempletDiy('foot.htm');?>
<?php obtaintheme('foot.htm');?>
</body>
</html>

+ 2
- 2
src/user/templets/login.htm View File

@@ -12,7 +12,7 @@
<script src="<?php echo $cfg_cmsurl;?>/static/web/js/login.js"></script>
</head>
<body class="body-bg">
<?php pasterTempletDiy('top.htm');?>
<?php obtaintheme('top.htm');?>
<main class="container">
<div class="row">
<div class="col-md-12 text-center">
@@ -48,6 +48,6 @@
</div>
</div>
</main>
<?php pasterTempletDiy('foot.htm');?>
<?php obtaintheme('foot.htm');?>
</body>
</html>

+ 2
- 2
src/user/templets/mypay.htm View File

@@ -11,7 +11,7 @@
<script src="<?php echo $cfg_cmsurl;?>/static/web/js/jquery.min.js"></script>
</head>
<body class="body-bg">
<?php pasterTempletDiy('top.htm');?>
<?php obtaintheme('top.htm');?>
<main class="container py-3">
<div class="row">
<?php
@@ -59,7 +59,7 @@
</div>
</div>
</main>
<?php pasterTempletDiy('foot.htm');?>
<?php obtaintheme('foot.htm');?>
<script>
//获得选中文件的文件名
function GetCheckfolderItem() {


+ 2
- 2
src/user/templets/mystow.htm View File

@@ -11,7 +11,7 @@
<script src="<?php echo $cfg_cmsurl;?>/static/web/js/jquery.min.js"></script>
</head>
<body class="body-bg">
<?php pasterTempletDiy('top.htm');?>
<?php obtaintheme('top.htm');?>
<main class="container py-3">
<div class="row">
<?php
@@ -52,6 +52,6 @@
</div>
</div>
</main>
<?php pasterTempletDiy('foot.htm');?>
<?php obtaintheme('foot.htm');?>
</body>
</html>

+ 2
- 2
src/user/templets/operation.htm View File

@@ -11,7 +11,7 @@
<script src="<?php echo $cfg_cmsurl;?>/static/web/js/jquery.min.js"></script>
</head>
<body class="body-bg">
<?php pasterTempletDiy('top.htm');?>
<?php obtaintheme('top.htm');?>
<main class="container py-3">
<div class="row">
<?php
@@ -61,7 +61,7 @@
</div>
</div>
</main>
<?php pasterTempletDiy('foot.htm');?>
<?php obtaintheme('foot.htm');?>
<script>
//获得选中文件的文件名
function GetCheckfolderItem() {


+ 2
- 2
src/user/templets/pm-main.htm View File

@@ -13,7 +13,7 @@
<script src="<?php echo $cfg_cmsurl;?>/static/web/js/style.js"></script>
</head>
<body class="body-bg">
<?php pasterTempletDiy('top.htm');?>
<?php obtaintheme('top.htm');?>
<main class="container py-3">
<div class="row">
<?php
@@ -88,7 +88,7 @@
</div>
</div>
</main>
<?php pasterTempletDiy('foot.htm');?>
<?php obtaintheme('foot.htm');?>
<script>
//阅读消息
function ReadMsg(id) {


+ 2
- 2
src/user/templets/reg-new.htm View File

@@ -11,7 +11,7 @@
<script src="<?php echo $cfg_cmsurl;?>/static/web/js/jquery.min.js"></script>
</head>
<body class="body-bg">
<?php pasterTempletDiy('top.htm');?>
<?php obtaintheme('top.htm');?>
<main class="container">
<div class="row">
<div class="col-md-12 text-center">
@@ -54,7 +54,7 @@
</div>
</div>
</main>
<?php pasterTempletDiy('foot.htm');?>
<?php obtaintheme('foot.htm');?>
<script>
//CheckSubmit校验注册提交表单
function CheckSubmit() {


+ 2
- 2
src/user/templets/resetpassword.htm View File

@@ -11,7 +11,7 @@
<script src="<?php echo $cfg_cmsurl;?>/static/web/js/jquery.min.js"></script>
</head>
<body class="body-bg">
<?php pasterTempletDiy('top.htm');?>
<?php obtaintheme('top.htm');?>
<main class="container py-3">
<div class="row">
<div class="col-md-12">
@@ -49,7 +49,7 @@
</div>
</div>
</main>
<?php pasterTempletDiy('foot.htm');?>
<?php obtaintheme('foot.htm');?>
<script>
function changeAuthCode() {
var num = new Date().getTime();


+ 2
- 2
src/user/templets/resetpassword2.htm View File

@@ -11,7 +11,7 @@
<script src="<?php echo $cfg_cmsurl;?>/static/web/js/jquery.min.js"></script>
</head>
<body class="body-bg">
<?php pasterTempletDiy('top.htm');?>
<?php obtaintheme('top.htm');?>
<main class="container py-3">
<div class="row">
<div class="col-md-12">
@@ -46,6 +46,6 @@
</div>
</div>
</main>
<?php pasterTempletDiy('foot.htm');?>
<?php obtaintheme('foot.htm');?>
</body>
</html>

+ 2
- 2
src/user/templets/resetpassword3.htm View File

@@ -11,7 +11,7 @@
<script src="<?php echo $cfg_cmsurl;?>/static/web/js/jquery.min.js"></script>
</head>
<body class="body-bg">
<?php pasterTempletDiy('top.htm');?>
<?php obtaintheme('top.htm');?>
<main class="container py-3">
<div class="row">
<div class="col-md-12">
@@ -40,6 +40,6 @@
</div>
</div>
</main>
<?php pasterTempletDiy('foot.htm');?>
<?php obtaintheme('foot.htm');?>
</body>
</html>

+ 2
- 2
src/user/templets/soft_add.htm View File

@@ -12,7 +12,7 @@
<script src="<?php echo $cfg_cmsurl;?>/static/web/js/user.js"></script>
</head>
<body class="body-bg">
<?php pasterTempletDiy('top.htm');?>
<?php obtaintheme('top.htm');?>
<main class="container py-3">
<div class="row">
<div class="col-md-12">
@@ -184,7 +184,7 @@
</div>
</div>
</main>
<?php pasterTempletDiy('foot.htm');?>
<?php obtaintheme('foot.htm');?>
<script>
var startNum = 2;
function MakeUpload() {


+ 2
- 2
src/user/templets/soft_edit.htm View File

@@ -12,7 +12,7 @@
<script src="<?php echo $cfg_cmsurl;?>/static/web/js/user.js"></script>
</head>
<body class="body-bg">
<?php pasterTempletDiy('top.htm');?>
<?php obtaintheme('top.htm');?>
<main class="container py-3">
<div class="row">
<div class="col-md-12">
@@ -181,7 +181,7 @@
</div>
</div>
</main>
<?php pasterTempletDiy('foot.htm');?>
<?php obtaintheme('foot.htm');?>
<script>
var startNum = 2;
function MakeUpload() {


Loading…
Cancel
Save