123456789101112131415161718192021222324252627282930 |
- export const columns = [
- { title: window.$t('lotCard.iccid'), dataIndex: 'iccid', align: 'center', width: 200 },
- { title: window.$t('lotCard.status'), dataIndex: 'statusName', align: 'center', width: 100 },
- { title: window.$t('lotCard.created_at'), dataIndex: 'created_at', align: 'center', width: 200 },
- // { title: window.$t('lotCard.deleted_at'), dataIndex: 'deleted_at', align: 'center', width: 200 },
- { title: window.$t('lotCard.updated_at'), dataIndex: 'updated_at', align: 'center', width: 200 },
- { title: window.$t('lotCard.msisdn'), dataIndex: 'msisdn', align: 'center', width: 200 },
- { title: window.$t('lotCard.source'), dataIndex: 'sourceName', align: 'center', width: 200 },
- { title: window.$t('lotCard.ExpireTime'), dataIndex: 'expire_time', align: 'center', width: 200 },
- { title: window.$t('lotCard.UserId'), dataIndex: 'user_id', align: 'center', width: 200 },
- { title: window.$t('lotCard.tariff'), dataIndex: 'tariff', align: 'center', width: 200 },
- { title: window.$t('lotCard.ServiceUsageMode'), dataIndex: 'serviceName', align: 'center', width: 200 },
- { title: window.$t('lotCard.LastModifyTime'), dataIndex: 'last_modify_time', align: 'center', width: 200 },
- // {
- // title: window.$t('global.common.operations'),
- // dataIndex: 'id',
- // slotName: 'id',
- // align: 'center',
- // width: 280,
- // fixed: "right",
- // }
- ]
- export const columnsTrafficUse = [
- { title: window.$t('lotCard.appName'), dataIndex: 'appName', align: 'center', width: 200 },
- { title: window.$t('lotCard.mcc'), dataIndex: 'mcc', align: 'center', width: 100 },
- { title: window.$t('lotCard.qtaconsumption'), dataIndex: 'qtaconsumption', align: 'center', width: 200 },
- { title: window.$t('lotCard.time'), dataIndex: 'time', align: 'center', width: 200 },
- ]
|