优化aitable
This commit is contained in:
@@ -155,7 +155,7 @@ export default {
|
||||
{
|
||||
prop: "validRangeType",
|
||||
label: "有效范围",
|
||||
formart: (v) => (v == 0 ? "全局" : "指定网格"),
|
||||
format: (v) => (v == 0 ? "全局" : "指定网格"),
|
||||
},
|
||||
{
|
||||
prop: "status",
|
||||
|
||||
@@ -114,8 +114,8 @@
|
||||
{ prop: 'residentName', label: '申请人' },
|
||||
{ prop: 'residentPhone', align: 'center', label: '联系电话' },
|
||||
{ prop: 'createTime', align: 'center', label: '申请时间' },
|
||||
{ prop: 'applyIntegralType', align: 'center', label: '积分类型', formart: v => this.dict.getLabel('atWillReportType', v) },
|
||||
{ prop: 'auditStatus', align: 'center', label: '状态', formart: v => v ? this.dict.getLabel('auditStatus', v) : '-' },
|
||||
{ prop: 'applyIntegralType', align: 'center', label: '积分类型', format: v => this.dict.getLabel('atWillReportType', v) },
|
||||
{ prop: 'auditStatus', align: 'center', label: '状态', format: v => v ? this.dict.getLabel('auditStatus', v) : '-' },
|
||||
{ prop: 'auditUserName', align: 'center', label: '审批人' },
|
||||
{ prop: 'auditTime', align: 'center', label: '审批时间' }
|
||||
],
|
||||
|
||||
@@ -219,7 +219,7 @@ export default {
|
||||
prop: 'residentType',
|
||||
align: 'center',
|
||||
label: '类型',
|
||||
formart: v => this.dict.getLabel('residentType', v)
|
||||
format: v => this.dict.getLabel('residentType', v)
|
||||
},
|
||||
{
|
||||
prop: 'name',
|
||||
|
||||
@@ -191,7 +191,7 @@ export default {
|
||||
prop: 'residentType',
|
||||
align: 'center',
|
||||
label: '类型',
|
||||
formart: v => this.dict.getLabel('residentType', v)
|
||||
format: v => this.dict.getLabel('residentType', v)
|
||||
},
|
||||
{
|
||||
prop: 'householdAreaName',
|
||||
@@ -212,7 +212,7 @@ export default {
|
||||
prop: 'householdName',
|
||||
align: 'center',
|
||||
label: '是否户主',
|
||||
formart: v => v === '1' ? '是' : '否'
|
||||
format: v => v === '1' ? '是' : '否'
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -238,7 +238,7 @@ export default {
|
||||
prop: 'residentType',
|
||||
align: 'center',
|
||||
label: '类型',
|
||||
formart: v => this.dict.getLabel('residentType', v)
|
||||
format: v => this.dict.getLabel('residentType', v)
|
||||
},
|
||||
{
|
||||
prop: 'name',
|
||||
|
||||
Reference in New Issue
Block a user