| | |
| | | <template> |
| | | <div> |
| | | <el-select :value="dictValue" @change="changeProjectMajor" @input="$emit('input', $event)" :placeholder="placeholder" clearable style="width: 100%;" v-if="showType === 'select'" :disabled="disabled"> |
| | | <el-select v-if="showType === 'select'" :value="dictValue" @change="changeProjectMajor" @input="$emit('input', $event)" :placeholder="placeholder" clearable style="width: 100%;" :disabled="disabled"> |
| | | <el-option :label="data.dictLabel" v-for="data in dicts" :key="data.dictValue" :value ="data.dictValue">{{data.dictLabel}}</el-option> |
| | | </el-select> |
| | | <div v-if="showType === 'radio'"> |
| | |
| | | <el-input class="radio-input" v-if="isOtherOptionSelected" v-model="inputName"></el-input> |
| | | </el-radio-group> |
| | | </div> |
| | | <zt-combo-tree v-model="dictValue" :datas="dictTrees" :disabled-filter="disabledFilter" @input="$emit('input', $event)" v-if="showType === 'tree'" :placeholder="placeholder"/> |
| | | <zt-combo-tree v-if="showType === 'tree'" v-model="dictValue" :datas="dictTrees" :disabled-filter="disabledFilter" @input="$emit('input', $event)" :placeholder="placeholder"/> |
| | | </div> |
| | | </template> |
| | | <script> |
| | |
| | | required: true |
| | | }, |
| | | excluded: {// 排除的 |
| | | type: Array, |
| | | default: function () { |
| | | return [] |
| | | } |
| | | }, |
| | | additional: {// 添加的 |
| | | type: Array, |
| | | default: function () { |
| | | return [] |
| | |
| | | if (this.excluded.length > 0) { |
| | | let excludedArray = [] |
| | | this.excluded.forEach(value => excludedArray.push(value + '')) |
| | | return dicts.filter(option => excludedArray.indexOf(option.dictValue + '') < 0) |
| | | } else { |
| | | return dicts |
| | | dicts = dicts.filter(option => excludedArray.indexOf(option.dictValue + '') < 0) |
| | | } |
| | | return dicts.concat(this.additional); |
| | | } |
| | | }, |
| | | watch: { |