任务详情

This commit is contained in:
shijingjing
2022-06-08 17:57:19 +08:00
parent fc220c7868
commit d24898b558
6 changed files with 133 additions and 12 deletions

View File

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