Blame view

ant-design-vue-jeecg/src/components/jeecgbiz/JSelectMultiUser.vue 1.1 KB
1
<template>
2
3
  <j-select-biz-component
    :value="value"
4
5
6
7
8
9
10
11
12
13
14
    name="用户"
    displayKey="realname"

    :listUrl="url.list"
    :columns="columns"
    queryParamText="账号"

    v-on="$listeners"
    v-bind="$attrs"
  />
15
16
17
</template>

<script>
18
19
  import JSelectBizComponent from './JSelectBizComponent'
20
21
  export default {
    name: 'JSelectMultiUser',
22
23
24
    components: { JSelectBizComponent },
    props: ['value'],
    data() {
25
      return {
26
27
28
29
30
31
32
        url: { list: '/sys/user/list' },
        columns: [
          { title: '姓名', align: 'center', width: 100, dataIndex: 'realname' },
          { title: '账号', align: 'center', width: 100, dataIndex: 'username' },
          { title: '电话', align: 'center', width: 100, dataIndex: 'phone' },
          { title: '出生日期', align: 'center', width: 100, dataIndex: 'birthday' }
        ]
33
      }
34
35
36
37
38
39
40
41
42
43
44
    },
    watch: {
      $attrs: {
        deep: true,
        immediate: true,
        handler(val) {
          if (!val.returnKeys) {
            val.returnKeys = ['id', 'username']
          }
        }
      }
45
46
47
    }
  }
</script>
48
49

<style lang="scss" scoped></style>