// 把excel文件中的日期格式的内容转回成标准时间
export function formatExcelDate(numb, format = '/') {
const time = new Date((numb - 25567) * 24 * 3600000 - 5 * 60 * 1000 - 43 * 1000 - 24 * 3600000 - 8 * 3600000)
time.setYear(time.getFullYear())
const year = time.getFullYear() + ''
const month = time.getMonth() + 1 + ''
const date = time.getDate() + ''
if (format && format.length === 1) {
return year + format + month + format + date
}
return year + (month < 10 ? '0' + month : month) + (date < 10 ? '0' + date : date)
}
后端需要的数据是这样的格式的
[{'姓名':'小张', '手机号': '13712345678'}{.....}]
我们需要将他转换为
[ {'username':'小张','mobile': '13712345678'}, {.....} ]
思路:
1.定义一个数据对象 key是中文 value是英文 我们只需要对象[中文]就额可以拿到对象中的英 文value 例如 :{username:"姓名"}
2.使用Object.keys拿到么一个数组中所有的key属性 ---中文key
3.使用map循环数组 数组里面有几项就转换成几个 返回的是一个数组
4.在map定义空对象 之后循环中文key的每一项来处理每一个数据
5.给空对象的英文key进行赋值 数组里的每一项的中文key
代码如下
format(result, header) {
const mapInfo = {
'入职日期': 'timeOfEntry',
'手机号': 'mobile',
'姓名': 'username',
'转正日期': 'correctionTime',
'工号': 'workNumber',
'部门': 'departmentName',
'聘用形式': 'formOfEmployment'
}
const arr = result.map(it => {
const enobj = {}
header.forEach(zhkey => {
const enkey = mapInfo[zhkey]
if (enkey === 'timeOfEntry' || enkey === 'correctionTime') {
enobj[enkey] = new Date(formatExcelDate(it[zhkey]))
} else {
enobj[enkey] = it[zhkey]
}
})
arr.push(enobj)
})
return arr
},
formatData(list) {
const map = {
'id': '编号',
'password': '密码',
'mobile': '手机号',
'username': '姓名',
'timeOfEntry': '入职日期',
'formOfEmployment': '聘用形式',
'correctionTime': '转正日期',
'workNumber': '工号',
'departmentName': '部门',
'staffPhoto': '头像地址'
}
console.log(list)
let header = []
// header = ['id', 'mobile', 'username', .....]
// data = [
// ['65c2', '1380000002', '管理员', ....],
// ['65c3', '1380000003', '孙财', ....],
// ]
let data = []
// 开始代码
// 找到一个元素
const one = list[0]
if (!one) {
return { header, data }
}
header = Object.keys(one).map(key => {
return map[key]
})
// data把list中每一个对象转成 对应的value数组
data = list.map(obj1 => {
// 把 Obj['formOfEmployment']: 1 , 2 ---> '正式', '非正式'
const key = obj1['formOfEmployment'] // 1, 2
obj1['formOfEmployment'] = obj[key] // hireTypEnmu:{1:'正式', '2':'非正式' }
return Object.values(obj1)
})
return { header, data }
},