rt-sim-training-client/src/views/lesson/home.vue

99 lines
2.8 KiB
Vue
Raw Normal View History

2019-09-26 15:08:53 +08:00
<template>
2019-09-29 14:27:58 +08:00
<div>
<el-table
:data="tableData"
style="margin-bottom: 20px;"
row-key="id"
border
default-expand-all
:tree-props="{children: 'children', hasChildren: 'hasChildren'}">
<el-table-column
prop="date"
label="日期"
sortable
width="180">
</el-table-column>
<el-table-column
prop="name"
label="姓名"
sortable
width="180">
</el-table-column>
<el-table-column
prop="address"
label="地址">
</el-table-column>
</el-table>
</div>
2019-09-26 15:08:53 +08:00
</template>
<script>
2019-09-29 14:27:58 +08:00
import { getDraftLesson } from '@/api/designPlatform';
2019-09-26 15:08:53 +08:00
export default {
2019-09-29 14:27:58 +08:00
name: 'LessonHome',
2019-09-26 15:08:53 +08:00
components: {
},
computed: {
2019-09-29 14:27:58 +08:00
mapId() {
return this.$route.params.mapId;
2019-09-26 15:08:53 +08:00
}
},
2019-09-29 14:27:58 +08:00
data() {
return {
tableData: [{
id: 1,
date: '2016-05-02',
name: '王小虎',
address: '上海市普陀区金沙江路 1518 弄'
}, {
id: 2,
date: '2016-05-04',
name: '王小虎',
address: '上海市普陀区金沙江路 1517 弄'
}, {
id: 3,
date: '2016-05-01',
name: '王小虎',
address: '上海市普陀区金沙江路 1519 弄',
children: [{
id: 31,
date: '2016-05-01',
name: '王小虎',
address: '上海市普陀区金沙江路 1519 弄'
}, {
id: 32,
date: '2016-05-01',
name: '王小虎',
address: '上海市普陀区金沙江路 1519 弄'
}]
}, {
id: 4,
date: '2016-05-03',
name: '王小虎',
address: '上海市普陀区金沙江路 1516 弄'
}],
};
2019-09-26 15:08:53 +08:00
},
2019-09-29 14:27:58 +08:00
2019-09-26 15:08:53 +08:00
mounted() {
2019-09-29 14:27:58 +08:00
console.log('==============');
this.loadInitData();
2019-09-26 15:08:53 +08:00
},
methods: {
2019-09-29 14:27:58 +08:00
loadInitData() {
getDraftLesson({},this.mapId).then(response=> {
console.log(response);
});
2019-09-26 15:08:53 +08:00
}
}
};
</script>
<style rel="stylesheet/scss" lang="scss" scoped>
2019-09-29 14:27:58 +08:00
.draft {
width: 400px;
2019-09-26 15:08:53 +08:00
text-align: center;
2019-09-29 14:27:58 +08:00
margin: 20px auto;
2019-09-26 15:08:53 +08:00
}
</style>