|
@@ -19,7 +19,8 @@
|
|
|
|
|
|
<a-col :md="6" :sm="12">
|
|
|
<a-form-item label="部门" style="margin-left:8px">
|
|
|
- <a-input placeholder="请输入部门查询" v-model="queryParam.deptName"></a-input>
|
|
|
+ <j-search-select-tag v-model="queryParam.deptName" placeholder="请选择用户名称"
|
|
|
+ dict="sys_depart,depart_name,depart_name"/>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
|
|
@@ -58,17 +59,18 @@
|
|
|
<script>
|
|
|
import { getAction,deleteAction } from '@/api/manage'
|
|
|
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
|
|
|
-
|
|
|
+ import JSearchSelectTag from '@/components/dict/JSearchSelectTag'
|
|
|
export default {
|
|
|
name: 'AddressListRight',
|
|
|
mixins: [JeecgListMixin],
|
|
|
- components: {},
|
|
|
+ components: {JSearchSelectTag},
|
|
|
props: ['value'],
|
|
|
data() {
|
|
|
return {
|
|
|
description: '用户信息',
|
|
|
cardLoading: true,
|
|
|
positionInfo: {},
|
|
|
+ deptnameOptionArr:[],
|
|
|
ipagination:{
|
|
|
pageSizeOptions: ["10", "20", "30", "300"]
|
|
|
},
|
|
@@ -160,7 +162,6 @@
|
|
|
},
|
|
|
},
|
|
|
created() {
|
|
|
- this.queryPositionInfo()
|
|
|
},
|
|
|
methods: {
|
|
|
|