拆分列表

This commit is contained in:
caoyang
2022-02-21 16:07:16 +08:00
parent 1ede18bca5
commit 428d6e4d21
9 changed files with 391 additions and 24 deletions
@@ -67,14 +67,19 @@
/>
</div>
</div>
<sub-area v-if="visible" :subVisible="visible" @visible="areaVisible"></sub-area>
</a-card>
</div>
</template>
<script>
import { getAction, postAction, deleteAction, putAction } from '@/api/manage'
// import search from '@/components/search'
import subArea from './module/subArea'
export default {
name:'subscribtion',
components:{
subArea
},
data(){
return{
selectedRowKeys:[],
@@ -123,6 +128,7 @@
}
],
tableData:[], //列表数据
visible:false,
}
},
mounted() {
@@ -145,7 +151,7 @@
},
//订阅领域管理
handleBatManage(){
this.visible=true
},
//批量取消收藏
handleBatCancel(){
@@ -185,8 +191,10 @@
//点击名称
titleClick(records){
},
areaVisible(val){
this.visible=val
}
}
}
</script>