customers.php 54 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187
  1. <?php
  2. require_once('conn.php');
  3. checkLogin("信息管理");
  4. // 辅助函数
  5. function numFormat($str) {
  6. // 移除所有非数字字符
  7. $formatted = preg_replace('/[^0-9]/', '', $str);
  8. return $formatted;
  9. }
  10. // Initialize variables
  11. $urlStr = "";
  12. $act = $_GET['act'] ?? '';
  13. $output = '';
  14. // Process all actions that might need headers
  15. if ($act == "save") {
  16. $isEdit = false;
  17. $id = $_POST['id'] ?? '';
  18. if (!empty($id) && is_numeric($id)) {
  19. $isEdit = true;
  20. }
  21. // Main customer table fields
  22. $cs_code = textEncode($_POST['cs_code'] ?? '');
  23. $cs_company = textEncode($_POST['cs_company'] ?? '');
  24. $cs_belong = intval($_POST['cs_belong'] ?? 0);
  25. $cs_country = intval($_POST['cs_country'] ?? 0);
  26. $cs_from = intval($_POST['cs_from'] ?? 0);
  27. $cs_state = intval($_POST['cs_state'] ?? 0);
  28. $cs_deal = intval($_POST['cs_deal'] ?? 0);
  29. $no_content = htmlEncode($_POST['no_content'] ?? '');
  30. $cs_address = textEncode($_POST['cs_address'] ?? '');
  31. $allowedit = isset($_POST['allowedit']) ? 1 : 0;
  32. // Begin transaction for all database operations
  33. $conn->begin_transaction();
  34. try {
  35. if ($isEdit) {
  36. // Get existing chain info
  37. $sql = "SELECT cs_chain FROM customer WHERE id=$id";
  38. $result = $conn->query($sql);
  39. if ($row = $result->fetch_assoc()) {
  40. $cs_chain = $row['cs_chain'];
  41. $chain_array = explode(',', $cs_chain);
  42. $last_item = end($chain_array);
  43. if ($last_item != $cs_belong) {
  44. $cs_chain .= ",$cs_belong";
  45. }
  46. // Update customer table
  47. $sql = "UPDATE customer SET
  48. cs_code='$cs_code',
  49. cs_company='$cs_company',
  50. cs_belong=$cs_belong,
  51. cs_country=$cs_country,
  52. cs_from=$cs_from,
  53. cs_state=$cs_state,
  54. cs_deal=$cs_deal,
  55. cs_note='$no_content',
  56. cs_address='$cs_address',
  57. allowedit=$allowedit,
  58. cs_chain='$cs_chain',
  59. cs_updatetime=NOW()
  60. WHERE id=$id";
  61. $conn->query($sql);
  62. // Delete existing contacts to replace with new ones
  63. $sql = "DELETE FROM customer_contact WHERE customer_id=$id";
  64. $conn->query($sql);
  65. } else {
  66. throw new Exception('不存在该客户');
  67. }
  68. } else {
  69. // Insert new customer
  70. $sql = "INSERT INTO customer (
  71. cs_code, cs_company, cs_belong, cs_country, cs_from,
  72. cs_state, cs_deal, cs_note, cs_address,
  73. allowedit, cs_chain, cs_addtime, cs_updatetime
  74. ) VALUES (
  75. '$cs_code', '$cs_company', $cs_belong, $cs_country, $cs_from,
  76. $cs_state, $cs_deal, '$no_content', '$cs_address',
  77. $allowedit, '$cs_belong', NOW(), NOW()
  78. )";
  79. $conn->query($sql);
  80. $id = $conn->insert_id;
  81. }
  82. // Process contacts array
  83. if (isset($_POST['contact']) && is_array($_POST['contact'])) {
  84. foreach ($_POST['contact'] as $contact) {
  85. if (empty($contact['contact_name'])) continue;
  86. $contact_name = textEncode($contact['contact_name']);
  87. // Initialize arrays for contact methods
  88. $methods = ['tel', 'email', 'whatsapp', 'wechat', 'linkedin', 'facebook', 'alibaba'];
  89. $fields = ['customer_id', 'contact_name'];
  90. $values = [$id, "'".$conn->real_escape_string($contact_name)."'"];
  91. // Process each contact method (up to 3 entries each)
  92. foreach ($methods as $method) {
  93. for ($i = 1; $i <= 3; $i++) {
  94. $field_base = $method . '_' . $i;
  95. $value = $contact[$field_base] ?? '';
  96. $escaped_value = $conn->real_escape_string(textEncode($value));
  97. $fields[] = $field_base;
  98. $values[] = "'$escaped_value'";
  99. // Add format field for tel and whatsapp
  100. if ($method == 'tel' || $method == 'whatsapp') {
  101. $format_value = numFormat($value);
  102. $fields[] = $field_base . '_format';
  103. $values[] = "'".$conn->real_escape_string($format_value)."'";
  104. }
  105. // Add backup field
  106. $bu_value = $contact[$field_base . '_bu'] ?? $value;
  107. $escaped_bu_value = $conn->real_escape_string(textEncode($bu_value));
  108. $fields[] = $field_base . '_bu';
  109. $values[] = "'$escaped_bu_value'";
  110. }
  111. }
  112. // Create and execute insert statement for contact
  113. $sql = "INSERT INTO customer_contact (" . implode(', ', $fields) . ", created_at, updated_at)
  114. VALUES (" . implode(', ', $values) . ", NOW(), NOW())";
  115. $conn->query($sql);
  116. }
  117. }
  118. // Commit transaction
  119. $conn->commit();
  120. // Redirect after successful save
  121. $page = $_GET['Page'] ?? '';
  122. $keys = urlencode($_GET['Keys'] ?? '');
  123. header("Location: ?keys=$keys&Page=$page$urlStr");
  124. exit;
  125. } catch (Exception $e) {
  126. // Rollback on failure
  127. $conn->rollback();
  128. $output = "<script>alert('保存失败: " . $e->getMessage() . "');history.back();</script>";
  129. }
  130. }
  131. // If we have output from processing, we'll show it instead of the normal page
  132. if (!empty($output)) {
  133. echo $output;
  134. exit;
  135. }
  136. ?>
  137. <!DOCTYPE html>
  138. <html xmlns="http://www.w3.org/1999/xhtml">
  139. <head>
  140. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  141. <title>管理区域</title>
  142. <link rel="stylesheet" href="css/common.css" type="text/css" />
  143. <script language="javascript" src="js/jquery-1.7.2.min.js"></script>
  144. <script type="text/javascript" src="js/js.js"></script>
  145. <script type="text/javascript" src="xheditor-1.1.9/xheditor-1.1.9-zh-cn.min.js"></script>
  146. <script>
  147. $(document).ready(function(){
  148. $('.txt2').xheditor({
  149. tools:'full',
  150. hoverExecDelay:-1,
  151. urlBase:'system/',
  152. upLinkUrl:"upload.php",
  153. upLinkExt:"zip,rar,txt,pdf",
  154. upImgUrl:"upload.php",
  155. upImgExt:"jpg,jpeg,gif,png",
  156. upFlashUrl:"upload.php",
  157. upFlashExt:"swf",
  158. upMediaUrl:"upload.php",
  159. upMediaExt:"wmv,avi,wma,mp3,mid"
  160. });
  161. // Remove contact
  162. $(document).on('click', '.remove-contact-btn', function() {
  163. var contactForm = $(this).closest('.contact-form');
  164. contactForm.remove();
  165. // Renumber remaining contacts
  166. $('#contacts-container .contact-form').each(function(index) {
  167. $(this).find('h3').text('联系人 #' + (index + 1));
  168. });
  169. });
  170. // Add contact form
  171. $('.add-contact-btn').click(function() {
  172. var contactsContainer = $('#contacts-container');
  173. var contactIndex = contactsContainer.children('.contact-form').length;
  174. var contactForm = `
  175. <div class="contact-form" id="contact-form-${contactIndex}">
  176. <div class="contact-header">
  177. <button type="button" class="remove-contact-btn" data-index="${contactIndex}">删除</button>
  178. <h3>联系人 #${contactIndex + 1}</h3>
  179. </div>
  180. <input type="hidden" name="contact[${contactIndex}][id]" value="">
  181. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="contact-table">
  182. <tr>
  183. <th width="8%">联系人</th>
  184. <td><input type="text" name="contact[${contactIndex}][contact_name]" class="txt1" placeholder="联系人姓名"/></td>
  185. </tr>
  186. </table>
  187. <div class="contact-methods-container" id="contact-methods-${contactIndex}">
  188. <!-- Contact methods will be added here -->
  189. </div>
  190. <button type="button" class="add-method-btn" data-contact-index="${contactIndex}">添加联系方式</button>
  191. </div>
  192. `;
  193. contactsContainer.append(contactForm);
  194. });
  195. // Add contact method
  196. $(document).on('click', '.add-method-btn', function() {
  197. var contactIndex = $(this).data('contact-index');
  198. var methodsContainer = $('#contact-methods-' + contactIndex);
  199. // Count existing methods by type
  200. var methodCounts = {};
  201. methodsContainer.find('select.method-select').each(function() {
  202. var type = $(this).val();
  203. if (type) {
  204. methodCounts[type] = (methodCounts[type] || 0) + 1;
  205. }
  206. });
  207. var methodRow = `
  208. <div class="contact-method-row">
  209. <select class="method-select" onchange="updateMethodSelectAndPlaceholder(this)">
  210. <option value="">请选择联系方式</option>
  211. <option value="tel" ${(methodCounts.tel || 0) >= 3 ? 'disabled' : ''}>电话</option>
  212. <option value="wechat" ${(methodCounts.wechat || 0) >= 3 ? 'disabled' : ''}>微信</option>
  213. <option value="whatsapp" ${(methodCounts.whatsapp || 0) >= 3 ? 'disabled' : ''}>WhatsApp</option>
  214. <option value="email" ${(methodCounts.email || 0) >= 3 ? 'disabled' : ''}>邮箱</option>
  215. <option value="linkedin" ${(methodCounts.linkedin || 0) >= 3 ? 'disabled' : ''}>领英</option>
  216. <option value="facebook" ${(methodCounts.facebook || 0) >= 3 ? 'disabled' : ''}>Facebook</option>
  217. <option value="alibaba" ${(methodCounts.alibaba || 0) >= 3 ? 'disabled' : ''}>阿里巴巴</option>
  218. </select>
  219. <input type="text" class="txt1 method-input" style="width:60%;" placeholder="请选择联系方式类型">
  220. <button type="button" class="remove-method-btn">删除</button>
  221. </div>
  222. `;
  223. methodsContainer.append(methodRow);
  224. updateMethodFields(methodsContainer.find('.contact-method-row:last-child'));
  225. });
  226. // Remove contact method
  227. $(document).on('click', '.remove-method-btn', function() {
  228. var methodRow = $(this).closest('.contact-method-row');
  229. var contactIndex = methodRow.closest('.contact-form').attr('id').split('-')[2];
  230. var type = methodRow.find('select.method-select').val();
  231. methodRow.remove();
  232. // Update available options in other selects
  233. updateAvailableMethodTypes(contactIndex);
  234. });
  235. });
  236. // Update method fields based on selection
  237. function updateMethodFields(methodRow) {
  238. var select = methodRow.find('select.method-select');
  239. var input = methodRow.find('input.method-input');
  240. var contactForm = methodRow.closest('.contact-form');
  241. var contactIndex = contactForm.attr('id').split('-')[2];
  242. var type = select.val();
  243. if (!type) return;
  244. // Count existing methods of this type
  245. var count = 1;
  246. contactForm.find('select.method-select').each(function() {
  247. if ($(this).val() === type && $(this)[0] !== select[0]) {
  248. count++;
  249. }
  250. });
  251. // Update field names
  252. select.attr('name', `contact[${contactIndex}][${type}_${count}]`);
  253. input.attr('name', `contact[${contactIndex}][${type}_${count}]`);
  254. // Add format field for tel and whatsapp
  255. if (type === 'tel' || type === 'whatsapp') {
  256. if (!methodRow.find('.format-input').length) {
  257. input.after(`<input type="hidden" class="format-input" name="contact[${contactIndex}][${type}_${count}_format]">`);
  258. }
  259. }
  260. // Add backup field
  261. if (!methodRow.find('.backup-input').length) {
  262. methodRow.append(`<input type="hidden" class="backup-input" name="contact[${contactIndex}][${type}_${count}_bu]">`);
  263. }
  264. }
  265. // Update available method types for a contact
  266. function updateAvailableMethodTypes(contactIndex) {
  267. var methodsContainer = $('#contact-methods-' + contactIndex);
  268. // Count methods by type
  269. var methodCounts = {};
  270. methodsContainer.find('select.method-select').each(function() {
  271. var type = $(this).val();
  272. if (type) {
  273. methodCounts[type] = (methodCounts[type] || 0) + 1;
  274. }
  275. });
  276. // Update all selects in this contact
  277. methodsContainer.find('select.method-select').each(function() {
  278. var currentValue = $(this).val();
  279. $(this).find('option').each(function() {
  280. var optionValue = $(this).val();
  281. if (optionValue && optionValue !== currentValue) {
  282. $(this).prop('disabled', (methodCounts[optionValue] || 0) >= 3);
  283. }
  284. });
  285. });
  286. }
  287. // Update placeholder and handle method fields
  288. function updateMethodSelectAndPlaceholder(selectElement) {
  289. var methodRow = $(selectElement).closest('.contact-method-row');
  290. updateMethodPlaceholder(selectElement);
  291. updateMethodFields(methodRow);
  292. var contactIndex = methodRow.closest('.contact-form').attr('id').split('-')[2];
  293. updateAvailableMethodTypes(contactIndex);
  294. }
  295. function updateMethodPlaceholder(selectElement) {
  296. var placeholder = "";
  297. var value = $(selectElement).val();
  298. switch(value) {
  299. case "tel":
  300. placeholder = "电话格式:区号+号码 如:+86 15012345678";
  301. break;
  302. case "wechat":
  303. placeholder = "微信";
  304. break;
  305. case "whatsapp":
  306. placeholder = "Whatsapp 格式:区号+号码 如:+86 15012345678";
  307. break;
  308. case "email":
  309. placeholder = "邮件";
  310. break;
  311. case "linkedin":
  312. placeholder = "领英链接";
  313. break;
  314. case "facebook":
  315. placeholder = "Facebook";
  316. break;
  317. case "alibaba":
  318. placeholder = "阿里巴巴";
  319. break;
  320. default:
  321. placeholder = "请选择联系方式类型";
  322. }
  323. $(selectElement).next('.method-input').attr('placeholder', placeholder);
  324. }
  325. </script>
  326. <style>
  327. .contact-form {
  328. margin-bottom: 10px;
  329. padding: 8px;
  330. background-color: #FFFFFF;
  331. }
  332. .contact-header {
  333. display: flex;
  334. align-items: center;
  335. margin-bottom: 8px;
  336. gap: 10px;
  337. }
  338. .contact-header h3 {
  339. margin: 0;
  340. order: 2;
  341. flex-grow: 1;
  342. }
  343. .remove-contact-btn {
  344. background-color: #f44336;
  345. color: white;
  346. border: none;
  347. padding: 4px 8px;
  348. cursor: pointer;
  349. order: 1;
  350. }
  351. .add-contact-btn {
  352. background-color: #4CAF50;
  353. color: white;
  354. border: none;
  355. padding: 6px 12px;
  356. margin-bottom: 10px;
  357. cursor: pointer;
  358. }
  359. .contact-methods-container {
  360. margin-top: 8px;
  361. }
  362. .contact-method-row {
  363. margin-bottom: 6px;
  364. padding: 6px;
  365. border: 1px solid #eee;
  366. display: flex;
  367. align-items: center;
  368. gap: 8px;
  369. }
  370. .add-method-btn {
  371. background-color: #2196F3;
  372. color: white;
  373. border: none;
  374. padding: 4px 8px;
  375. margin-top: 4px;
  376. cursor: pointer;
  377. }
  378. .remove-method-btn {
  379. background-color: #f44336;
  380. color: white;
  381. border: none;
  382. padding: 2px 4px;
  383. cursor: pointer;
  384. }
  385. .method-select {
  386. margin-right: 8px;
  387. padding: 3px;
  388. }
  389. .contact-table {
  390. margin-bottom: 6px;
  391. }
  392. .contact-table td, .contact-table th {
  393. padding: 4px 6px;
  394. }
  395. </style>
  396. </head>
  397. <body>
  398. <div id="man_zone">
  399. <?php
  400. // 编辑操作
  401. if ($act == "edit" || $act == "add") {
  402. $id = $_GET['id'] ?? '';
  403. $isEdit = false;
  404. // Initialize variables
  405. $cs_code = $cs_company = $cs_address = $cs_addtime = $cs_updatetime = $cs_note = '';
  406. $cs_belong = $cs_country = $cs_from = $cs_state = $cs_deal = $allowedit = $cs_type = $cs_belongclient = 0;
  407. $contacts = [];
  408. if (!empty($id) && is_numeric($id)) {
  409. $isEdit = true;
  410. // Join customer and customer_contact tables
  411. $sql = "SELECT c.*, cc.* FROM customer c
  412. LEFT JOIN customer_contact cc ON c.id = cc.customer_id
  413. WHERE c.id = $id";
  414. $result = $conn->query($sql);
  415. if ($row = $result->fetch_assoc()) {
  416. // Basic customer info
  417. $cs_code = textUncode($row['cs_code']);
  418. $cs_company = textUncode($row['cs_company']);
  419. $cs_country = $row['cs_country'];
  420. $cs_from = $row['cs_from'];
  421. $cs_address = textUncode($row['cs_address']);
  422. $cs_addtime = $row['cs_addtime'];
  423. $cs_updatetime = $row['cs_updatetime'];
  424. $cs_belong = $row['cs_belong'];
  425. $cs_state = $row['cs_state'];
  426. $cs_deal = $row['cs_deal'];
  427. $cs_note = htmlUncode($row['cs_note']);
  428. $allowedit = $row['allowedit'];
  429. $cs_type = $row['cs_type'];
  430. $cs_belongclient = $row['cs_belongclient'];
  431. // Get all contacts for this customer
  432. $contactSql = "SELECT * FROM customer_contact WHERE customer_id = $id";
  433. $contactResult = $conn->query($contactSql);
  434. while ($contactRow = $contactResult->fetch_assoc()) {
  435. $contact = [
  436. 'id' => $contactRow['id'],
  437. 'contact_name' => textUncode($contactRow['contact_name']),
  438. 'created_at' => $contactRow['created_at'],
  439. 'updated_at' => $contactRow['updated_at']
  440. ];
  441. // Process each contact method type (up to 3 entries each)
  442. $methodTypes = ['tel', 'email', 'whatsapp', 'wechat', 'linkedin', 'facebook', 'alibaba'];
  443. foreach ($methodTypes as $type) {
  444. for ($i = 1; $i <= 3; $i++) {
  445. $fieldBase = $type . '_' . $i;
  446. $contact[$fieldBase] = textUncode($contactRow[$fieldBase]);
  447. if ($type == 'tel' || $type == 'whatsapp') {
  448. $contact[$fieldBase . '_format'] = textUncode($contactRow[$fieldBase . '_format']);
  449. }
  450. $contact[$fieldBase . '_bu'] = textUncode($contactRow[$fieldBase . '_bu']);
  451. }
  452. }
  453. $contacts[] = $contact;
  454. }
  455. }
  456. }
  457. $page = $_GET['Page'] ?? '';
  458. $keys = urlencode($_GET['Keys'] ?? '');
  459. $ord = urlencode($_GET['Ord'] ?? '');
  460. $hrefstr = "?keys=$keys&Page=$page&Ord=$ord";
  461. ?>
  462. <form name="form1" method="post" action="<?php echo $hrefstr; ?>&act=save">
  463. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  464. <tbody>
  465. <tr>
  466. <th width="8%">客户编号</th>
  467. <td><input type="text" id="cs_code" name="cs_code" value="<?php echo $cs_code; ?>" class="txt1" />
  468. <input type="hidden" name="id" value="<?php echo $id; ?>" /></td>
  469. </tr>
  470. <tr>
  471. <th width="8%">公司名称</th>
  472. <td><input type="text" id="cs_company" name="cs_company" value="<?php echo $cs_company; ?>" class="txt1" /></td>
  473. </tr>
  474. <tr>
  475. <th width="8%">所属业务</th>
  476. <td>
  477. <select name="cs_belong">
  478. <option value="0">请选择</option>
  479. <?php
  480. $sql = "SELECT id,em_user FROM employee";
  481. $result = $conn->query($sql);
  482. while($row = $result->fetch_assoc()) {
  483. $selected = ($row['id'] == $cs_belong) ? ' selected="selected"' : '';
  484. echo "<option value=\"{$row['id']}\"$selected>{$row['em_user']}</option>";
  485. }
  486. ?>
  487. </select>
  488. </td>
  489. </tr>
  490. <tr>
  491. <th width="8%">国家</th>
  492. <td>
  493. <select name="cs_country">
  494. <option value="0">请选择</option>
  495. <?php
  496. $sql = "SELECT id,countryCode,countryName FROM country";
  497. $result = $conn->query($sql);
  498. while($row = $result->fetch_assoc()) {
  499. $selected = ($row['id'] == $cs_country) ? ' selected="selected"' : '';
  500. echo "<option value=\"{$row['id']}\"$selected>{$row['countryName']}</option>";
  501. }
  502. ?>
  503. </select>
  504. </td>
  505. </tr>
  506. <tr>
  507. <th width="8%">来源</th>
  508. <td>
  509. <select name="cs_from">
  510. <option value="0">请选择</option>
  511. <?php
  512. $sql = "SELECT id,ch_name FROM qudao";
  513. $result = $conn->query($sql);
  514. while($row = $result->fetch_assoc()) {
  515. $selected = ($row['id'] == $cs_from) ? ' selected="selected"' : '';
  516. echo "<option value=\"{$row['id']}\"$selected>{$row['ch_name']}</option>";
  517. }
  518. ?>
  519. </select>
  520. </td>
  521. </tr>
  522. <tr>
  523. <th width="8%">录入时间</th>
  524. <td><?php echo $cs_addtime; ?></td>
  525. </tr>
  526. <tr>
  527. <th width="8%">更新时间</th>
  528. <td><?php echo $cs_updatetime; ?></td>
  529. </tr>
  530. <tr>
  531. <th width="8%" valign="top">联系人信息</th>
  532. <td>
  533. <button type="button" class="add-contact-btn">添加联系人</button>
  534. <div id="contacts-container">
  535. <?php if (!empty($contacts)): ?>
  536. <?php foreach ($contacts as $index => $contact): ?>
  537. <div class="contact-form" id="contact-form-<?php echo $index; ?>">
  538. <div class="contact-header">
  539. <button type="button" class="remove-contact-btn" data-index="<?php echo $index; ?>">删除</button>
  540. <h3>联系人 #<?php echo $index + 1; ?></h3>
  541. </div>
  542. <input type="hidden" name="contact[<?php echo $index; ?>][id]" value="<?php echo $contact['id']; ?>">
  543. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="contact-table">
  544. <tr>
  545. <th width="8%">联系人</th>
  546. <td><input type="text" name="contact[<?php echo $index; ?>][contact_name]" value="<?php echo htmlspecialchars($contact['contact_name']); ?>" class="txt1" placeholder="联系人姓名"/></td>
  547. </tr>
  548. </table>
  549. <div class="contact-methods-container" id="contact-methods-<?php echo $index; ?>">
  550. <?php
  551. $methodTypes = [
  552. 'tel' => '电话',
  553. 'wechat' => '微信',
  554. 'whatsapp' => 'WhatsApp',
  555. 'email' => '邮箱',
  556. 'linkedin' => '领英',
  557. 'facebook' => 'Facebook',
  558. 'alibaba' => '阿里巴巴'
  559. ];
  560. foreach ($methodTypes as $type => $label) {
  561. for ($i = 1; $i <= 3; $i++) {
  562. $fieldName = $type . '_' . $i;
  563. if (!empty($contact[$fieldName])) {
  564. echo '<div class="contact-method-row">';
  565. echo '<select class="method-select" name="contact[' . $index . '][' . $fieldName . ']" onchange="updateMethodSelectAndPlaceholder(this)">';
  566. echo '<option value="">请选择联系方式</option>';
  567. foreach ($methodTypes as $optionType => $optionLabel) {
  568. $selected = ($optionType === $type) ? 'selected' : '';
  569. echo '<option value="' . $optionType . '" ' . $selected . '>' . $optionLabel . '</option>';
  570. }
  571. echo '</select>';
  572. echo '<input type="text" class="txt1 method-input" style="width:60%;" name="contact[' . $index . '][' . $fieldName . ']" value="' . htmlspecialchars($contact[$fieldName]) . '">';
  573. if ($type === 'tel' || $type === 'whatsapp') {
  574. echo '<input type="hidden" class="format-input" name="contact[' . $index . '][' . $fieldName . '_format]" value="' . htmlspecialchars($contact[$fieldName . '_format']) . '">';
  575. }
  576. echo '<input type="hidden" class="backup-input" name="contact[' . $index . '][' . $fieldName . '_bu]" value="' . htmlspecialchars($contact[$fieldName . '_bu']) . '">';
  577. echo '</div>';
  578. }
  579. }
  580. }
  581. ?>
  582. </div>
  583. <button type="button" class="add-method-btn" data-contact-index="<?php echo $index; ?>">添加联系方式</button>
  584. </div>
  585. <?php endforeach; ?>
  586. <?php else: ?>
  587. <div class="contact-form" id="contact-form-0">
  588. <div class="contact-header">
  589. <button type="button" class="remove-contact-btn" data-index="0">删除</button>
  590. <h3>联系人 #1</h3>
  591. </div>
  592. <input type="hidden" name="contact[0][id]" value="">
  593. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="contact-table">
  594. <tr>
  595. <th width="8%">联系人</th>
  596. <td><input type="text" name="contact[0][contact_name]" class="txt1" placeholder="联系人姓名"/></td>
  597. </tr>
  598. </table>
  599. <div class="contact-methods-container" id="contact-methods-0">
  600. <!-- Contact methods will be added here -->
  601. </div>
  602. <button type="button" class="add-method-btn" data-contact-index="0">添加联系方式</button>
  603. </div>
  604. <?php endif; ?>
  605. </div>
  606. </td>
  607. </tr>
  608. <tr>
  609. <th width="8%">地址</th>
  610. <td><input type="text" id="cs_address" name="cs_address" value="<?php echo $cs_address; ?>" class="txt1" /></td>
  611. </tr>
  612. <tr>
  613. <th width="8%">标签</th>
  614. <td>
  615. <?php
  616. if($isEdit) {
  617. $sql = "SELECT id,tagName FROM tagtable WHERE customerId = " . (int)$id;
  618. $result = $conn->query($sql);
  619. while($row = $result->fetch_assoc()) {
  620. echo htmlspecialchars($row['tagName']) . ',';
  621. }
  622. }
  623. ?>
  624. </td>
  625. </tr>
  626. <tr>
  627. <th width="8%">状态</th>
  628. <td>
  629. <label><input type="radio" name="cs_state" value="1" <?php if($cs_state==1) echo 'checked="checked"'; ?> />有效</label>
  630. <label><input type="radio" name="cs_state" value="0" <?php if($cs_state!=1) echo 'checked="checked"'; ?> />不再跟进</label>
  631. </td>
  632. </tr>
  633. <tr>
  634. <th width="8%">是否误报</th>
  635. <td>
  636. <label><input type="radio" name="allowedit" value="1" <?php if($allowedit==1) echo 'checked="checked"'; ?> />审核通过</label>
  637. <label><input type="radio" name="allowedit" value="0" <?php if($allowedit!=1) echo 'checked="checked"'; ?> />一般处理</label>
  638. </td>
  639. </tr>
  640. <tr>
  641. <th width="8%">是否成交</th>
  642. <td>
  643. <label><input type="radio" name="cs_deal" value="3" <?php if($cs_deal==3) echo 'checked="checked"'; ?> />成交</label>
  644. <label><input type="radio" name="cs_deal" value="2" <?php if($cs_deal==2) echo 'checked="checked"'; ?> />明确需求</label>
  645. <label><input type="radio" name="cs_deal" value="1" <?php if($cs_deal==1) echo 'checked="checked"'; ?> />背景调查</label>
  646. <label><input type="radio" name="cs_deal" value="0" <?php if($cs_deal==0) echo 'checked="checked"'; ?> />无响应</label>
  647. </td>
  648. </tr>
  649. <tr>
  650. <th>内容</th>
  651. <td><textarea id="no_content" name="no_content" class="txt2"><?php echo $cs_note; ?></textarea></td>
  652. </tr>
  653. <tr>
  654. <th></th>
  655. <td>
  656. <input type="submit" name="save" id="save" value="确定" class="btn1" />
  657. <input type="reset" name="save" id="save" value="重置" class="btn1" />
  658. <input type="button" value="返回" class="btn1" onClick="location.href='<?php echo $hrefstr; ?>'" />
  659. </td>
  660. </tr>
  661. </tbody>
  662. </table>
  663. </form>
  664. <?php
  665. exit;
  666. }
  667. // 批量操作
  668. if ($act == "postchk") {
  669. $keys = urlencode($_GET['Keys'] ?? '');
  670. $page = $_GET['Page'] ?? '';
  671. $chkact = $_POST['chkact'] ?? '';
  672. if (isset($_POST['chkbox']) && is_array($_POST['chkbox'])) {
  673. $ids = array_map('intval', $_POST['chkbox']);
  674. $idList = implode(',', $ids);
  675. if (!empty($idList)) {
  676. switch($chkact) {
  677. case "0":
  678. case "1":
  679. $sql = "UPDATE customer SET cs_state=$chkact WHERE id IN ($idList)";
  680. break;
  681. default:
  682. // In delete case, let's use transactions to ensure both tables are updated
  683. $conn->begin_transaction();
  684. try {
  685. // Delete from customer_contact first (due to foreign key constraint)
  686. $sql = "DELETE FROM customer_contact WHERE customer_id IN ($idList)";
  687. $conn->query($sql);
  688. // Then delete from customer table
  689. $sql = "DELETE FROM customer WHERE id IN ($idList)";
  690. $conn->query($sql);
  691. $conn->commit();
  692. } catch (Exception $e) {
  693. $conn->rollback();
  694. echo "<script>alert('删除失败: " . $e->getMessage() . "');</script>";
  695. }
  696. }
  697. if ($chkact == "0" || $chkact == "1") {
  698. $conn->query($sql);
  699. }
  700. }
  701. }
  702. header("Location: ?Keys=$keys&Page=$page");
  703. exit;
  704. }
  705. // 主列表页面
  706. $fliterQudao = $_GET['fliterQudao'] ?? '';
  707. $fliterDeal = $_GET['fliterDeal'] ?? '';
  708. $fliterTeam = $_GET['fliterTeam'] ?? '';
  709. $fliterContact = $_GET['fliterContact'] ?? '';
  710. $fliterEmployee = $_GET['fliterEmployee'] ?? '';
  711. $filterStr = "";
  712. $urlStr = "";
  713. if (!empty($fliterQudao)) {
  714. $filterStr .= " AND c.cs_from=" . intval($fliterQudao);
  715. $urlStr .= "&fliterQudao=$fliterQudao";
  716. }
  717. if (!empty($fliterDeal)) {
  718. $filterStr .= " AND c.cs_deal=" . intval($fliterDeal);
  719. $urlStr .= "&fliterDeal=$fliterDeal";
  720. }
  721. if (!empty($fliterTeam)) {
  722. $teamId = intval($fliterTeam);
  723. $filterStr .= " AND (c.cs_belong=$teamId OR c.cs_belong IN (SELECT id FROM employee WHERE em_role=$teamId))";
  724. $urlStr .= "&fliterTeam=$fliterTeam";
  725. }
  726. if (!empty($fliterEmployee)) {
  727. $filterStr .= " AND c.cs_belong=" . intval($fliterEmployee);
  728. $urlStr .= "&fliterEmployee=$fliterEmployee";
  729. }
  730. if (!empty($fliterContact)) {
  731. switch($fliterContact) {
  732. case "1": $filterStr .= " AND (cc.tel_1 != '' OR cc.tel_2 != '' OR cc.tel_3 != '')"; break;
  733. case "2": $filterStr .= " AND (cc.wechat_1 != '' OR cc.wechat_2 != '' OR cc.wechat_3 != '')"; break;
  734. case "3": $filterStr .= " AND (cc.whatsapp_1 != '' OR cc.whatsapp_2 != '' OR cc.whatsapp_3 != '')"; break;
  735. case "4": $filterStr .= " AND (cc.email_1 != '' OR cc.email_2 != '' OR cc.email_3 != '')"; break;
  736. case "5": $filterStr .= " AND (cc.linkedin_1 != '' OR cc.linkedin_2 != '' OR cc.linkedin_3 != '')"; break;
  737. case "6": $filterStr .= " AND (cc.facebook_1 != '' OR cc.facebook_2 != '' OR cc.facebook_3 != '')"; break;
  738. default: $filterStr .= " AND (cc.alibaba_1 != '' OR cc.alibaba_2 != '' OR cc.alibaba_3 != '')";
  739. }
  740. $urlStr .= "&fliterContact=$fliterContact";
  741. }
  742. $keys = $_GET['Keys'] ?? '';
  743. $keyscode = textEncode($keys);
  744. $page = $_GET['Page'] ?? '';
  745. $ord = $_GET['Ord'] ?? '';
  746. $sql = "SELECT c.id, c.cs_code, c.cs_company, c.cs_country, c.cs_address,
  747. c.cs_from, c.cs_deal, c.cs_addtime, c.cs_updatetime, c.cs_belong, c.cs_note,
  748. c.cs_claimFrom, c.cs_chain, c.cs_dealdate,
  749. cc.contact_name as cs_name,
  750. cc.tel_1 as cs_tel, cc.email_1 as cs_email,
  751. cc.whatsapp_1 as cs_whatsapp, cc.wechat_1 as cs_wechat,
  752. cc.linkedin_1 as cs_linkedin, cc.facebook_1 as cs_facebook,
  753. cc.alibaba_1 as cs_alibaba
  754. FROM customer c
  755. LEFT JOIN customer_contact cc ON c.id = cc.customer_id
  756. WHERE (c.cs_code LIKE '%".$conn->real_escape_string($keyscode)."%'
  757. OR cc.contact_name LIKE '%".$conn->real_escape_string($keyscode)."%'
  758. OR cc.tel_1 LIKE '%".$conn->real_escape_string($keyscode)."%'
  759. OR cc.tel_2 LIKE '%".$conn->real_escape_string($keyscode)."%'
  760. OR cc.tel_3 LIKE '%".$conn->real_escape_string($keyscode)."%'
  761. OR cc.wechat_1 LIKE '%".$conn->real_escape_string($keyscode)."%'
  762. OR cc.wechat_2 LIKE '%".$conn->real_escape_string($keyscode)."%'
  763. OR cc.wechat_3 LIKE '%".$conn->real_escape_string($keyscode)."%'
  764. OR cc.alibaba_1 LIKE '%".$conn->real_escape_string($keyscode)."%'
  765. OR cc.alibaba_2 LIKE '%".$conn->real_escape_string($keyscode)."%'
  766. OR cc.alibaba_3 LIKE '%".$conn->real_escape_string($keyscode)."%'
  767. OR cc.whatsapp_1_format LIKE '%".$conn->real_escape_string($keyscode)."%'
  768. OR cc.whatsapp_2_format LIKE '%".$conn->real_escape_string($keyscode)."%'
  769. OR cc.whatsapp_3_format LIKE '%".$conn->real_escape_string($keyscode)."%'
  770. OR cc.email_1 LIKE '%".$conn->real_escape_string($keyscode)."%'
  771. OR cc.email_2 LIKE '%".$conn->real_escape_string($keyscode)."%'
  772. OR cc.email_3 LIKE '%".$conn->real_escape_string($keyscode)."%')
  773. $filterStr
  774. ORDER BY c.cs_updatetime DESC";
  775. // Execute query to count total records
  776. $countResult = $conn->query($sql);
  777. if (!$countResult) {
  778. die("查询失败: " . $conn->error . "<br>SQL: " . $sql);
  779. }
  780. $totalRecords = $countResult->num_rows;
  781. $countResult->close(); // 关闭第一个结果集
  782. // Create pagination variables
  783. $pageSize = 18;
  784. $totalPages = ceil($totalRecords / $pageSize);
  785. if ($totalPages < 1) $totalPages = 1; // 确保至少有一页,即使没有结果
  786. if (empty($page)) $page = 1;
  787. if ($page == 'end') $page = $totalPages;
  788. if (!is_numeric($page) || $page < 1) $page = 1;
  789. $page = (int)$page;
  790. if ($page > $totalPages) $page = $totalPages;
  791. // Apply pagination
  792. $offset = ($page - 1) * $pageSize;
  793. if ($offset < 0) $offset = 0; // 确保偏移量不为负数
  794. $sql_paginated = $sql . " LIMIT $offset, $pageSize"; // 使用新变量,不修改原始SQL
  795. // Execute the paginated query
  796. $result = $conn->query($sql_paginated);
  797. if (!$result) {
  798. die("分页查询失败: " . $conn->error . "<br>SQL: " . $sql_paginated);
  799. }
  800. $tempNum = $pageSize * ($page - 1);
  801. ?>
  802. <form id="form1" method="post" action="?act=postchk&Keys=<?php echo $keys; ?>&Page=<?php echo $page; ?>" onSubmit="return false">
  803. <div class="fastSelect clear">
  804. <H1>搜索条件</H1>
  805. <div class="selectItem">
  806. <label>来源渠道</label>
  807. <select name="fliterQudao" class="filterSearch">
  808. <option value="">请选择渠道</option>
  809. <?php
  810. $sql_temp = "SELECT id,ch_name FROM qudao";
  811. $qudaoResult = $conn->query($sql_temp);
  812. while($row = $qudaoResult->fetch_assoc()) {
  813. $selected = ($fliterQudao == $row['id']) ? ' selected="selected"' : '';
  814. echo "<option value=\"{$row['id']}\"$selected>{$row['ch_name']}</option>";
  815. }
  816. ?>
  817. </select>
  818. </div>
  819. <div class="selectItem">
  820. <label>是否成交</label>
  821. <select name="fliterDeal" class="filterSearch">
  822. <option value="">请选择</option>
  823. <option value="3" <?php if($fliterDeal=="3") echo 'selected="selected"'; ?>>已成交</option>
  824. <option value="2" <?php if($fliterDeal=="2") echo 'selected="selected"'; ?>>明确需求</option>
  825. <option value="1" <?php if($fliterDeal=="1") echo 'selected="selected"'; ?>>背景调查</option>
  826. <option value="0" <?php if($fliterDeal=="0") echo 'selected="selected"'; ?>>无响应</option>
  827. </select>
  828. </div>
  829. <div class="selectItem">
  830. <label>按组</label>
  831. <select name="fliterTeam" class="filterSearch">
  832. <option value="">请选择</option>
  833. <?php
  834. $sql_temp = "SELECT id,em_user FROM employee WHERE em_role=0";
  835. $teamResult = $conn->query($sql_temp);
  836. while($row = $teamResult->fetch_assoc()) {
  837. $selected = ($fliterTeam == $row['id']) ? ' selected="selected"' : '';
  838. echo "<option value=\"{$row['id']}\"$selected>{$row['em_user']}组</option>";
  839. }
  840. ?>
  841. </select>
  842. </div>
  843. <div class="selectItem">
  844. <label>业务</label>
  845. <select name="fliterEmployee" class="filterSearch">
  846. <option value="">请选择</option>
  847. <?php
  848. $sql_temp = "SELECT id,em_user FROM employee";
  849. $empResult = $conn->query($sql_temp);
  850. while($row = $empResult->fetch_assoc()) {
  851. $selected = ($fliterEmployee == $row['id']) ? ' selected="selected"' : '';
  852. echo "<option value=\"{$row['id']}\"$selected>{$row['em_user']}</option>";
  853. }
  854. ?>
  855. </select>
  856. </div>
  857. <div class="selectItem">
  858. <label>联系方式</label>
  859. <select name="fliterContact" class="filterSearch">
  860. <option value="">请选择</option>
  861. <option value="1" <?php if($fliterContact=="1") echo 'selected="selected"'; ?>>电话</option>
  862. <option value="2" <?php if($fliterContact=="2") echo 'selected="selected"'; ?>>微信</option>
  863. <option value="3" <?php if($fliterContact=="3") echo 'selected="selected"'; ?>>WhatsApp</option>
  864. <option value="4" <?php if($fliterContact=="4") echo 'selected="selected"'; ?>>邮箱</option>
  865. <option value="5" <?php if($fliterContact=="5") echo 'selected="selected"'; ?>>领英</option>
  866. <option value="6" <?php if($fliterContact=="6") echo 'selected="selected"'; ?>>Facebook</option>
  867. <option value="7" <?php if($fliterContact=="7") echo 'selected="selected"'; ?>>阿里巴巴</option>
  868. </select>
  869. </div>
  870. <div class="inputSearch">
  871. <input type="text" id="keys" class="inputTxt" placeholder="请输入搜索关键词" value="<?php echo empty($keyscode) ? '' : $keyscode; ?>"
  872. />
  873. <input type="button" id="searchgo" class="searchgo" value="go"
  874. onClick="location.href='?Keys='+encodeURIComponent(document.getElementById('keys').value)+'<?php echo $urlStr; ?>'" />
  875. </div>
  876. </div>
  877. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  878. <thead>
  879. <tr>
  880. <th width="4%"><input type="checkbox" name="chkall" id="chkall" onClick="chkboxall(this,'chkbox')" /></th>
  881. <th width="6%">序号</th>
  882. <th width="20%">客户编码</th>
  883. <th width="10%">联系人</th>
  884. <th width="10%">国家地区</th>
  885. <th width="7.5%">来源</th>
  886. <th width="7.5%">是否成交</th>
  887. <th width="10%">业务员</th>
  888. <th width="10%">操作</th>
  889. </tr>
  890. </thead>
  891. <tbody>
  892. <?php
  893. if ($result->num_rows > 0) {
  894. while ($row = $result->fetch_assoc()) {
  895. $tempNum++;
  896. ?>
  897. <tr onMouseOver="this.style.background='#F7FCFF'" onMouseOut="this.style.background='#FFFFFF'">
  898. <td align="center"><input type="checkbox" name="chkbox" value="<?php echo $row['id'] ?? ''; ?>" /></td>
  899. <td align="center"><?php echo $tempNum; ?></td>
  900. <td align="center" class="code" data-id="<?php echo $row['id'] ?? ''; ?>">
  901. <?php
  902. echo $row['cs_code'] ?? ''; ?>
  903. <?php if(($row['cs_claimFrom'] ?? 0) > 0): ?>
  904. <img src="../images/yijiao.png" class="handover">
  905. <?php endif; ?>
  906. </td>
  907. <td align="center"><?php echo htmlspecialchars($row['cs_name'] ?? ''); ?></td>
  908. <td align="center">
  909. <?php
  910. $countryId = intval($row['cs_country'] ?? 0);
  911. $sql = "SELECT countryName FROM country WHERE id = $countryId";
  912. $countryResult = $conn->query($sql);
  913. if ($countryResult && $countryRow = $countryResult->fetch_assoc()) {
  914. echo htmlspecialchars($countryRow['countryName']);
  915. } else {
  916. echo "未选择";
  917. }
  918. ?>
  919. </td>
  920. <td align="center">
  921. <?php
  922. $fromId = intval($row['cs_from'] ?? 0);
  923. $sql = "SELECT ch_name FROM qudao WHERE id = $fromId";
  924. $fromResult = $conn->query($sql);
  925. if ($fromResult && $fromRow = $fromResult->fetch_assoc()) {
  926. echo htmlspecialchars($fromRow['ch_name']);
  927. } else {
  928. echo "未选择";
  929. }
  930. ?>
  931. </td>
  932. <td align="center">
  933. <?php
  934. if (($row['cs_deal'] ?? 0) == 3) {
  935. echo "<span style='color:red;font-size:10px;'>" . htmlspecialchars($row['cs_dealdate'] ?? '') . "成交</span>";
  936. } elseif (($row['cs_deal'] ?? 0) == 2) {
  937. echo "明确需求";
  938. } elseif (($row['cs_deal'] ?? 0) == 1) {
  939. echo "背景调查";
  940. } else {
  941. echo "无响应";
  942. }
  943. ?>
  944. </td>
  945. <td align="center">
  946. <?php
  947. $belongId = intval($row['cs_belong'] ?? 0);
  948. $sql = "SELECT em_user FROM employee WHERE id = $belongId";
  949. $empResult = $conn->query($sql);
  950. if ($empResult && $empRow = $empResult->fetch_assoc()) {
  951. echo htmlspecialchars($empRow['em_user']);
  952. } else {
  953. echo "未选择";
  954. }
  955. ?>
  956. </td>
  957. <td align="center">
  958. <a href="?Keys=<?php echo urlencode($keys ?? ''); ?>&Page=<?php echo urlencode($page ?? '') . $urlStr; ?>&act=edit&id=<?php echo $row['id'] ?? ''; ?>" class="ico_edit ico">修改</a>
  959. </td>
  960. </tr>
  961. <tr class="detail_panel code<?php echo $row['id'] ?? ''; ?>__panel">
  962. <td colspan="2"></td>
  963. <td colspan="7" class="cs_detail">
  964. <ul>
  965. <li class="cs_detail_addtime">录入时间:<?php echo htmlspecialchars($row['cs_addtime'] ?? ''); ?></li>
  966. <li class="cs_detail_addtime">更新时间:<?php echo htmlspecialchars($row['cs_updatetime'] ?? ''); ?></li>
  967. <li class="cs_detail_addtime">
  968. 流转记录:
  969. <?php
  970. $chain = $row['cs_chain'] ?? '';
  971. if(!empty($chain)) {
  972. $chain_array = explode(',', $chain);
  973. $chain_ids = array_filter(array_map('intval', $chain_array));
  974. if(!empty($chain_ids)) {
  975. $chain_ids_str = implode(',', $chain_ids);
  976. $sql = "SELECT em_user FROM employee WHERE id IN (" . $chain_ids_str . ")";
  977. $chainResult = $conn->query($sql);
  978. $chain_users = [];
  979. while($chainRow = $chainResult->fetch_assoc()) {
  980. $chain_users[] = htmlspecialchars($chainRow['em_user']);
  981. }
  982. echo implode(' > ', $chain_users);
  983. }
  984. }
  985. ?>
  986. </li>
  987. <?php if(!empty($row['cs_tel'] ?? '')): ?>
  988. <li class="tel"><?php echo htmlspecialchars($row['cs_tel']); ?></li>
  989. <?php endif; ?>
  990. <?php if(!empty($row['cs_email'] ?? '')): ?>
  991. <li class="mail"><?php echo htmlspecialchars($row['cs_email']); ?></li>
  992. <?php endif; ?>
  993. <?php if(!empty($row['cs_whatsapp'] ?? '')): ?>
  994. <li class="whatsapp"><?php echo htmlspecialchars($row['cs_whatsapp']); ?></li>
  995. <?php endif; ?>
  996. <?php if(!empty($row['cs_wechat'] ?? '')): ?>
  997. <li class="wechat"><?php echo htmlspecialchars($row['cs_wechat']); ?></li>
  998. <?php endif; ?>
  999. <?php if(!empty($row['cs_linkedin'] ?? '')): ?>
  1000. <li class="linkedin"><?php echo htmlspecialchars($row['cs_linkedin']); ?></li>
  1001. <?php endif; ?>
  1002. <?php if(!empty($row['cs_facebook'] ?? '')): ?>
  1003. <li class="facebook"><?php echo htmlspecialchars($row['cs_facebook']); ?></li>
  1004. <?php endif; ?>
  1005. <?php if(!empty($row['cs_alibaba'] ?? '')): ?>
  1006. <li class="alibaba"><?php echo htmlspecialchars($row['cs_alibaba']); ?></li>
  1007. <?php endif; ?>
  1008. <?php if(!empty($row['cs_address'] ?? '')): ?>
  1009. <li class="address"><?php echo htmlspecialchars($row['cs_address']); ?></li>
  1010. <?php endif; ?>
  1011. </ul>
  1012. <div class="cs_detail_note"><?php echo htmlspecialchars($row['cs_note'] ?? ''); ?></div>
  1013. </td>
  1014. </tr>
  1015. <?php
  1016. }
  1017. } else {
  1018. // 没有搜索结果的情况
  1019. if (!empty($keyscode)) {
  1020. echo '<tr><td colspan="9" align="center">没有找到 "' . htmlspecialchars($keyscode) . '" 相关的客户信息</td></tr>';
  1021. } else {
  1022. echo '<tr><td colspan="9" align="center">暂无客户信息</td></tr>';
  1023. }
  1024. }
  1025. ?>
  1026. </tbody>
  1027. <tfoot>
  1028. <tr>
  1029. <td colspan="9">
  1030. <div class="showpagebox">
  1031. <?php
  1032. if ($totalPages > 1) {
  1033. $pageName = "?Keys=$keys&Ord=$ord$urlStr&";
  1034. $pageLen = 3;
  1035. if ($page > 1) {
  1036. echo "<a href=\"{$pageName}Page=1\">首页</a>";
  1037. echo "<a href=\"{$pageName}Page=" . ($page-1) . "\">上一页</a>";
  1038. }
  1039. if ($pageLen * 2 + 1 >= $totalPages) {
  1040. $startPage = 1;
  1041. $endPage = $totalPages;
  1042. } else {
  1043. if ($page <= $pageLen + 1) {
  1044. $startPage = 1;
  1045. $endPage = $pageLen * 2 + 1;
  1046. } else {
  1047. $startPage = $page - $pageLen;
  1048. $endPage = $page + $pageLen;
  1049. }
  1050. if ($page + $pageLen > $totalPages) {
  1051. $startPage = $totalPages - $pageLen * 2;
  1052. $endPage = $totalPages;
  1053. }
  1054. }
  1055. for ($i = $startPage; $i <= $endPage; $i++) {
  1056. if ($i == $page) {
  1057. echo "<a class=\"current\">$i</a>";
  1058. } else {
  1059. echo "<a href=\"{$pageName}Page=$i\">$i</a>";
  1060. }
  1061. }
  1062. if ($page < $totalPages) {
  1063. if ($totalPages - $page > $pageLen) {
  1064. echo "<a href=\"{$pageName}Page=$totalPages\">...$totalPages</a>";
  1065. }
  1066. echo "<a href=\"{$pageName}Page=" . ($page+1) . "\">下一页</a>";
  1067. echo "<a href=\"{$pageName}Page=$totalPages\">尾页</a>";
  1068. }
  1069. echo "<input type=\"text\" id=\"Pagego\" value=\"$page\"
  1070. onFocus=\"if(this.value == '$page'){this.value='';}\"
  1071. onBlur=\"if(this.value == ''){this.value='$page';}\"
  1072. onKeyUp=\"this.value=this.value.replace(/\D/g,'')\"
  1073. onKeyDown=\"if(event.keyCode==13){location.href='{$pageName}Page='+document.getElementById('Pagego').value}\" />";
  1074. }
  1075. ?>
  1076. </div>
  1077. <div class="postchkbox">
  1078. <select id="chkact" name="chkact">
  1079. <option value="1">显示</option>
  1080. <option value="0">隐藏</option>
  1081. <option value="-1">删除</option>
  1082. </select>
  1083. <input type="button" value="执行" onClick="postchk(1)" class="btn1" />
  1084. <input type="button" value="新增" onClick="location.href='?act=add'" class="btn1" />
  1085. </div>
  1086. </td>
  1087. </tr>
  1088. </tfoot>
  1089. </table>
  1090. </form>
  1091. </div>
  1092. </body>
  1093. </html>
  1094. <?php
  1095. $conn->close();
  1096. ?>