任务列表

This commit is contained in:
shijingjing
2022-06-08 17:19:32 +08:00
parent 33294ac8e7
commit fc220c7868
3 changed files with 150 additions and 16 deletions

View File

@@ -8,6 +8,7 @@
<script>
import List from './components/List'
import taskList from './components/taskList'
export default {
label: '广播设备管理',
@@ -19,19 +20,20 @@ export default {
data() {
return {
component: 'List',
component: 'taskList',
params: {},
include: [],
}
},
components: {
List
List,
taskList,
},
methods: {
onChange(data) {
if (data.type === 'add') {
this.component = 'Add'
if (data.type === 'taskList') {
this.component = 'taskList'
this.params = data.params
}