Commit 24b4b48a authored by qinhaitao's avatar qinhaitao

fix: 🐛 详细地址字段

parent f24d22a0
......@@ -217,7 +217,7 @@ export default class BaseController {
v.type == 1 ? '/' : v.province ? v.province: '未填',
v.type == 1 ? '/' : v.city ? v.city : '未填',
v.type == 1 ? '/' : v.area ? v.area : '未填',
v.type == 1 ? '/' : v.addressdetail ? v.addressdetail : '未填',
v.type == 1 ? '/' : v.addressDetail ? v.addressDetail : '未填',
v.type == 1 ? '/' : shipMsg[v.shipStatus],
v.type == 1 ? '/' : v.shipCompany || '/',
v.type == 1 ? '/' : v.shipNum || '/'
......@@ -332,7 +332,7 @@ export default class BaseController {
}
console.log(`awardslist:》》》 ${JSON.stringify(awardslist)}《《《`)
awardslist.map(item => {
let ad = item.province + item.city + item.area + item.addressdetail,
let ad = item.province + item.city + item.area + item.addressDetail,
type0 = item.type
item.prizeId = item._id
item.createTime = formatTime(new Date(item.createTime + EIGHT_HOURS)) || ''
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment