jbb 2 years ago
parent
commit
cdce34bce3
1 changed files with 5 additions and 4 deletions
  1. 5 4
      src/views/system/modules/AddressListRight.vue

+ 5 - 4
src/views/system/modules/AddressListRight.vue

@@ -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: {