Blame view

ant-design-vue-jeecg/src/components/jeecgbiz/JSelectDepart.vue 4.05 KB
肖超群 authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<template>
  <div class="components-input-demo-presuffix">
    <!---->
    <a-input @click="openModal" placeholder="请点击选择部门" v-model="textVals" readOnly :disabled="disabled">
      <a-icon slot="prefix" type="cluster" title="部门选择控件"/>
      <a-icon v-if="storeVals" slot="suffix" type="close-circle" @click="handleEmpty" title="清空"/>
    </a-input>

    <j-select-depart-modal
      ref="innerDepartSelectModal"
      :modal-width="modalWidth"
      :multi="multi"
      :rootOpened="rootOpened"
      :depart-id="value"
      :store="storeField"
      :text="textField"
      :treeOpera="treeOpera"
      @ok="handleOK"
      @initComp="initComp"/>
  </div>
</template>

<script>
肖超群 authored
24
25
26
27
28
29
30
31
32
33
34
35
36
import JSelectDepartModal from './modal/JSelectDepartModal'
import {underLinetoHump} from '@/components/_util/StringUtil'

export default {
  name: 'JSelectDepart',
  components: {
    JSelectDepartModal
  },
  props: {
    modalWidth: {
      type: Number,
      default: 500,
      required: false
肖超群 authored
37
    },
肖超群 authored
38
39
40
41
    multi: {
      type: Boolean,
      default: false,
      required: false
肖超群 authored
42
    },
肖超群 authored
43
44
45
46
    rootOpened: {
      type: Boolean,
      default: true,
      required: false
肖超群 authored
47
    },
肖超群 authored
48
49
50
51
52
53
54
55
56
57
58
59
60
    value: {
      type: String,
      required: false
    },
    disabled: {
      type: Boolean,
      required: false,
      default: false
    },
    // 自定义返回字段,默认返回 id
    customReturnField: {
      type: String,
      default: ''
肖超群 authored
61
    },
肖超群 authored
62
63
64
65
    backDepart: {
      type: Boolean,
      default: false,
      required: false
肖超群 authored
66
    },
肖超群 authored
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
    // 存储字段 [key field]
    store: {
      type: String,
      default: 'id',
      required: false
    },
    // 显示字段 [label field]
    text: {
      type: String,
      default: 'departName',
      required: false
    },
    treeOpera: {
      type: Boolean,
      default: false,
      required: false
    }

  },
  data() {
    return {
      visible: false,
      confirmLoading: false,
      storeVals: '', //[key values]
      textVals: '' //[label values]
    }
  },
  computed: {
    storeField() {
      let field = this.customReturnField
      if (!field) {
        field = this.store;
肖超群 authored
99
      }
肖超群 authored
100
      return underLinetoHump(field)
肖超群 authored
101
    },
肖超群 authored
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
    textField() {
      return underLinetoHump(this.text)
    }
  },
  mounted() {
    this.storeVals = this.value
  },
  watch: {
    value(val) {
      this.storeVals = val
    }
  },
  methods: {
    initComp(textVals) {
      this.textVals = textVals
    },
    //返回选中的部门信息
    backDeparInfo() {
      if (this.backDepart === true) {
        //LOWCOD-2147 【用户管理】选择部门和上级以后,负责部门没有数据可选 (陶炎改造自定义返回字段导致)
        if (this.storeVals && this.storeVals.length > 0) {
          let arr1 = this.storeVals.split(',')
          let arr2 = this.textVals.split(',')
          let info = []
          for (let i = 0; i < arr1.length; i++) {
            info.push({
              value: arr1[i],
              text: arr2[i]
            })
肖超群 authored
131
          }
肖超群 authored
132
          this.$emit('back', info)
肖超群 authored
133
        }
肖超群 authored
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
      }
    },
    openModal() {
      this.$refs.innerDepartSelectModal.show()
    },
    handleOK(rows) {
      if (!rows && rows.length <= 0) {
        this.textVals = ''
        this.storeVals = ''
      } else {
        let arr1 = []
        let arr2 = []
        for (let dep of rows) {
          arr1.push(dep[this.storeField])
          arr2.push(dep[this.textField])
肖超群 authored
149
        }
肖超群 authored
150
151
        this.storeVals = arr1.join(',')
        this.textVals = arr2.join(',')
肖超群 authored
152
      }
肖超群 authored
153
154
      this.$emit("change", this.storeVals)
      this.backDeparInfo()
肖超群 authored
155
    },
肖超群 authored
156
157
158
159
160
    getDepartNames() {
      return this.departNames
    },
    handleEmpty() {
      this.handleOK('')
肖超群 authored
161
    }
肖超群 authored
162
163
164
165
  },
  model: {
    prop: 'value',
    event: 'change'
肖超群 authored
166
  }
肖超群 authored
167
}
肖超群 authored
168
169
170
</script>

<style scoped>
肖超群 authored
171
172
173
174
175
176
177
178
179
180
181
182
183
184
.components-input-demo-presuffix .anticon-close-circle {
  cursor: pointer;
  color: #ccc;
  transition: color 0.3s;
  font-size: 12px;
}

.components-input-demo-presuffix .anticon-close-circle:hover {
  color: #f5222d;
}

.components-input-demo-presuffix .anticon-close-circle:active {
  color: #666;
}
肖超群 authored
185
</style>