Showing
1 changed file
with
2 additions
and
2 deletions
@@ -186,7 +186,7 @@ exports.selectAddress = (req, res, next) => { | @@ -186,7 +186,7 @@ exports.selectAddress = (req, res, next) => { | ||
186 | /** | 186 | /** |
187 | * 发票信息 | 187 | * 发票信息 |
188 | */ | 188 | */ |
189 | -exports.invoiceInfo = (req, res, next) => { | 189 | +exports.invoiceInfo = (req, res) => { |
190 | let uid = req.user.uid; | 190 | let uid = req.user.uid; |
191 | let cookieData = req.cookies['order-info']; | 191 | let cookieData = req.cookies['order-info']; |
192 | let orderInfo = JSON.parse(cookieData); | 192 | let orderInfo = JSON.parse(cookieData); |
@@ -205,6 +205,6 @@ exports.invoiceInfo = (req, res, next) => { | @@ -205,6 +205,6 @@ exports.invoiceInfo = (req, res, next) => { | ||
205 | pageHeader: headerData, | 205 | pageHeader: headerData, |
206 | module: 'cart', | 206 | module: 'cart', |
207 | page: 'select-invoice' | 207 | page: 'select-invoice' |
208 | - })).catch(next); | 208 | + })); |
209 | })(); | 209 | })(); |
210 | }; | 210 | }; |
-
Please register or login to post a comment