物流信息

This commit is contained in:
quantulr
2024-05-10 15:18:51 +08:00
parent e3513e70fa
commit 67cdb9e667
14 changed files with 194 additions and 73 deletions

8
wxParse/arrmap.js Normal file
View File

@ -0,0 +1,8 @@
function arrMap(arr, field) {
return arr.map(el => el[field])
}
module.exports = {
arrMap
}