防返贫

This commit is contained in:
shijingjing
2022-06-11 15:08:40 +08:00
parent 9a2623232c
commit c5d3b941dc
4 changed files with 9 additions and 2 deletions

View File

@@ -71,7 +71,9 @@ export default {
ids: [],
colConfigs: [
{prop: 'sourceName', label: '媒资名称', width: 200},
{prop: 'cyclingType', label: '媒资类型', align: 'center', dict: "dlbResourceType"},
{prop: 'cyclingType', label: '媒资类型', align: 'center', render: (h, {row}) => {
return h('span', null, this.dict.getLabel('dlbDyclingType',row.cyclingType))},
},
{prop: 'messageLevel', label: '级别', align: 'center', dict: "dlbMessageUrgency"},
{prop: 'taskType', label: '播发方式', align: 'center', render: (h, {row}) => {
return h('span', null, (row.taskType == 1? '定时播放':'立即播放'))},

View File

@@ -100,7 +100,7 @@ export default {
}
},
created() {
this.$dict.load('dlbDyclingType','dlbMessageUrgency').then(()=>{
this.$dict.load('dlbDyclingType','dlbMessageUrgency',).then(()=>{
this.getList()
})
},