优化aitable

This commit is contained in:
aixianling
2023-01-09 09:36:10 +08:00
parent 275461a474
commit b576a61551
88 changed files with 203 additions and 246 deletions

View File

@@ -155,7 +155,7 @@ export default {
{
prop: "validRangeType",
label: "有效范围",
formart: (v) => (v == 0 ? "全局" : "指定网格"),
format: (v) => (v == 0 ? "全局" : "指定网格"),
},
{
prop: "status",

View File

@@ -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: '审批时间' }
],

View File

@@ -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',

View File

@@ -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',