qrcode-api.js 586 Bytes
/**
 * 个人中心二维码 model
 * @author: weiqingting<qingting.wei@yoho.cn>
 * @date: 2016/05/16
 */
'use strict';

const logger = global.yoho.logger;
var api = global.yoho.API;

exports.getQRcodeData = (id, uid) => {
    return api.get('', {
        method: 'app.SpaceOrders.getQrByOrderCode',
        order_code: id,
        uid: uid
    }).then(result => {
        if (result && result.code === 200) {
            return result.data;
        } else {
            logger.error(`查看二维码ID: ${id}  接口返回数据错误`);
            return false;
        }
    });
};