12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <template>
- <div class="container">
- <div class="header">
- <el-button>定时任务</el-button>
- <el-button>加密方法</el-button>
- </div>
- <test></test>
- </div>
- </template>
- <script>
- import test from './periodicTask'
- export default {
- components:{test},
- data() {
- return {}
- }
- }
- </script>
- <style lang="less" scoped>
- .container{
- position: absolute;
- left: 218px;
- top: 150px;
- right: 16px;
- bottom: 20px;
- line-height: 20px;
- background-color: rgba(255, 255, 255, 1);
- color: rgba(16, 16, 16, 1);
- font-size: 14px;
- text-align: center;
- }
- .header {
- text-align: left;
- padding: 15px;
- font-size: 25px;
- margin-left: 15px;
- .el-button {
- border-radius: 50px;
- }
- }
- </style>
|