This commit is contained in:
liuye
2023-12-28 17:15:19 +08:00
parent 258bf54607
commit 293737d8ac
7 changed files with 2817 additions and 1 deletions

View File

@@ -38,9 +38,10 @@
<div>{{row.matchGroupCount}}/{{row.groupCount}}</div>
</template>
</el-table-column>
<el-table-column slot="options" label="操作" align="center">
<el-table-column slot="options" label="操作" align="center" width="200px">
<template slot-scope="{ row }">
<el-button type="text" @click="toGroup(row)">群匹配</el-button>
<el-button type="text" @click="toAnnouce(row)">推送任务</el-button>
</template>
</el-table-column>
</ai-table>
@@ -208,6 +209,12 @@ export default {
type: 'GroupList',
params:row
})
},
toAnnouce(row) {
this.$emit('change', {
type: 'AnnounceList',
params:row
})
}
},
}