Skip to content

Commit

Permalink
管理端分组和策略优化
Browse files Browse the repository at this point in the history
  • Loading branch information
iamazy committed Aug 25, 2020
1 parent 4aaa3f8 commit f8a703e
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -336,8 +336,10 @@ export default {
let storeCleanKeepUnconsumed = item.policies.storeCleanKeepUnconsumed
if (storeCleanKeepUnconsumed === true || storeCleanKeepUnconsumed === 'true') {
item.storeCleanKeepUnconsumed = true
} else {
} else if (storeCleanKeepUnconsumed === false || storeCleanKeepUnconsumed === 'false') {
item.storeCleanKeepUnconsumed = false
} else {
item.storeCleanKeepUnconsumed = ''
}
}
}
Expand Down

0 comments on commit f8a703e

Please sign in to comment.