提交 4879b29b 编写于 作者: DCloud_JSON's avatar DCloud_JSON

修复 积分不足应当是积分不够扣而不是积分小于0

上级 3060f957
...@@ -45,9 +45,8 @@ module.exports = { ...@@ -45,9 +45,8 @@ module.exports = {
/* 判断剩余多少积分:拒绝对话、扣除配置的积分数 */ /* 判断剩余多少积分:拒绝对话、扣除配置的积分数 */
let {data:[{score}]} = await userscollection.doc(this.current_uid).field({'score':1}).get() let {data:[{score}]} = await userscollection.doc(this.current_uid).field({'score':1}).get()
console.log('score----',score); console.log('score----',score);
// 如果积分数小于等于0 则抛出错误提醒客户端 // 如果积分不足 则抛出错误提醒客户端
// 注意需要判断小于0 因为特殊的情况下可能花超过 if(score < config.spentScore){
if(score == 0 || score < 0){
throw "insufficientScore" throw "insufficientScore"
} }
// 扣除对应的积分值 // 扣除对应的积分值
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册