Browse Source

fleat: update function

igb 6 days ago
parent
commit
8c79936fb7
3 changed files with 26 additions and 2 deletions
  1. 23 0
      conn.php
  2. 2 2
      get_customer_search.php
  3. 1 0
      panel.php

+ 23 - 0
conn.php

@@ -370,3 +370,26 @@ function htmlspecialcharsFix($input_str)
     return $input_str;
 }
 
+//处理特殊字符
+function htmlspecialcharsAjaxFix($input_str)
+{
+
+    return textUncode($input_str);
+}
+
+if(!function_exists('textDecode')) {
+    function textDecode($str) {
+        return htmlspecialchars_decode($str, ENT_QUOTES);
+    }
+}
+
+
+if(!function_exists('htmlDecode')) {
+    function htmlDecode($str) {
+        return htmlspecialchars_decode($str, ENT_QUOTES);
+    }
+
+}
+
+
+

+ 2 - 2
get_customer_search.php

@@ -23,8 +23,8 @@ if (isset($_GET['search'])) {
     while ($row = mysqli_fetch_assoc($result)) {
         $customers[] = [
             'id' => $row['id'],
-            'cs_company' => htmlspecialcharsFix($row['cs_company']),
-            'cs_code' => htmlspecialcharsFix($row['cs_code'])
+            'cs_company' => htmlspecialcharsAjaxFix($row['cs_company']),
+            'cs_code' => htmlspecialcharsAjaxFix($row['cs_code'])
         ];
     }
     

+ 1 - 0
panel.php

@@ -43,6 +43,7 @@ $stmt->close();
                 <dt><a href="../home.php" target="contentFrame">客户查找</a></dt>
             <?php endif; ?>
             <dt><a href="../customerAdd.php" target="contentFrame">客户录入</a></dt>
+            <dt><a href="relationships.php" target="contentFrame">客户关系</a></dt>
             <dt><a href="../order.php" target="contentFrame">订单管理</a></dt>
             <dt id="myCustomer" class="subnav">我的客户
                 <div class="list-wraper">