|
@@ -0,0 +1,264 @@
|
|
|
+<!DOCTYPE html>
|
|
|
+<html lang="en">
|
|
|
+
|
|
|
+<head>
|
|
|
+ <meta charset="utf-8">
|
|
|
+ <title>
|
|
|
+ 联系人-纵横CLD v2.0-subindex
|
|
|
+ </title>
|
|
|
+ <meta name="description" content="Page Titile">
|
|
|
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
+ <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, user-scalable=no, minimal-ui">
|
|
|
+ <!-- Call App Mode on ios devices -->
|
|
|
+ <meta name="apple-mobile-web-app-capable" content="yes" />
|
|
|
+ <!-- Remove Tap Highlight on Windows Phone IE -->
|
|
|
+ <meta name="msapplication-tap-highlight" content="no">
|
|
|
+ <!-- base css -->
|
|
|
+ <link rel="stylesheet" media="screen, print" href="http://cld2.com:9090/css/vendors.bundle.css">
|
|
|
+ <link rel="stylesheet" media="screen, print" href="http://cld2.com:9090/css/app.bundle.css">
|
|
|
+ <link rel="stylesheet" media="screen, print" href="http://cld2.com:9090/css/cld-custom.css">
|
|
|
+ <!-- Place favicon.ico in the root directory -->
|
|
|
+ <link rel="shortcut icon" href="http://cld2.com:9090/img/favicon/favicon.ico">
|
|
|
+ <link rel="stylesheet" media="screen, print" href="http://cld2.com:9090/css/fa-regular.css">
|
|
|
+ <link rel="stylesheet" media="screen, print" href="http://cld2.com:9090/css/fa-solid.css">
|
|
|
+ <link rel="stylesheet" media="screen, print" href="http://cld2.com:9090/css/fa-brands.css">
|
|
|
+ <link rel="stylesheet" media="screen, print" href="http://cld2.com:9090/css/global.css">
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+<link href="http://cld2.com:9090/css/vendor.d919b9206a46f65a9f0b.css" rel="stylesheet"></head>
|
|
|
+
|
|
|
+<body class="mod-bg-1 nav-function-fixed header-function-fixed">
|
|
|
+ <!-- DOC: script to save and load page settings -->
|
|
|
+ <script>
|
|
|
+ /**
|
|
|
+ * This script should be placed right after the body tag for fast execution
|
|
|
+ * Note: the script is written in pure javascript and does not depend on thirdparty library
|
|
|
+ **/
|
|
|
+ 'use strict';
|
|
|
+ var classHolder = document.getElementsByTagName("BODY")[0],
|
|
|
+ /**
|
|
|
+ * Load from localstorage
|
|
|
+ **/
|
|
|
+ themeSettings = (localStorage.getItem('themeSettings')) ? JSON.parse(localStorage.getItem('themeSettings')) : {},
|
|
|
+ themeURL = themeSettings.themeURL || '',
|
|
|
+ themeOptions = themeSettings.themeOptions || '';
|
|
|
+ /**
|
|
|
+ * Load theme options
|
|
|
+ **/
|
|
|
+ if (themeSettings.themeOptions) {
|
|
|
+ classHolder.className = themeSettings.themeOptions;
|
|
|
+
|
|
|
+ } else {
|
|
|
+
|
|
|
+ }
|
|
|
+ if (themeSettings.themeURL && !document.getElementById('mytheme')) {
|
|
|
+ var cssfile = document.createElement('link');
|
|
|
+ cssfile.id = 'mytheme';
|
|
|
+ cssfile.rel = 'stylesheet';
|
|
|
+ cssfile.href = themeURL;
|
|
|
+ document.getElementsByTagName('head')[0].appendChild(cssfile);
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * Save to localstorage
|
|
|
+ **/
|
|
|
+ var saveSettings = function () {
|
|
|
+ themeSettings.themeOptions = String(classHolder.className).split(/[^\w-]+/).filter(function (item) {
|
|
|
+ return /^(nav|header|mod|display)-/i.test(item);
|
|
|
+ }).join(' ');
|
|
|
+ if (document.getElementById('mytheme')) {
|
|
|
+ themeSettings.themeURL = document.getElementById('mytheme').getAttribute("href");
|
|
|
+ };
|
|
|
+ localStorage.setItem('themeSettings', JSON.stringify(themeSettings));
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * Reset settings
|
|
|
+ **/
|
|
|
+ var resetSettings = function () {
|
|
|
+ localStorage.setItem("themeSettings", "");
|
|
|
+ }
|
|
|
+ </script>
|
|
|
+ <!-- BEGIN Page Wrapper -->
|
|
|
+ <div class="page-wrapper">
|
|
|
+ <div class="page-inner">
|
|
|
+ <div id="root" class="width100"></div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <!-- END Page Wrapper -->
|
|
|
+ <!-- BEGIN应用切换 -->
|
|
|
+ <div class="modal fade modal-backdrop-transparent" id="modal-shortcut" tabindex="-1" role="dialog"
|
|
|
+ aria-labelledby="modal-shortcut" aria-hidden="true">
|
|
|
+ <div class="modal-dialog modal-dialog-top modal-transparent" role="document">
|
|
|
+ <div class="modal-content">
|
|
|
+ <div class="modal-body">
|
|
|
+ <ul class="app-list w-auto h-auto p-0 text-left">
|
|
|
+ <li>
|
|
|
+ <a href="/" class="app-list-item text-white">
|
|
|
+ <div class='icon-stack'>
|
|
|
+ <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>
|
|
|
+ </div>
|
|
|
+ <span class="app-list-name">
|
|
|
+ 工作台
|
|
|
+ </span>
|
|
|
+ </a>
|
|
|
+ </li>
|
|
|
+ <li>
|
|
|
+ <a href="/contact" class="app-list-item text-white">
|
|
|
+ <div class='icon-stack'>
|
|
|
+ <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>
|
|
|
+ </div>
|
|
|
+ <span class="app-list-name">
|
|
|
+ 客户
|
|
|
+ </span>
|
|
|
+ </a>
|
|
|
+ </li>
|
|
|
+ <li>
|
|
|
+ <a href="/product" class="app-list-item text-white">
|
|
|
+ <span class="icon-stack">
|
|
|
+ <i class="base base-7 icon-stack-3x opacity-100 color-danger-900 "></i>
|
|
|
+ <i class="base base-4 icon-stack-2x opacity-100 color-danger-600 "></i>
|
|
|
+ <i class="fal fa-box icon-stack-1x text-white"></i>
|
|
|
+ </span>
|
|
|
+ <span class="app-list-name">
|
|
|
+ 产品
|
|
|
+ </span>
|
|
|
+ </a>
|
|
|
+ </li>
|
|
|
+ <li>
|
|
|
+ <a href="#" class="app-list-item text-white">
|
|
|
+ <div class='icon-stack'>
|
|
|
+ <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>
|
|
|
+ </div>
|
|
|
+ <span class="app-list-name">
|
|
|
+ 费用
|
|
|
+ </span>
|
|
|
+ </a>
|
|
|
+ </li>
|
|
|
+ <li>
|
|
|
+ <a href="#" class="app-list-item text-white">
|
|
|
+ <div class='icon-stack'>
|
|
|
+ <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>
|
|
|
+ </div>
|
|
|
+ <span class="app-list-name">
|
|
|
+ 开票
|
|
|
+ </span>
|
|
|
+ </a>
|
|
|
+ </li>
|
|
|
+ <li>
|
|
|
+ <a href="#" class="app-list-item text-white">
|
|
|
+ <div class="icon-stack">
|
|
|
+ <i class="base-18 icon-stack-3x color-info-300"></i>
|
|
|
+ <span class="position-absolute pos-top pos-left pos-right color-white fs-md mt-2 fw-400">Zz..</span>
|
|
|
+ </div>
|
|
|
+ <span class="app-list-name">
|
|
|
+ 假期
|
|
|
+ </span>
|
|
|
+ </a>
|
|
|
+ </li>
|
|
|
+ <li>
|
|
|
+ <a href="/hr" class="app-list-item text-white">
|
|
|
+ <div class='icon-stack'>
|
|
|
+ <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>
|
|
|
+ </div>
|
|
|
+ <span class="app-list-name">
|
|
|
+ 人资
|
|
|
+ </span>
|
|
|
+ </a>
|
|
|
+ </li>
|
|
|
+ <li>
|
|
|
+ <a href="#" class="app-list-item text-white">
|
|
|
+ <div class='icon-stack'>
|
|
|
+ <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>
|
|
|
+ </div>
|
|
|
+ <span class="app-list-name">
|
|
|
+ 我的纵横
|
|
|
+ </span>
|
|
|
+ </a>
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+<script src="http://cld2.com:9090/nodejs/framework.d919b9206a46f65a9f0b.bundle.js"></script><script src="http://cld2.com:9090/nodejs/vendor.d919b9206a46f65a9f0b.bundle.js"></script><script src="http://cld2.com:9090/nodejs/contact.d919b9206a46f65a9f0b.bundle.js"></script></body>
|
|
|
+
|
|
|
+<script src="http://cld2.com:9090/js/vendors.bundle.js"></script>
|
|
|
+<script src="http://cld2.com:9090/js/app.bundle.js"></script>
|
|
|
+<script src="http://cld2.com:9090/js/cld-custom.js"></script>
|
|
|
+
|
|
|
+
|
|
|
+<script type="text/javascript">
|
|
|
+
|
|
|
+
|
|
|
+ // $(document).ready(function () {
|
|
|
+ // $('#dt-basic-example').dataTable(
|
|
|
+ // {
|
|
|
+ // responsive: true,
|
|
|
+ // autoWidth: true,
|
|
|
+ // info: false,
|
|
|
+ // searching: false,
|
|
|
+ // lengthChange: false,
|
|
|
+ // "ajax": {
|
|
|
+ // "url": "http://cld2.com:9090/cld2/contact/client",
|
|
|
+ // "dataSrc": "list"
|
|
|
+ // }
|
|
|
+ // //scrollX: true,
|
|
|
+ // });
|
|
|
+
|
|
|
+ // $('.js-thead-colors a').on('click', function () {
|
|
|
+ // var theadColor = $(this).attr("data-bg");
|
|
|
+ // console.log(theadColor);
|
|
|
+ // $('#dt-basic-example thead').removeClassPrefix('bg-').addClass(theadColor);
|
|
|
+ // });
|
|
|
+
|
|
|
+ // $('.js-tbody-colors a').on('click', function () {
|
|
|
+ // var theadColor = $(this).attr("data-bg");
|
|
|
+ // console.log(theadColor);
|
|
|
+ // $('#dt-basic-example').removeClassPrefix('bg-').addClass(theadColor);
|
|
|
+ // });
|
|
|
+
|
|
|
+ // });
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ autoFlashHeight();
|
|
|
+ $('.slimScroll1').slimScroll({
|
|
|
+ position: 'right',
|
|
|
+ height: 'auto',
|
|
|
+ railVisible: true
|
|
|
+ });
|
|
|
+ $('.slimScrol2').slimScroll({
|
|
|
+ position: 'right',
|
|
|
+ height: 'auto',
|
|
|
+ railVisible: true
|
|
|
+ });
|
|
|
+ $('.slimScrol3').slimScroll({
|
|
|
+ position: 'right',
|
|
|
+ height: 'auto',
|
|
|
+ railVisible: true
|
|
|
+ });
|
|
|
+ $('.slimScrol4').slimScroll({
|
|
|
+ position: 'right',
|
|
|
+ height: 'auto',
|
|
|
+ railVisible: true
|
|
|
+ });
|
|
|
+</script>
|
|
|
+<script>
|
|
|
+
|
|
|
+
|
|
|
+</script>
|
|
|
+
|
|
|
+</html>
|