App.vue 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339
  1. <template>
  2. <div id="app">
  3. <router-view v-if="isRouterAlive"></router-view>
  4. </div>
  5. </template>
  6. <script>
  7. // import { loginconf } from "api/api.js";
  8. export default {
  9. name: "app",
  10. provide() {
  11. //父组件中通过provide来提供变量,在子组件中通过inject来注入变量。
  12. return {
  13. reload: this.reload,
  14. };
  15. },
  16. data() {
  17. return {
  18. isRouterAlive: true, //控制视图是否显示的变量
  19. };
  20. },
  21. methods: {
  22. reload() {
  23. this.isRouterAlive = false; //先关闭,
  24. this.$nextTick(function () {
  25. this.isRouterAlive = true; //再打开
  26. });
  27. },
  28. },
  29. };
  30. </script>
  31. <style lang="scss">
  32. @import "~scss_global";
  33. body {
  34. margin: 0px !important;
  35. padding: 0px;
  36. font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB,
  37. Microsoft YaHei, SimSun, sans-serif;
  38. font-size: 14px;
  39. -webkit-font-smoothing: antialiased;
  40. }
  41. .fr-second-toolbar {
  42. display: none !important;
  43. }
  44. img {
  45. object-fit: contain !important;
  46. image-rendering: -moz-crisp-edges;
  47. image-rendering: -o-crisp-edges;
  48. image-rendering: -webkit-optimize-contrast;
  49. image-rendering: crisp-edges;
  50. -ms-interpolation-mode: nearest-neighbor;
  51. }
  52. #app {
  53. position: absolute;
  54. top: 0px;
  55. bottom: 0px;
  56. left:0;
  57. right:0;
  58. }
  59. .el-submenu [class^="fa"] {
  60. vertical-align: baseline;
  61. margin-right: 10px;
  62. }
  63. .el-menu-item [class^="fa"] {
  64. vertical-align: baseline;
  65. margin-right: 10px;
  66. }
  67. .toolbar {
  68. font: 14px "微软雅黑";
  69. color: $color-primary;
  70. background: #fff;
  71. padding: 10px 15px;
  72. margin: 10px 0px;
  73. .el-form-item {
  74. margin-bottom: 10px;
  75. }
  76. }
  77. .headTip {
  78. padding: 10px 15px;
  79. margin: 10px auto;
  80. font: 14px "微软雅黑";
  81. color: #fff;
  82. background: $color-primary;
  83. }
  84. .fade-enter-active,
  85. .fade-leave-active {
  86. transition: all 0.2s ease;
  87. }
  88. .fade-enter,
  89. .fade-leave-active {
  90. opacity: 0;
  91. }
  92. p[data-f-id="pbf"] {
  93. display: none;
  94. }
  95. iframe {
  96. border: none;
  97. }
  98. .el-table .success-row {
  99. background: #eaeaea;
  100. }
  101. .editsty {
  102. font-size: 14px;
  103. color: #0052D9;
  104. cursor: pointer;
  105. margin-right: 5px;
  106. display: inline-block;
  107. flex-shrink: 0;
  108. }
  109. .deletesty {
  110. font-size: 14px;
  111. color: #C54322;
  112. cursor: pointer;
  113. &:hover{color:#C54322}
  114. }
  115. .disty {
  116. font-size: 14px;
  117. color: #999;
  118. cursor: not-allowed;
  119. }
  120. .warnsty {
  121. font-size: 14px;
  122. color: #ff9900;
  123. }
  124. .successty {
  125. font-size: 14px;
  126. color: #1bb940;
  127. }
  128. .el-card__header {
  129. border: none !important;
  130. box-shadow: 0 3px 6px rgba(37, 37, 239, 0.1) !important;
  131. }
  132. .el-pagination.is-background .el-pager li {
  133. background: #fff;
  134. // border: 1px solid #8F9BB3;
  135. }
  136. .el-pagination.is-background .el-pager li:not(.disabled).active {
  137. border-color: #0052D9;
  138. }
  139. .el-pagination.is-background .btn-next,
  140. .el-pagination.is-background .btn-prev {
  141. // border: 1px solid #8F9BB3;
  142. background: #fff;
  143. }
  144. .clearfix:after {
  145. content: "";
  146. height: 0;
  147. clear: both;
  148. visibility: hidden;
  149. display: block;
  150. zoom: 1;
  151. }
  152. .text_oneLine {
  153. overflow: hidden;
  154. text-overflow: ellipsis;
  155. white-space: nowrap;
  156. }
  157. /* 控制文字显示两行 */
  158. .text_twoLine {
  159. overflow: hidden;
  160. text-overflow: ellipsis;
  161. display: -webkit-box;
  162. -webkit-box-orient: vertical;
  163. -webkit-line-clamp: 2;
  164. }
  165. /* .el-popover */
  166. .el-checkbox__input.is-disabled + span.el-checkbox__label {
  167. color: #666 !important;
  168. }
  169. .el-form-item__label {
  170. font-size: 14px;
  171. }
  172. .el-collapse-item__header {
  173. border: none;
  174. font-size: 14px;
  175. color: #333;
  176. font-weight: bold;
  177. position: relative;
  178. margin-bottom: 20px;
  179. }
  180. /* 省市选择禁用统一element样式 */
  181. .distpicker-address-wrapper select:disabled {
  182. cursor: not-allowed;
  183. background: #f5f7fa;
  184. border-color: #e4e7ed;
  185. color: #c0c4cc;
  186. opacity: 1;
  187. }
  188. .distpicker-address-wrapper select {
  189. font-size: 14px !important;
  190. }
  191. /* img preview */
  192. .el-image-viewer__mask {
  193. opacity: 0.8;
  194. }
  195. .el-image-viewer__canvas .el-image-viewer__img {
  196. position: absolute;
  197. // left: 40%;
  198. // top: 40%;
  199. // transform: translate(-50%,-50%);
  200. width: 1200px;
  201. max-height: 100vh;
  202. overflow-y: scroll;
  203. }
  204. .el-image-viewer__next,
  205. .el-image-viewer__prev {
  206. width: 62px;
  207. height: 110px;
  208. border: none;
  209. font-size: 80px;
  210. background: transparent;
  211. color: #858585;
  212. }
  213. .el-image-viewer__close {
  214. width: 66px;
  215. height: 66px;
  216. color: #fff;
  217. font-size: 48px;
  218. }
  219. .el-popconfirm .el-popconfirm__action {
  220. margin-top: 10px;
  221. }
  222. /*修改滚动条样式 chrome edge safari*/
  223. div::-webkit-scrollbar {
  224. width: 7px;
  225. height: 7px;
  226. }
  227. div::-webkit-scrollbar-track {
  228. background: rgb(239, 239, 239);
  229. border-radius: 2px;
  230. }
  231. div::-webkit-scrollbar-thumb {
  232. background: #ccc;
  233. border-radius: 10px;
  234. }
  235. div::-webkit-scrollbar-thumb:hover {
  236. background: #888;
  237. }
  238. div::-webkit-scrollbar-corner {
  239. background: #666;
  240. }
  241. /*firefox*/
  242. /* div{
  243. scrollbar-width: thin;
  244. } */
  245. .customName:hover {
  246. text-decoration: underline;
  247. }
  248. /**/
  249. .el-select-dropdown__wrap {
  250. max-height: 358px !important;
  251. }
  252. /* 日期选择 */
  253. .mx-datepicker {
  254. width: 280px !important;
  255. }
  256. .mx-calendar-content .cell.active {
  257. background-color: #0052D9 !important;
  258. }
  259. .mx-datepicker .mx-input {
  260. height: 40px;
  261. border-color: #dcdfe6;
  262. box-shadow: none;
  263. }
  264. .mx-input {
  265. &::placeholder {
  266. color: #bbb;
  267. }
  268. &:hover {
  269. border-color: #c0c4cc !important;
  270. }
  271. }
  272. /*修改滚动条样式 chrome edge safari*/
  273. ul::-webkit-scrollbar {
  274. width: 7px;
  275. height: 7px;
  276. }
  277. ul::-webkit-scrollbar-track {
  278. background: rgb(239, 239, 239);
  279. border-radius: 2px;
  280. }
  281. ul::-webkit-scrollbar-thumb {
  282. background: #ccc;
  283. border-radius: 10px;
  284. }
  285. ul::-webkit-scrollbar-thumb:hover {
  286. background: #888;
  287. }
  288. ul::-webkit-scrollbar-corner {
  289. background: #666;
  290. }
  291. /*firefox*/
  292. /* ul{
  293. scrollbar-width: thin;
  294. } */
  295. textarea {
  296. font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB",
  297. "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  298. }
  299. // .el-dialog {
  300. // display: flex;
  301. // flex-direction: column;
  302. // margin: 0 !important;
  303. // position: absolute;
  304. // top: 50%;
  305. // left: 50%;
  306. // transform: translate(-50%, -50%);
  307. // max-height: calc(100% - 30px);
  308. // max-width: calc(100% - 30px);
  309. // }
  310. // .el-dialog .el-dialog__body {
  311. // flex: 1;
  312. // overflow: auto;
  313. // }
  314. .el-color-predefine {
  315. .el-color-predefine__color-selector {
  316. box-shadow: 0 0 1px 1px #999;
  317. }
  318. }
  319. //图表搜索select
  320. .chart-search-popper {
  321. min-width: 300px !important;
  322. width: auto !important;
  323. }
  324. //数据管理下的输入框
  325. .el-autocomplete-suggestion-data-entry {
  326. width: auto !important;
  327. }
  328. </style>