index.html 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>
  6. 联系人-纵横CLD v2.0
  7. </title>
  8. <meta name="description" content="Page Titile">
  9. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  10. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, user-scalable=no, minimal-ui">
  11. <!-- Call App Mode on ios devices -->
  12. <meta name="apple-mobile-web-app-capable" content="yes" />
  13. <!-- Remove Tap Highlight on Windows Phone IE -->
  14. <meta name="msapplication-tap-highlight" content="no">
  15. <!-- base css -->
  16. <link rel="stylesheet" media="screen, print" href="css/vendors.bundle.css">
  17. <link rel="stylesheet" media="screen, print" href="css/app.bundle.css">
  18. <link rel="stylesheet" media="screen, print" href="css/cld-custom.css">
  19. <!-- Place favicon.ico in the root directory -->
  20. <link rel="shortcut icon" href="img/favicon/favicon.ico">
  21. <link rel="stylesheet" media="screen, print" href="css/fa-regular.css">
  22. <link rel="stylesheet" media="screen, print" href="css/fa-solid.css">
  23. <link rel="stylesheet" media="screen, print" href="css/fa-brands.css">
  24. <script src="js/vendors.bundle.js"></script>
  25. <script src="js/app.bundle.js"></script>
  26. <script src="js/cld-custom.js"></script>
  27. </head>
  28. <body class="mod-bg-1 nav-function-fixed header-function-fixed">
  29. <!-- DOC: script to save and load page settings -->
  30. <script>
  31. /**
  32. * This script should be placed right after the body tag for fast execution
  33. * Note: the script is written in pure javascript and does not depend on thirdparty library
  34. **/
  35. 'use strict';
  36. var classHolder = document.getElementsByTagName("BODY")[0],
  37. /**
  38. * Load from localstorage
  39. **/
  40. themeSettings = (localStorage.getItem('themeSettings')) ? JSON.parse(localStorage.getItem('themeSettings')) : {},
  41. themeURL = themeSettings.themeURL || '',
  42. themeOptions = themeSettings.themeOptions || '';
  43. /**
  44. * Load theme options
  45. **/
  46. if (themeSettings.themeOptions) {
  47. classHolder.className = themeSettings.themeOptions;
  48. console.log("%c✔ Theme settings loaded", "color: #148f32");
  49. } else {
  50. console.log("Heads up! Theme settings is empty or does not exist, loading default settings...");
  51. }
  52. if (themeSettings.themeURL && !document.getElementById('mytheme')) {
  53. var cssfile = document.createElement('link');
  54. cssfile.id = 'mytheme';
  55. cssfile.rel = 'stylesheet';
  56. cssfile.href = themeURL;
  57. document.getElementsByTagName('head')[0].appendChild(cssfile);
  58. }
  59. /**
  60. * Save to localstorage
  61. **/
  62. var saveSettings = function() {
  63. themeSettings.themeOptions = String(classHolder.className).split(/[^\w-]+/).filter(function(item) {
  64. return /^(nav|header|mod|display)-/i.test(item);
  65. }).join(' ');
  66. if (document.getElementById('mytheme')) {
  67. themeSettings.themeURL = document.getElementById('mytheme').getAttribute("href");
  68. };
  69. localStorage.setItem('themeSettings', JSON.stringify(themeSettings));
  70. }
  71. /**
  72. * Reset settings
  73. **/
  74. var resetSettings = function() {
  75. localStorage.setItem("themeSettings", "");
  76. }
  77. </script>
  78. <!-- BEGIN Page Wrapper -->
  79. <div class="page-wrapper">
  80. <div class="page-inner">
  81. <div id="root"></div>
  82. </div>
  83. </div>
  84. <!-- END Page Wrapper -->
  85. <!-- BEGIN应用切换 -->
  86. <div class="modal fade modal-backdrop-transparent" id="modal-shortcut" tabindex="-1" role="dialog" aria-labelledby="modal-shortcut" aria-hidden="true">
  87. <div class="modal-dialog modal-dialog-top modal-transparent" role="document">
  88. <div class="modal-content">
  89. <div class="modal-body">
  90. <ul class="app-list w-auto h-auto p-0 text-left">
  91. <li>
  92. <a href="/" class="app-list-item text-white">
  93. <div class='icon-stack'>
  94. <i class="base base-11 icon-stack-3x opacity-100 color-primary-700"></i> <i class="base base-7 icon-stack-2x opacity-100 color-primary-500"></i> <i class="fas fa-chess icon-stack-1x opacity-100 color-white"></i>
  95. </div>
  96. <span class="app-list-name">
  97. 工作台
  98. </span>
  99. </a>
  100. </li>
  101. <li>
  102. <a href="/contact" class="app-list-item text-white">
  103. <div class='icon-stack'>
  104. <i class="base base-4 icon-stack-3x opacity-100 color-info-700"></i> <i class="base base-12 icon-stack-2x opacity-100 color-info-500"></i> <i class="fas fa-address-book icon-stack-1x opacity-100 color-white"></i>
  105. </div>
  106. <span class="app-list-name">
  107. 客户
  108. </span>
  109. </a>
  110. </li>
  111. <li>
  112. <a href="/product" class="app-list-item text-white">
  113. <span class="icon-stack">
  114. <i class="base base-7 icon-stack-3x opacity-100 color-danger-900 "></i>
  115. <i class="base base-4 icon-stack-2x opacity-100 color-danger-600 "></i>
  116. <i class="fal fa-box icon-stack-1x text-white"></i>
  117. </span>
  118. <span class="app-list-name">
  119. 产品
  120. </span>
  121. </a>
  122. </li>
  123. <li>
  124. <a href="#" class="app-list-item text-white">
  125. <div class='icon-stack'>
  126. <i class="base base-9 icon-stack-3x opacity-100 color-success-700"></i> <i class="base base-14 icon-stack-2x opacity-100 color-success-500"></i> <i class="fas fa-clipboard-list icon-stack-1x opacity-100 color-white"></i>
  127. </div>
  128. <span class="app-list-name">
  129. 费用
  130. </span>
  131. </a>
  132. </li>
  133. <li>
  134. <a href="#" class="app-list-item text-white">
  135. <div class='icon-stack'>
  136. <i class="base base-3 icon-stack-3x opacity-100 color-warning-700"></i> <i class="base base-9 icon-stack-2x opacity-100 color-warning-500"></i> <i class="fas fa-credit-card-front icon-stack-1x opacity-100 color-white"></i>
  137. </div>
  138. <span class="app-list-name">
  139. 开票
  140. </span>
  141. </a>
  142. </li>
  143. <li>
  144. <a href="#" class="app-list-item text-white">
  145. <div class="icon-stack">
  146. <i class="base-18 icon-stack-3x color-info-300"></i>
  147. <span class="position-absolute pos-top pos-left pos-right color-white fs-md mt-2 fw-400">Zz..</span>
  148. </div>
  149. <span class="app-list-name">
  150. 假期
  151. </span>
  152. </a>
  153. </li>
  154. <li>
  155. <a href="/hr" class="app-list-item text-white">
  156. <div class='icon-stack'>
  157. <i class="base base-15 icon-stack-3x opacity-100 color-fusion-200"></i> <i class="base base-10 icon-stack-2x opacity-100 color-fusion-500"></i> <i class="fas fa-users icon-stack-1x opacity-100 color-white"></i>
  158. </div>
  159. <span class="app-list-name">
  160. 人资
  161. </span>
  162. </a>
  163. </li>
  164. <li>
  165. <a href="#" class="app-list-item text-white">
  166. <div class='icon-stack'>
  167. <i class="base base-5 icon-stack-3x opacity-100 color-danger-300"></i> <i class="base base-14 icon-stack-2x opacity-100 color-danger-200"></i> <i class="fas fa-id-card icon-stack-2x opacity-100 color-white"></i>
  168. </div>
  169. <span class="app-list-name">
  170. 我的纵横
  171. </span>
  172. </a>
  173. </li>
  174. </ul>
  175. </div>
  176. </div>
  177. </div>
  178. </div>
  179. </body>
  180. <script type="text/javascript">
  181. autoFlashHeight();
  182. $('.slimScroll1').slimScroll({
  183. position: 'right',
  184. height: 'auto',
  185. railVisible: true
  186. });
  187. $('.slimScrol2').slimScroll({
  188. position: 'right',
  189. height: 'auto',
  190. railVisible: true
  191. });
  192. $('.slimScrol3').slimScroll({
  193. position: 'right',
  194. height: 'auto',
  195. railVisible: true
  196. });
  197. $('.slimScrol4').slimScroll({
  198. position: 'right',
  199. height: 'auto',
  200. railVisible: true
  201. });
  202. </script>
  203. <script>
  204. </script>
  205. </html>