媒资类型

This commit is contained in:
shijingjing
2022-06-13 13:59:03 +08:00
parent 95ac3d55ae
commit bf6d86bf4e
2 changed files with 15 additions and 12 deletions

View File

@@ -50,12 +50,12 @@ export default {
label: '任务名称',
},
{
prop: 'cyclingType',
prop: 'type',
label: '媒资类型',
width: '200',
align: 'center',
render: (h, { row })=>{
return h('span',null,this.dict.getLabel('dlbDyclingType',row.cyclingType))
return h('span',null,this.dict.getLabel('dlbResourceType',row.cyclingType))
}
},
{
@@ -81,11 +81,14 @@ export default {
width: '120',
align: 'center',
},
// {
// prop: 'serialNo',
// label: '状态',
// align: 'center',
// },
{
prop: 'broadcastStatus',
label: '状态',
align: 'center',
render: (h, {row}) => {
return h('span',null,this.dict.getLabel('dlbBroadcastStatus',row.broadcastStatus))
},
},
{
prop: 'createUserName',
label: '创建人',
@@ -100,7 +103,7 @@ export default {
}
},
created() {
this.$dict.load('dlbDyclingType','dlbMessageUrgency',).then(()=>{
this.$dict.load('dlbDyclingType','dlbMessageUrgency','dlbBroadcastStatus','dlbResourceType').then(()=>{
this.getList()
})
},