diff --git a/src/admin/tags_main.php b/src/admin/tags_main.php
index a2354270..7600c2e5 100644
--- a/src/admin/tags_main.php
+++ b/src/admin/tags_main.php
@@ -33,13 +33,16 @@ if (empty($action)) {
} else if ($action == 'update') {
$tid = (empty($tid) ? 0 : intval($tid));
$count = (empty($count) ? 0 : intval($count));
+ $litpic = (empty($litpic) ? '' : HtmlReplace($litpic, -1));
+ $title = (empty($title) ? '' : HtmlReplace($title, -1));
+ $keywords = (empty($keywords) ? '' : HtmlReplace($keywords, -1));
+ $description = (empty($description) ? '' : HtmlReplace($description, -1));
if (empty($tid)) {
- ShowMsg('请选择需要删除的标签', '-1');
- exit();
+ die('请选择需要更新的标签');
}
- $query = "UPDATE `#@__tagindex` SET `count`='$count' WHERE id='$tid' ";
+ $query = "UPDATE `#@__tagindex` SET `count`='$count',`litpic`='$litpic',`title`='$title',`keywords`='$keywords',`description`='$description' WHERE id='$tid' ";
$dsql->ExecuteNoneQuery($query);
- ShowMsg("成功保存标签点击信息", 'tags_main.php');
+ echo "success";
exit();
} else if ($action == 'delete') {
if (@is_array($ids)) {
diff --git a/src/admin/templets/tags_main.htm b/src/admin/templets/tags_main.htm
index c4ba64b5..a3512e41 100644
--- a/src/admin/templets/tags_main.htm
+++ b/src/admin/templets/tags_main.htm
@@ -65,12 +65,12 @@
{dede:field.id/} |
{dede:sfield.tag/} |
-
-
+
+
|
- |
- |
- |
+ |
+ |
+ |
|
|
@@ -112,54 +112,29 @@
}
}
function UpdateOne(tid) {
- location = "tags_main.php?action=update&count=" + document.getElementById('count' + tid).value + "&tid=" + tid;
- }
- function DeleteOne(tid) {
- location = "tags_main.php?action=delete&ids=" + tid;
- }
- function UpdateKwDes(tid, tag) {
- $.get("tags_main.php?action=get_one&tid=" + tid, function(data) {
- let rs = JSON.parse(data);
- let title = rs.title ? rs.title : "";
- let keywords = rs.keywords ? rs.keywords : "";
- let description = rs.description ? rs.description : "";
- ShowMsg(`
-
-
- `, {
- footer: ``,
- });
- })
- }
- function UpdateKwDesDo(tid, mdlID) {
- let title = $("#iptTitle").val();
- let kw = $("#iptKw").val();
- let des = $("#iptDes").val();
- $.post("tags_main.php?action=set_one", {
- tid: tid,
+ let count = document.getElementById('count' + tid).value;
+ let litpic = document.getElementById('litpic' + tid).value;
+ let title = document.getElementById('title' + tid).value;
+ let keywords = document.getElementById('keywords' + tid).value;
+ let description = document.getElementById('description' + tid).value;
+ $.post("tags_main.php?action=update", {
+ count: count,
+ litpic: litpic,
title: title,
- kw: kw,
- des: des,
+ keywords: keywords,
+ description: description,
+ tid: tid,
}, function(data) {
- let rs = JSON.parse(data);
- if (rs.code === 200) {
+ if (data == "success") {
location.reload();
+ } else {
+ ShowMsg(data);
}
-
});
}
+ function DeleteOne(tid) {
+ location = "tags_main.php?action=delete&ids=" + tid;
+ }