Blame view

ant-design-vue-jeecg/src/components/jeecgbiz/JSelectBizComponent/JSelectBizComponentModal.vue 9.49 KB
1
<template>
2
  <j-modal
3
4
    centered
    :title="name + '选择'"
5
    :width="width"
6
    :visible="visible"
7
    switchFullscreen
8
9
10
11
12
13
14
15
16
17
18
19
20
    @ok="handleOk"
    @cancel="close"
    cancelText="关闭">

    <a-row :gutter="18">
      <a-col :span="16">
        <!-- 查询区域 -->
        <div class="table-page-search-wrapper">
          <a-form layout="inline">
            <a-row :gutter="24">

              <a-col :span="14">
                <a-form-item :label="(queryParamText||name)">
21
                  <a-input v-model="queryParam[queryParamCode||valueKey]" :placeholder="'请输入' + (queryParamText||name)" @pressEnter="searchQuery"/>
22
23
24
25
26
27
28
29
30
31
32
33
34
35
                </a-form-item>
              </a-col>
              <a-col :span="8">
                  <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
                    <a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
                    <a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button>
                  </span>
              </a-col>

            </a-row>
          </a-form>
        </div>

        <a-table
36
          size="middle"
37
          bordered
38
39
          :rowKey="rowKey"
          :columns="innerColumns"
40
41
42
43
44
45
46
47
48
49
50
51
52
          :dataSource="dataSource"
          :pagination="ipagination"
          :loading="loading"
          :scroll="{ y: 240 }"
          :rowSelection="{selectedRowKeys, onChange: onSelectChange, type: multiple ? 'checkbox':'radio'}"
          :customRow="customRowFn"
          @change="handleTableChange">
        </a-table>

      </a-col>
      <a-col :span="8">
        <a-card :title="'已选' + name" :bordered="false" :head-style="{padding:0}" :body-style="{padding:0}">
53
          <a-table size="middle" :rowKey="rowKey" bordered v-bind="selectedTable">
54
55
56
57
58
59
60
61
              <span slot="action" slot-scope="text, record, index">
                <a @click="handleDeleteSelected(record, index)">删除</a>
              </span>
          </a-table>

        </a-card>
      </a-col>
    </a-row>
62
  </j-modal>
63
64
65
</template>

<script>
66
  import { getAction } from '@/api/manage'
67
  import Ellipsis from '@/components/Ellipsis'
68
  import { JeecgListMixin } from '@/mixins/JeecgListMixin'
69
  import { cloneObject, pushIfNotExist } from '@/utils/util'
