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"> @getList="getTableData" :col-configs="colConfigs" :dict="dict">
<el-table-column slot="options" label="操作" fixed="right" align="center"> <el-table-column slot="options" label="操作" fixed="right" align="center">
<template slot-scope="{row}"> <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> </template>
</el-table-column> </el-table-column>
</ai-table> </ai-table>
@@ -55,10 +55,10 @@ export default {
...mapState(['user']), ...mapState(['user']),
colConfigs() { colConfigs() {
return [ 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: "name", align: "center"}, {label: "获得积分", prop: "nowIntegral", align: "center"},
{slot: "options"} {slot: "options"}
] ]
}, },
@@ -80,7 +80,7 @@ export default {
areaTree: [], areaTree: [],
defaultProps: { defaultProps: {
children: 'children', children: 'children',
label: 'name' label: 'name',
}, },
createTime: '', createTime: '',
partyOrgId: '', partyOrgId: '',
@@ -130,19 +130,14 @@ export default {
return data.name.indexOf(value) !== -1 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) { showDetail(id) {
this.$router.push({query: {id}}) this.$router.push({query: {id}})
}, },
}, },
created() { created() {
this.dict.load('partyType').then(() => {
this.getTableData() this.getTableData()
})
} }
} }
</script> </script>

View File

@@ -166,6 +166,7 @@ export default {
{prop: "eventDesc", label: "简介", dict: "integralRuleEventType", align: "center", "show-overflow-tooltip": true}, {prop: "eventDesc", label: "简介", dict: "integralRuleEventType", align: "center", "show-overflow-tooltip": true},
{prop: "ruleType", label: "规则", dict: "partyIntegralRuleRuleType", align: "center"}, {prop: "ruleType", label: "规则", dict: "partyIntegralRuleRuleType", align: "center"},
{prop: "scoringCycle", label: "周期范围", dict: "integralRuleScoringCycle", align: "center"}, {prop: "scoringCycle", label: "周期范围", dict: "integralRuleScoringCycle", align: "center"},
{prop: "scoringCycle", label: "积分分值", dict: "integralRuleScoringCycle", align: "center"},
{prop: "status", label: "状态", align: "center", width: 96, dict: "integralRuleStatus"}, {prop: "status", label: "状态", align: "center", width: 96, dict: "integralRuleStatus"},
{slot: "options", label: "操作", align: "center"}, {slot: "options", label: "操作", align: "center"},
], ],