import { BasicColumn } from '/@/components/Table'; //列表数据 export const columns: BasicColumn[] = [ { title: '设备编码', align: 'center', dataIndex: 'imei', }, { title: '区域名称', align: 'center', dataIndex: 'housingestateName', }, { title: '设备点位', align: 'center', dataIndex: 'content', }, { title: '桶数量', align: 'center', dataIndex: 'boxNum', }, { title: '注册会员数', align: "center", dataIndex: 'hyCount' }, { title: '投递次数', align: "center", dataIndex: 'tdcsCount' }, { title: 'ICCID', align: 'center', dataIndex: 'iccid', }, { title: '是否在线', align: 'center', dataIndex: 'isOnline', format(text) { if (text == 'true') { return '在线'; } else { return '离线'; } }, }, { title: '是否在仓库中', align: 'center', dataIndex: 'inWarehouse', format(text, record, index) { if (text == '0') { return '离仓'; } else { return '在仓'; } }, }, ];