村民圈

This commit is contained in:
yanran200730
2022-02-17 17:39:17 +08:00
parent aa39a450e4
commit 99fc7cf835
3 changed files with 30 additions and 42 deletions

View File

@@ -1,5 +1,5 @@
<template>
<ai-list class="notice" isTabs>
<ai-list isTabs>
<template slot="content">
<ai-search-bar class="search-bar">
<template #left>
@@ -27,13 +27,6 @@
:current.sync="search.current"
:size.sync="search.size"
@getList="getList">
<el-table-column slot="tags" label="标签">
<template slot-scope="{ row }">
<div class="table-tags">
<el-tag type="info" v-for="(item, index) in row.tags" size="small" :key="index">{{ item }}</el-tag>
</div>
</template>
</el-table-column>
<el-table-column slot="options" width="160px" fixed="right" label="操作" align="center">
<template slot-scope="{ row }">
<div class="table-options">
@@ -67,9 +60,7 @@
title: '',
areaId: ''
},
currIndex: -1,
areaList: [],
total: 10,
total: 0,
colConfigs: [
{ prop: 'content', label: '议事主题', align: 'left', width: '200px' },
{ prop: 'type', label: '议事类型', align: 'center', formart: v => this.dict.getLabel('discussType', v) },
@@ -80,8 +71,6 @@
{ prop: 'createTime', label: '发布时间', align: 'center' },
{ slot: 'options', label: '操作', align: 'center' }
],
areaName: '',
unitName: '',
tableData: []
}
},
@@ -106,12 +95,7 @@
}
}).then(res => {
if (res.code == 0) {
this.tableData = res.data.records.map(v => {
return {
...v,
content: v.content || v.title
}
})
this.tableData = res.data.records
this.total = res.data.total
}
})
@@ -141,6 +125,4 @@
</script>
<style lang="scss" scoped>
.notice {
}
</style>