75 lines
1.9 KiB
Vue
75 lines
1.9 KiB
Vue
<template>
|
||
<!-- 定义在这里的参数都是不可在外部覆盖的,防止出现问题 -->
|
||
<j-select-biz-component
|
||
:value="value"
|
||
:ellipsisLength="25"
|
||
:listUrl="url.list"
|
||
:columns="columns"
|
||
v-on="$listeners"
|
||
v-bind="attrs"
|
||
/>
|
||
</template>
|
||
|
||
<script>
|
||
// import JDate from '@comp/jero/JDate'
|
||
import JSelectBizComponent from './JSelectBizComponent'
|
||
|
||
export default {
|
||
name: 'JSelectMultiUser',
|
||
components: { /* JDate, */ JSelectBizComponent },
|
||
props: {
|
||
value: null, // any type
|
||
queryConfig: {
|
||
type: Array,
|
||
default: () => []
|
||
}
|
||
},
|
||
data () {
|
||
return {
|
||
url: { list: '/sys/user/page' },
|
||
columns: [
|
||
{ title: '用户账号', align: 'center', width: '25%', dataIndex: 'username' },
|
||
{ title: '用户姓名', align: 'center', width: '25%', widthRight: '70%', dataIndex: 'realname' },
|
||
{ title: '性别', align: 'center', dataIndex: 'sex_dictText' },
|
||
{ title: '电话', align: 'center', width: '20%', dataIndex: 'phone' },
|
||
{
|
||
title: '部门',
|
||
align: 'center',
|
||
dataIndex: 'orgCodeTxt'
|
||
}
|
||
],
|
||
// 定义在这里的参数都是可以在外部传递覆盖的,可以更灵活的定制化使用的组件
|
||
default: {
|
||
name: '用户',
|
||
width: 1200,
|
||
displayKey: 'realname',
|
||
returnKeys: ['id', 'username'],
|
||
queryParamText: '账号'
|
||
},
|
||
// 多条件查询配置
|
||
queryConfigDefault: [
|
||
{
|
||
key: 'realname',
|
||
label: '姓名'
|
||
},
|
||
{
|
||
key: 'sex',
|
||
label: '性别',
|
||
// 如果包含 dictCode,那么就会显示成下拉框
|
||
dictCode: 'sex'
|
||
}
|
||
]
|
||
}
|
||
},
|
||
computed: {
|
||
attrs () {
|
||
return Object.assign(this.default, this.$attrs, {
|
||
queryConfig: this.queryConfigDefault.concat(this.queryConfig)
|
||
})
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style lang="less" scoped></style>
|