customerAdd.php 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. <?php
  2. require_once 'conn.php';
  3. checkLogin();
  4. ?>
  5. <!DOCTYPE html>
  6. <html xmlns="http://www.w3.org/1999/xhtml">
  7. <head>
  8. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  9. <title>管理区域</title>
  10. <link rel="stylesheet" href="css/common.css" type="text/css" />
  11. <script src="js/jquery-1.7.2.min.js"></script>
  12. <script src="js/js.js"></script>
  13. <script src="js/xheditor-1.1.9/xheditor-1.1.9-zh-cn.min.js"></script>
  14. <script src="js/Hz2Py-szm-min.js"></script>
  15. <script src="js/ySearchSelect.js"></script>
  16. <script>
  17. $(document).ready(function(){
  18. $('.txt2').xheditor({
  19. tools:'full',
  20. hoverExecDelay:-1,
  21. urlBase:'system',
  22. upLinkUrl:"upload.php",
  23. upLinkExt:"zip,rar,txt,pdf",
  24. upImgUrl:"upload.php",
  25. upImgExt:"jpg,jpeg,gif,png",
  26. upFlashUrl:"upload.php",
  27. upFlashExt:"swf",
  28. upMediaUrl:"upload.php",
  29. upMediaExt:"wmv,avi,wma,mp3,mid"
  30. });
  31. });
  32. </script>
  33. <style>
  34. body {
  35. margin: 0;
  36. padding: 20px;
  37. background: #fff;
  38. }
  39. #man_zone {
  40. margin-left: 0;
  41. }
  42. </style>
  43. </head>
  44. <body class="clear">
  45. <?php // require_once 'panel.php'; ?>
  46. <div id="man_zone">
  47. <form name="form1" id="form1" method="post" action="customerSave.php<?= $hrefstr ?? '' ?>" onSubmit="return checkInput();">
  48. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  49. <tbody>
  50. <tr>
  51. <th width="8%">客户编号</th>
  52. <td>
  53. <input type="text" id="cs_code" name="cs_code" value="" class="txt1" />
  54. <input type="hidden" name="cs_addtime" value="<?= date('Y-m-d H:i:s') ?>" />
  55. </td>
  56. </tr>
  57. <tr>
  58. <th width="8%">公司名称</th>
  59. <td><input type="text" id="cs_company" name="cs_company" value="" class="txt1" /></td>
  60. </tr>
  61. <tr>
  62. <th width="8%">联系人</th>
  63. <td><input type="text" id="cs_name" name="cs_name" value="" class="txt1" /></td>
  64. </tr>
  65. <tr>
  66. <th width="8%">地区</th>
  67. <td>
  68. <div class="layui-input-inline">
  69. <div class="layui-form-select ySearchSelect y1">
  70. <div class="layui-input">请选择客户区域</div>
  71. <input name="cs_country" id="cs_country" type="hidden">
  72. <i class="layui-edge"></i>
  73. <ul>
  74. <?php
  75. $result = $conn->query("SELECT id, countryCode, countryName FROM country");
  76. while ($row = $result->fetch_assoc()) {
  77. echo "<li class=\"on\" data-c=\"{$row['id']}\">(+{$row['countryCode']}){$row['countryName']}</li>";
  78. }
  79. ?>
  80. <p>无匹配项</p>
  81. </ul>
  82. </div>
  83. </div>
  84. <script>
  85. $(function () {
  86. $(".y1").ySearchSelect();
  87. })
  88. </script>
  89. </td>
  90. </tr>
  91. <tr>
  92. <th width="8%">来源</th>
  93. <td>
  94. <select id="cs_from" name="cs_from">
  95. <option value="0">请选择来源</option>
  96. <?php
  97. $result = $conn->query("SELECT id, ch_name FROM qudao");
  98. while ($row = $result->fetch_assoc()) {
  99. echo "<option value=\"{$row['id']}\">{$row['ch_name']}</option>";
  100. }
  101. ?>
  102. </select>
  103. </td>
  104. </tr>
  105. <tr>
  106. <th rowspan="7">联系方式</th>
  107. <td><input type="text" id="cs_tel" name="cs_tel" value="" class="txt1 tel" placeholder="电话格式:区号+号码 如:+86 15012345678" /></td>
  108. </tr>
  109. <tr>
  110. <td><input type="text" id="cs_wechat" name="cs_wechat" value="" class="txt1 wechat" placeholder="微信"/></td>
  111. </tr>
  112. <tr>
  113. <td>
  114. <input type="text" id="cs_whatsapp" name="cs_whatsapp" value="" class="txt-short2 whatsapp" placeholder="Whatsapp 格式:区号+号码 如:+86 15012345678"/>
  115. <span class="syncphone">同步到电话联方式</span>
  116. </td>
  117. </tr>
  118. <tr>
  119. <td><input type="text" id="cs_email" name="cs_email" value="" class="txt1 mail" placeholder="邮件" /></td>
  120. </tr>
  121. <tr>
  122. <td><input type="text" id="cs_linkedin" name="cs_linkedin" value="" class="txt1 linkedin" placeholder="领英链接"/></td>
  123. </tr>
  124. <tr>
  125. <td><input type="text" id="cs_facebook" name="cs_facebook" value="" class="txt1 facebook" placeholder="Facebook" /></td>
  126. </tr>
  127. <tr>
  128. <td><input type="text" id="cs_alibaba" name="cs_alibaba" value="" class="txt1 alibaba" placeholder="阿里巴巴会员名" /></td>
  129. </tr>
  130. <tr>
  131. <th>地址</th>
  132. <td><input type="text" id="cs_address" name="cs_address" value="" class="txt1" /></td>
  133. </tr>
  134. <tr>
  135. <th>业务类型</th>
  136. <td>
  137. <?php
  138. $result = $conn->query("SELECT id, businessType FROM clienttype");
  139. while ($row = $result->fetch_assoc()) {
  140. echo "<input type=\"radio\" name=\"cs_type\" value=\"{$row['id']}\" id=\"fortype{$row['id']}\">
  141. <label for=\"fortype{$row['id']}\">{$row['businessType']}</label>";
  142. }
  143. ?>
  144. </td>
  145. </tr>
  146. <tr>
  147. <th>跟进阶段</th>
  148. <td>
  149. <input type="radio" id="fordeal1" class="cs_deal" name="cs_deal" value="0"><label for="fordeal1">无响应</label>
  150. <input type="radio" id="fordeal2" class="cs_deal" name="cs_deal" value="1" checked="checked"><label for="fordeal2">背景调查</label>
  151. <input type="radio" id="fordeal3" class="cs_deal" name="cs_deal" value="2"><label for="fordeal3">明确需求</label>
  152. <input type="radio" id="fordeal4" class="cs_deal" name="cs_deal" value="3"><label for="fordeal4">已成交</label>
  153. </td>
  154. </tr>
  155. <tr>
  156. <th>其他</th>
  157. <td>
  158. <input type="checkbox" id="belongClient" class="cs_belongClient" name="cs_belongClient" value="1">
  159. <label for="belongClient">客户的客户</label>
  160. </td>
  161. </tr>
  162. <tr>
  163. <th>自定义标签</th>
  164. <td>
  165. <div class="taglist"></div>
  166. <input type="hidden" id="mytag" name="mytag" value="">
  167. <div class="commontag clear">
  168. <i class="tag">美特柏品牌客户</i>,
  169. <i class="tag">OEM定制客户</i>,
  170. <i class="tag">小型B端客户</i>,
  171. <i class="tag">C端客户</i>,
  172. <i class="tag">贸易公司</i>,
  173. <i class="tag">档口客户</i>
  174. <?php
  175. $stmt = $conn->prepare("SELECT DISTINCT tagName FROM tagtable WHERE employeeId = ?");
  176. $stmt->bind_param("i", $_SESSION['employee_id']);
  177. $stmt->execute();
  178. $result = $stmt->get_result();
  179. while ($row = $result->fetch_assoc()) {
  180. echo "<i class=\"tag\">" . htmlspecialcharsFix(textUncode($row['tagName'])) . "</i>,";
  181. }
  182. ?>
  183. </div>
  184. <input type="text" id="tapinput" class="txt-short" placeholder="添加新标签,按Enter添加">
  185. </td>
  186. </tr>
  187. <tr>
  188. <th width="8%">备注</th>
  189. <td><textarea name="cs_note" class="txt2" placeholder=""></textarea></td>
  190. </tr>
  191. <tr>
  192. <th></th>
  193. <td>
  194. <input type="button" name="save" id="save" value="确定" class="btn1" onclick="subform();" />
  195. <input type="button" value="返回" class="btn1" onClick="location.href='customers.php'" />
  196. </td>
  197. </tr>
  198. </tbody>
  199. </table>
  200. </form>
  201. </div>
  202. </body>
  203. </html>