This commit is contained in:
shijingjing
2022-06-09 16:42:46 +08:00
parent a4348368e0
commit 0a49f98892
4 changed files with 44 additions and 88 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
}

View File

@@ -1,5 +1,5 @@
<template>
<section class="TaskList">
<section class="taskList">
<ai-list>
<ai-title slot="title" title="任务列表" isShowBack isShowBottomBorder @onBackClick="cancel(true)"/>
<template #content>
@@ -26,7 +26,7 @@
<script>
export default {
name: 'TaskList',
name: 'taskList',
components: {},
props: {
dict: Object,
@@ -124,7 +124,7 @@ export default {
</script>
<style lang="scss" scoped>
.TaskList {
.taskList {
height: 100%;
}
</style>