Blame view

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

    <j-select-depart-modal
      ref="innerDepartSelectModal"
      :modal-width="modalWidth"
      :multi="multi"
      :rootOpened="rootOpened"
14
15
16
17
      :depart-id="value"
      :store="storeField"
      :text="textField"
      :treeOpera="treeOpera"
18
19
20
21
22
23
24
      @ok="handleOK"
      @initComp="initComp"/>
  </div>
</template>

<script>
  import JSelectDepartModal from './modal/JSelectDepartModal'
25
  import { underLinetoHump } from '@/components/_util/StringUtil'
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
  export default {
    name: 'JSelectDepart',
    components:{
      JSelectDepartModal
    },
    props:{
      modalWidth:{
        type:Number,
        default:500,
        required:false
      },
      multi:{
        type:Boolean,
        default:false,
        required:false
      },
      rootOpened:{
        type:Boolean,
        default:true,
        required:false
      },
      value:{
        type:String,
        required:false
      },
      disabled:{
        type: Boolean,
        required: false,
        default: false
55
56
57
58
      },
      // 自定义返回字段,默认返回 id
      customReturnField: {
        type: String,
59
        default: ''
60
61
62
63
64
      },
      backDepart: {
        type: Boolean,
        default: false,
        required: false
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
      },
      // 存储字段 [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
82
      }
83
84
85
86
87
88
    },
    data(){
      return {
        visible:false,
        confirmLoading:false,
89
90
91
92
93
94
95
96
97
98
99
100
101
102
        storeVals: '', //[key values]
        textVals: '' //[label values]
      }
    },
    computed:{
      storeField(){
        let field = this.customReturnField
        if(!field){
          field = this.store;
        }
        return underLinetoHump(field)
      },
      textField(){
        return underLinetoHump(this.text)
103
104
105
      }
    },
    mounted(){
106
      this.storeVals = this.value
107
108
109
    },
    watch:{
      value(val){
110
        this.storeVals = val
111
112
113
      }
    },
    methods:{
114
115
      initComp(textVals){
        this.textVals = textVals
116
117
118
119
      },
      //返回选中的部门信息
      backDeparInfo(){
        if(this.backDepart===true){
120
121
          //LOWCOD-2147 【用户管理】选择部门和上级以后,负责部门没有数据可选 (陶炎改造自定义返回字段导致)
          if(this.storeVals && this.storeVals.length>0){
122
123
            let arr1 = this.storeVals.split(',')
            let arr2 = this.textVals.split(',')
124
125
126
127
128
129
130
131
132
133
            let info = []
            for(let i=0;i<arr1.length;i++){
              info.push({
                value: arr1[i],
                text: arr2[i]
              })
            }
            this.$emit('back', info)
          }
        }
134
135
136
137
      },
      openModal(){
        this.$refs.innerDepartSelectModal.show()
      },
138
      handleOK(rows) {
139
        if (!rows && rows.length <= 0) {
140
141
          this.textVals = ''
          this.storeVals = ''
142
        } else {
143
144
145
146
147
148
149
150
          let arr1 = []
          let arr2 = []
          for(let dep of rows){
            arr1.push(dep[this.storeField])
            arr2.push(dep[this.textField])
          }
          this.storeVals = arr1.join(',')
          this.textVals = arr2.join(',')
151
        }
152
        this.$emit("change", this.storeVals)
153
        this.backDeparInfo()
154
155
156
157
158
159
160
      },
      getDepartNames(){
        return this.departNames
      },
      handleEmpty(){
        this.handleOK('')
      }
161
162
163
164
    },
    model: {
      prop: 'value',
      event: 'change'
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
    }
  }
</script>

<style scoped>
  .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;
  }
</style>