JSelectMultiUser.vue 1.4 KB
Newer Older
1
<template>
JEECG低代码平台's avatar
JEECG低代码平台 已提交
2
  <!-- 定义在这里的参数都是不可在外部覆盖的,防止出现问题 -->
3 4
  <j-select-biz-component
    :value="value"
5
    :ellipsisLength="25"
6 7 8
    :listUrl="url.list"
    :columns="columns"
    v-on="$listeners"
JEECG低代码平台's avatar
JEECG低代码平台 已提交
9
    v-bind="attrs"
10
  />
11 12 13
</template>

<script>
14 15
  import JSelectBizComponent from './JSelectBizComponent'

16 17
  export default {
    name: 'JSelectMultiUser',
18 19 20
    components: { JSelectBizComponent },
    props: ['value'],
    data() {
21
      return {
22 23
        url: { list: '/sys/user/list' },
        columns: [
24 25 26 27
          { title: '姓名', align: 'center', width: '25%', widthRight: '70%', dataIndex: 'realname' },
          { title: '账号', align: 'center', width: '25%', dataIndex: 'username' },
          { title: '电话', align: 'center', width: '20%', dataIndex: 'phone' },
          { title: '出生日期', align: 'center', width: '20%', dataIndex: 'birthday' }
JEECG低代码平台's avatar
JEECG低代码平台 已提交
28 29 30 31
        ],
        // 定义在这里的参数都是可以在外部传递覆盖的,可以更灵活的定制化使用的组件
        default: {
          name: '用户',
32
          width: 1200,
JEECG低代码平台's avatar
JEECG低代码平台 已提交
33 34 35 36
          displayKey: 'realname',
          returnKeys: ['id', 'username'],
          queryParamText: '账号',
        }
37
      }
38
    },
JEECG低代码平台's avatar
JEECG低代码平台 已提交
39 40 41
    computed: {
      attrs() {
        return Object.assign(this.default, this.$attrs)
42
      }
43 44 45
    }
  }
</script>
46

47
<style lang="less" scoped></style>