This commit is contained in:
yanran200730
2022-03-28 16:30:41 +08:00
parent cd21fd3e73
commit ca3fbd9a89
3 changed files with 9 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
<template>
<ai-list class="notice">
<template slot="title">
<ai-title title="走访排查情况统计" isShowBottomBorder :isShowArea="true" v-model="search.areaId" :instance="instance" @change="getList"></ai-title>
<ai-title title="走访排查情况统计" isShowBottomBorder :isShowArea="true" isShowBack @onBackClick="back" v-model="search.areaId" :instance="instance" @change="getList"></ai-title>
</template>
<template slot="content">
<ai-search-bar>
@@ -110,6 +110,12 @@
this.total = res.data.total
}
})
},
back () {
this.$emit('change', {
type: 'Statistics'
})
}
}
}