added setup.py

This commit is contained in:
Marvin Zhang
2019-03-03 10:48:04 +08:00
parent d26f43e09e
commit 8361c04de9
151 changed files with 21609 additions and 10 deletions

View File

@@ -0,0 +1,55 @@
<template>
<el-row>
<el-col :span="12">
<!--last tasks-->
<el-row>
<task-table-view title="Latest Tasks"/>
</el-row>
<!--last deploys-->
<el-row>
<deploy-table-view title="Latest Deploys"/>
</el-row>
</el-col>
<el-col :span="12">
<!--basic info-->
<node-info-view/>
</el-col>
</el-row>
</template>
<script>
import {
mapState
} from 'vuex'
import DeployTableView from '../TableView/DeployTableView'
import TaskTableView from '../TableView/TaskTableView'
import NodeInfoView from '../InfoView/NodeInfoView'
export default {
name: 'NodeOverview',
components: {
NodeInfoView,
DeployTableView,
TaskTableView
},
computed: {
id () {
return this.$route.params.id
},
...mapState('node', [
'nodeForm'
])
},
methods: {},
created () {
}
}
</script>
<style scoped>
.title {
margin: 10px 0 3px 0;
}
</style>