30638
This commit is contained in:
@@ -116,7 +116,7 @@
|
|||||||
total: 0,
|
total: 0,
|
||||||
colConfigs: [
|
colConfigs: [
|
||||||
{ prop: 'taskTitle', label: '任务名称' },
|
{ prop: 'taskTitle', label: '任务名称' },
|
||||||
{ prop: 'sendType', label: '群发类型', formart: v => v === '0' ? '立即发送' : '定时发送', align: 'center' },
|
{ prop: 'typeName', label: '群发类型', align: 'center' },
|
||||||
{ slot: 'user', label: '创建人', openType: 'userName', align: 'center' },
|
{ slot: 'user', label: '创建人', openType: 'userName', align: 'center' },
|
||||||
{ prop: 'choiceTime', label: '群发时间', align: 'center' },
|
{ prop: 'choiceTime', label: '群发时间', align: 'center' },
|
||||||
{
|
{
|
||||||
@@ -162,7 +162,12 @@
|
|||||||
}
|
}
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
if (res.code == 0) {
|
if (res.code == 0) {
|
||||||
this.tableData = res.data.records
|
this.tableData = res.data.records.map(v => {
|
||||||
|
return {
|
||||||
|
...v,
|
||||||
|
typeName: '群发居民群'
|
||||||
|
}
|
||||||
|
})
|
||||||
this.total = res.data.total
|
this.total = res.data.total
|
||||||
|
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
|
|||||||
Reference in New Issue
Block a user