mixin.js 336 B

1234567891011121314
  1. export default {
  2. computed: {
  3. payChannelOptions () {
  4. const options = this.$store.state.app.payChannelOptions.filter(i => i.indexOf('旅行社') < 0) || []
  5. const type = this.$route.meta.type
  6. if (type === 'team') {
  7. return options
  8. }
  9. return options.filter(i => i !== '团队授信')
  10. }
  11. }
  12. }