store-manage-app/src/pages/audits/data.data.js

35 lines
708 B
JavaScript

import { timeFormat } from '@climblee/uv-ui/libs/function'
export default {
//清洁任务
task_hygienes: [
// {
// title: '申请人',
// dataIndex: 'name',
// },
{
title: '所属门店',
dataIndex: 'taskable.store.title',
// borderBottom: false,
// labelPosition: 'top'
},
{
title: '电话号码',
dataIndex: '',
},
{
title: '申请时间',
dataIndex: 'created_at',
format: timeFormat,
},
{
title: '清洁范围',
dataIndex: 'taskable.description',
labelPosition: 'top',
},
{
title: '清洁结果',
dataIndex: 'taskable.photos',
type: 'album',
},
]
}