This commit is contained in:
yanran200730
2021-12-23 17:41:57 +08:00
parent 14578a575e
commit 5e51bfaaa4

View File

@@ -82,6 +82,7 @@
{ prop: 'name', label: '事主姓名' },
{ prop: 'phone', align: 'center', label: '联系电话' },
{ prop: 'type', align: 'center', label: '类型', formart: v => this.dict.getLabel('marriageType', v) },
{ prop: 'modeType', align: 'center', label: '方式', formart: v => this.dict.getLabel('modeType', v) },
{ prop: 'personType', align: 'center', label: '人员性质', formart: v => this.dict.getLabel('marriagePersonType', v) },
{ prop: 'createTime', align: 'center', label: '发布时间' }
],
@@ -93,7 +94,7 @@
},
created () {
this.dict.load(['marriageType', 'marriagePersonType']).then(() => {
this.dict.load(['marriageType', 'marriagePersonType', 'modeType']).then(() => {
this.getList()
})
},