index.vue 794 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <template>
  2. <div class="container">
  3. <div class="header">
  4. <el-button>定时任务</el-button>
  5. <el-button>加密方法</el-button>
  6. </div>
  7. <test></test>
  8. </div>
  9. </template>
  10. <script>
  11. import test from './periodicTask'
  12. export default {
  13. components:{test},
  14. data() {
  15. return {}
  16. }
  17. }
  18. </script>
  19. <style lang="less" scoped>
  20. .container{
  21. position: absolute;
  22. left: 218px;
  23. top: 150px;
  24. right: 16px;
  25. bottom: 20px;
  26. line-height: 20px;
  27. background-color: rgba(255, 255, 255, 1);
  28. color: rgba(16, 16, 16, 1);
  29. font-size: 14px;
  30. text-align: center;
  31. }
  32. .header {
  33. text-align: left;
  34. padding: 15px;
  35. font-size: 25px;
  36. margin-left: 15px;
  37. .el-button {
  38. border-radius: 50px;
  39. }
  40. }
  41. </style>