exchange.js
1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*
* 换货 controller
*/
'use strict';
const exchangeModel = require('../models/exchange');
const exchange = {
exchange(req, res) {
res.render('exchange', {
module: 'me',
page: 'exchange'
});
},
// 订单 可换货商品列表
order(req, res, next) {
const uid = req.user.uid; // const udi = 8039837 //test account
const orderCode = req.query.orderCode;
if (!orderCode) {
return next();
}
exchangeModel.getOrderData(uid, orderCode).then(result => {
res.json(result);
}).catch(next);
},
delivery(req, res, next) {
const uid = req.user.uid;
const areaCode = req.query.areaCode;
if (!areaCode) {
return next();
}
exchangeModel.getDelivery(uid, areaCode).then(result => {
res.json(result);
}).catch(next);
},
// 提交 换货
submit(req, res, next) {
const uid = req.user.uid;
exchangeModel.submitExchange(uid, req.body).then(result => {
res.json(result);
}).catch(next);
},
/**
* 取消换货申请
* @param req
* @param res
* @param next
*/
cancelApply(req, res, next) {
const id = req.body.id;
const uid = req.user.uid;
exchangeModel.cancelApply(uid, id).then(result => {
return res.json(result);
}).catch(next);
}
};
module.exports = exchange;