gift-service.js
1.92 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
68
69
70
71
72
73
/**
* 个人中心---兑换礼品卡
* @author gaohongwei <hongwei.gao@yoho.cn>
* @date: 2016/9/7
*/
'use strict';
const Promise = require('bluebird');
const co = Promise.coroutine;
const _ = require('lodash');
const UserApi = require('./user-api');
const CurrencyApi = require('./currency-api');
module.exports = class extends global.yoho.BaseModel {
constructor(ctx) {
super(ctx);
}
/**
* 礼品卡页面
*/
index(params, uid) {
let that = this;
return co(function*() {
let respData = {},
type = params.type || '',
yohoCoinResult;
let currencyDataModel = new CurrencyApi(that.ctx);
if (type !== '') {
yohoCoinResult = yield currencyDataModel.yohoCoinTotal(uid);
let yohoCoinInfo = yohoCoinResult.data;
if (yohoCoinInfo) {
respData.gift = {
resultInfo: {
success: (Number(type) === 1) ? true : false,
yohoCoin: yohoCoinInfo.yohocoin_num ? yohoCoinInfo.yohocoin_num : 0
}
};
}
} else {
respData.gift = {
resultInfo: false
};
}
return respData;
})();
}
/**
* 个人中心-兑换礼品卡提交返回信息
*/
exchange(req, params, uid) {
let that = this;
return co(function*() {
let data = {};
let userDataModel = new UserApi(that.ctx);
data.giftCardCode1 = _.trim(params.giftCardCode1 || '');
data.giftCardCode2 = _.trim(params.giftCardCode2 || '');
data.giftCardCode3 = _.trim(params.giftCardCode3 || '');
let respData = yield userDataModel.exchangeGift(data, uid);
return respData;
})();
}
};