|
@@ -221,6 +221,12 @@ export default {
|
|
|
let result = JSON.parse(JSON.stringify(this.result))
|
|
|
this.addDomain(result, true)
|
|
|
if (valid && !result.errorText) {
|
|
|
+ // 如果奖励金额为空时,默认为0
|
|
|
+ result.domains.forEach(item => {
|
|
|
+ if(!item.money) {
|
|
|
+ item.money = 0
|
|
|
+ }
|
|
|
+ })
|
|
|
let params = {
|
|
|
organId: result.organId,
|
|
|
vipGroupCategoryIdList: result.vipGroupCategoryIdList.join(','),
|