index.html 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <!-- 尝试清除打包缓存 -->
  6. <!-- <meta http-equiv="pragram" content="no-cache">
  7. <meta http-equiv="cache-control" content="no-cache, no-store, must-revalidate">
  8. <meta http-equiv="expires" content="0"> -->
  9. <!-- 尝试清除打包缓存 -->
  10. <title>工时管家</title>
  11. <link rel="shortcut icon" type="image/x-icon" href="./favicon.ico"/>
  12. <link href="./static/css/public.css" rel="stylesheet" type="text/css"/>
  13. <!-- 引入样式 -->
  14. <link href="https://cdn.staticfile.org/element-ui/2.13.0/theme-chalk/index.css" rel="stylesheet">
  15. <style>
  16. /* 滚动条样式修改 */
  17. /*滚动条凹槽的颜色,还可以设置边框属性 */
  18. ::-webkit-scrollbar-track-piece {
  19. background-color:#f8f8f8;
  20. -webkit-border-radius: 2em;
  21. -moz-border-radius: 2em;
  22. border-radius: 2em;
  23. }
  24. /*滚动条的宽度*/
  25. ::-webkit-scrollbar {
  26. width:9px;
  27. height: 9px;}
  28. /*滚动条的设置*/
  29. ::-webkit-scrollbar-thumb {
  30. background-color:#dddddd;
  31. background-clip:padding-box;
  32. -webkit-border-radius: 2em;
  33. -moz-border-radius: 2em;
  34. border-radius: 2em;}
  35. /*滚动条鼠标移上去*/
  36. ::-webkit-scrollbar-thumb:hover {
  37. background-color:#bbb;
  38. }
  39. /*取消消息列表弹出框的内边距*/
  40. .popover-self {
  41. padding: 0 !important;
  42. }
  43. /*自定义颜色*/
  44. #nprogress .bar {
  45. background:#f58220 !important;
  46. }
  47. .selectworktime .el-dialog__header{
  48. padding-top:0;
  49. padding-bottom:0;
  50. }
  51. .selectworktime .el-dialog__body{
  52. padding-top:15px;
  53. }
  54. .el-dialog__headerbtn{
  55. z-index: 2002;
  56. }
  57. .selecteorktime_datapick_popper{
  58. left: 12vh !important;
  59. }
  60. .customsalary .el-input__inner{
  61. height: 35px;
  62. line-height: 35px;
  63. }
  64. .projectSelectPopperClass{
  65. max-width: 1000px;
  66. }
  67. .projectSelectPopperClass .el-select-dropdown__item span:nth-child(1){
  68. font-size: 13px;
  69. height: 34px;
  70. width: 35%;
  71. }
  72. .projectSelectPopperClass .el-select-dropdown__item span:nth-child(2){
  73. font-size: 13px;
  74. height: 34px;
  75. width: 65%;
  76. overflow: hidden;
  77. white-space: nowrap;
  78. text-overflow: ellipsis;
  79. text-align: right;
  80. }
  81. </style>
  82. <!-- <meta name="wpk-bid" content="dta_2_71020"> <script>var isDingtalk = navigator && /DingTalk/.test(navigator.userAgent);var isProductEnv = window &&window.location &&window.location.host
  83. && window.location.host.indexOf('//127.0.0.1')===-1
  84. && window.location.host.indexOf('//localhost')===-1
  85. && window.location.host.indexOf('//192.168.')===-1
  86. // 如果有其它测试域名,请一起排掉,减少测试环境对生产环境监控的干扰
  87. if (isProductEnv) { !(function(c,i,e,b){var h=i.createElement("script");var f=i.getElementsByTagName("script")[0];h.type="text/javascript";h.crossorigin=true;h.onload=function(){c[b]||(c[b]=new c.wpkReporter({bid:"dta_2_71020"}));c[b].installAll()};f.parentNode.insertBefore(h,f);h.src=e})(window,document,"https://g.alicdn.com/woodpeckerx/jssdk??wpkReporter.js","__wpk"); }</script> -->
  88. </head>
  89. <body>
  90. <div id="app"></div>
  91. <script>
  92. document.body.ondrop = function(event) {
  93. event.preventDefault()
  94. event.stopPropagation()
  95. }
  96. </script>
  97. <!-- 引入Vue.js -->
  98. <script src="https://cdn.staticfile.org/vue/2.6.10/vue.min.js"></script>
  99. <!-- 引入vuex.js -->
  100. <script src="https://cdn.staticfile.org/vuex/3.0.0/vuex.min.js"></script>
  101. <!-- 引入vue-router -->
  102. <script src="https://cdn.staticfile.org/vue-router/3.0.0/vue-router.min.js"></script>
  103. <!-- 引入组件库 -->
  104. <script src="https://cdn.staticfile.org/element-ui/2.13.0/index.js"></script>
  105. <!-- 引入echarts -->
  106. <script src="https://cdn.staticfile.org/echarts/3.8.5/echarts.min.js"></script>
  107. </body>
  108. </html>