30392 30392

This commit is contained in:
shijingjing
2022-06-30 16:24:42 +08:00
parent 555a888ab7
commit b29ddfc2fc
2 changed files with 9 additions and 13 deletions

View File

@@ -33,7 +33,7 @@
@getList="getTableData" :col-configs="colConfigs" :dict="dict">
<el-table-column slot="options" label="操作" fixed="right" align="center">
<template slot-scope="{row}">
<el-button type="text" @click="showDetail(row.id)">详情</el-button>
<el-button type="text" @click="showDetail(row.partyId)">详情</el-button>
</template>
</el-table-column>
</ai-table>
@@ -55,10 +55,10 @@ export default {
...mapState(['user']),
colConfigs() {
return [
{label: "排行榜", prop: "name", align: "center"},
{label: "排行榜", prop: "orderIndex", align: "center"},
{label: "党员姓名", prop: "name", align: "center"},
{label: "党员类型", prop: "name", align: "center"},
{label: "获得积分", prop: "name", align: "center"},
{label: "党员类型", prop: "partyType", dict: "partyType", align: "center"},
{label: "获得积分", prop: "nowIntegral", align: "center"},
{slot: "options"}
]
},
@@ -80,7 +80,7 @@ export default {
areaTree: [],
defaultProps: {
children: 'children',
label: 'name'
label: 'name',
},
createTime: '',
partyOrgId: '',
@@ -130,19 +130,14 @@ export default {
return data.name.indexOf(value) !== -1
},
handleSearchTime(v) {
// this.page.current = 1
// this.search.startTime = v?.[0]
// this.search.endTime = v?.[1]
// this.getTableData()
},
showDetail(id) {
this.$router.push({query: {id}})
},
},
created() {
this.getTableData()
this.dict.load('partyType').then(() => {
this.getTableData()
})
}
}
</script>