星火管控前端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

App.vue 845B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <template>
  2. <div id="app">
  3. <router-view></router-view>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {};
  10. },
  11. created() {},
  12. methods: {}
  13. };
  14. </script>
  15. <style lang="less">
  16. @import "@/assets/less/reset.less";
  17. @import "@/assets/less/common.less";
  18. @import "@/assets/less/customModal.less";
  19. // 加载动画
  20. .ivu-spin {
  21. z-index: 1000;
  22. }
  23. .demo-spin-icon-load {
  24. animation: ani-demo-spin 1s linear infinite;
  25. }
  26. @keyframes ani-demo-spin {
  27. from {
  28. transform: rotate(0deg);
  29. }
  30. 50% {
  31. transform: rotate(180deg);
  32. }
  33. to {
  34. transform: rotate(360deg);
  35. }
  36. }
  37. .require {
  38. .ivu-form-item-label {
  39. &::before {
  40. content: "*" !important;
  41. display: inline-block;
  42. margin-right: 4px;
  43. line-height: 1;
  44. font-family: SimSun;
  45. font-size: 14px;
  46. color: #ed4014;
  47. }
  48. }
  49. }
  50. </style>