2 Commits

1 changed files with 1 additions and 1 deletions
Unified View
  1. +1
    -1
      monitorMobile/components/selectSearch.vue

+ 1
- 1
monitorMobile/components/selectSearch.vue View File

@@ -93,7 +93,7 @@
computed: { computed: {
title_() { title_() {
if (!this.multiple) { if (!this.multiple) {
let obj = this.options.find(e1 => e1.value == this.value)
let obj = this.options.find(e1 => e1.value == this.value_)
return obj ? obj.label : this.placeholder return obj ? obj.label : this.placeholder
} else { } else {
let arr = this.options.filter(e1 => this.value_.includes(e1.value)) let arr = this.options.filter(e1 => this.value_.includes(e1.value))


Loading…
Cancel
Save