70
71
72
73

  export default {
    name: 'JSelectBizComponentModal',
    mixins: [JeecgListMixin],
74
    components: { Ellipsis },
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
    props: {
      value: {
        type: Array,
        default: () => []
      },
      visible: {
        type: Boolean,
        default: false
      },
      valueKey: {
        type: String,
        required: true
      },
      multiple: {
        type: Boolean,
        default: true
      },
92
93
94
95
      width: {
        type: Number,
        default: 900
      },
96
97
98
99
100
101
102
103
104
105

      name: {
        type: String,
        default: ''
      },
      listUrl: {
        type: String,
        required: true,
        default: ''
      },
106
107
108
109
110
      // 根据 value 获取显示文本的地址,例如存的是 username,可以通过该地址获取到 realname
      valueUrl: {
        type: String,
        default: ''
      },
111
112
113
114
      displayKey: {
        type: String,
        default: null
      },
115
      columns: {
116
        type: Array,
117
        required: true,
118
119
        default: () => []
      },
120
121
122
123
124
      // 查询条件Code
      queryParamCode: {
        type: String,
        default: null
      },
125
126
127
128
129
      // 查询条件文字
      queryParamText: {
        type: String,
        default: null
      },
130
131
132
133
      rowKey: {
        type: String,
        default: 'id'
      },
134
135
136
137
138
      // 过长裁剪长度,设置为 -1 代表不裁剪
      ellipsisLength: {
        type: Number,
        default: 12
      },
139
140
141
    },
    data() {
      return {
142
        innerValue: [],
143
144
145
146
147
        // 已选择列表
        selectedTable: {
          pagination: false,
          scroll: { y: 240 },
          columns: [
148
149
150
151
            {
              ...this.columns[0],
              width: this.columns[0].widthRight || this.columns[0].width,
            },
152
153
154
155
            { title: '操作', dataIndex: 'action', align: 'center', width: 60, scopedSlots: { customRender: 'action' }, }
          ],
          dataSource: [],
        },
156
        renderEllipsis: (value) => (<ellipsis length={this.ellipsisLength}>{value}</ellipsis>),
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
        url: { list: this.listUrl },
        /* 分页参数 */
        ipagination: {
          current: 1,
          pageSize: 5,
          pageSizeOptions: ['5', '10', '20', '30'],
          showTotal: (total, range) => {
            return range[0] + '-' + range[1] + ' 共' + total + '条'
          },
          showQuickJumper: true,
          showSizeChanger: true,
          total: 0
        },
        options: [],
        dataSourceMap: {},
172
173
      }
    },
174
175
176
177
178
179
180
181
182
183
184
185
186
    computed: {
      // 表头
      innerColumns() {
        let columns = cloneObject(this.columns)
        columns.forEach(column => {
          // 给所有的列加上过长裁剪
          if (this.ellipsisLength !== -1) {
            column.customRender = (text) => this.renderEllipsis(text)
          }
        })
        return columns
      },
    },
187
188
    watch: {
      value: {
189
        deep: true,
190
191
        immediate: true,
        handler(val) {
192
193
          this.innerValue = cloneObject(val)
          this.selectedRowKeys = []
194
          this.valueWatchHandler(val)
195
          this.queryOptionsByValue(val)
196
197
198
199
200
        }
      },
      dataSource: {
        deep: true,
        handler(val) {
201
202
          this.emitOptions(val)
          this.valueWatchHandler(this.innerValue)
203
204
        }
      },
205
      selectedRowKeys: {
206
207
208
        immediate: true,
        deep: true,
        handler(val) {
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
          this.selectedTable.dataSource = val.map(key => {
            for (let data of this.dataSource) {
              if (data[this.rowKey] === key) {
                pushIfNotExist(this.innerValue, data[this.valueKey])
                return data
              }
            }
            for (let data of this.selectedTable.dataSource) {
              if (data[this.rowKey] === key) {
                pushIfNotExist(this.innerValue, data[this.valueKey])
                return data
              }
            }
            console.warn('未找到选择的行信息,key:' + key)
            return {}
          })
225
        },
226
      }
227
228
229
230
231
232
233
234
235
236
237
    },

    methods: {

      /** 关闭弹窗 */
      close() {
        this.$emit('update:visible', false)
      },

      valueWatchHandler(val) {
        val.forEach(item => {
238
          this.dataSource.concat(this.selectedTable.dataSource).forEach(data => {
239
            if (data[this.valueKey] === item) {
240
              pushIfNotExist(this.selectedRowKeys, data[this.rowKey])
241
242
243
            }
          })
        })
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
      },

      queryOptionsByValue(value) {
        if (!value || value.length === 0) {
          return
        }
        // 判断options是否存在value,如果已存在数据就不再请求后台了
        let notExist = false
        for (let val of value) {
          let find = false
          for (let option of this.options) {
            if (val === option.value) {
              find = true
              break
            }
          }
          if (!find) {
            notExist = true
            break
          }
        }
        if (!notExist) return
        getAction(this.valueUrl || this.listUrl, {
          // 这里最后加一个 , 的原因是因为无论如何都要使用 in 查询,防止后台进行了模糊匹配,导致查询结果不准确
          [this.valueKey]: value.join(',') + ',',
          pageNo: 1,
          pageSize: value.length
        }).then((res) => {
          if (res.success) {
            let dataSource = res.result
            if (!(dataSource instanceof Array)) {
              dataSource = res.result.records
            }
            this.emitOptions(dataSource, (data) => {
              pushIfNotExist(this.innerValue, data[this.valueKey])
              pushIfNotExist(this.selectedRowKeys, data[this.rowKey])
              pushIfNotExist(this.selectedTable.dataSource, data, this.rowKey)
            })
          }
        })
      },

      emitOptions(dataSource, callback) {
        dataSource.forEach(data => {
          let key = data[this.valueKey]
          this.dataSourceMap[key] = data
          pushIfNotExist(this.options, { label: data[this.displayKey || this.valueKey], value: key }, 'value')
          typeof callback === 'function' ? callback(data) : ''
        })
        this.$emit('options', this.options, this.dataSourceMap)
294
295
296
297
298
299
300
301
302
303
304
      },

      /** 完成选择 */
      handleOk() {
        let value = this.selectedTable.dataSource.map(data => data[this.valueKey])
        this.$emit('input', value)
        this.close()
      },

      /** 删除已选择的 */
      handleDeleteSelected(record, index) {
305
        this.selectedRowKeys.splice(this.selectedRowKeys.indexOf(record[this.rowKey]), 1)
306
307
308
309
        this.selectedTable.dataSource.splice(index, 1)
      },

      customRowFn(record) {
310
311
312
313
314
315
        return {
          on: {
            click: () => {
              let key = record[this.rowKey]
              if (!this.multiple) {
                this.selectedRowKeys = [key]
316
                this.selectedTable.dataSource = [record]
317
318
319
320
321
322
323
324
              } else {
                let index = this.selectedRowKeys.indexOf(key)
                if (index === -1) {
                  this.selectedRowKeys.push(key)
                  this.selectedTable.dataSource.push(record)
                } else {
                  this.handleDeleteSelected(record, index)
                }
325
326
327
328
329
330
331
332
333
334
335
              }
            }
          }
        }
      },

    }
  }
</script>
<style lang="less" scoped>
</style>