Преглед на файлове

tagView微调、穿梭骏初步编写

Joe преди 3 години
родител
ревизия
66b2729b97
променени са 4 файла, в които са добавени 18 реда и са изтрити 2 реда
  1. 2 0
      src/layout/components/TagsView/index.vue
  2. 1 1
      src/settings.js
  3. 0 1
      src/views/label/Label_AddUser copy.vue
  4. 15 0
      src/views/system/user/index.vue

+ 2 - 0
src/layout/components/TagsView/index.vue

@@ -229,6 +229,8 @@ export default {
       font-size: 12px;
       margin-left: 5px;
       margin-top: 4px;
+      border-radius:3px;
+      
       &:first-of-type {
         margin-left: 15px;
       }

+ 1 - 1
src/settings.js

@@ -1,5 +1,5 @@
 module.exports = {
-  title: '智慧易加管理系统',
+  title: '智慧易加后台管理系统',
 
   /**
    * 是否系统布局配置

+ 0 - 1
src/views/label/Label_AddUser copy.vue

@@ -420,7 +420,6 @@ export default {
     },
 
     // transfer(originlArr, direction, changeArr) {
-      
     //   const query = {
     //     labelId: this.activeNames,
     //     flag: "1",

+ 15 - 0
src/views/system/user/index.vue

@@ -466,6 +466,7 @@
           label: 'deptName',
         }"
         style="margin-left: 20px"
+        @change="agentChange"
       >
       </el-transfer>
     </el-dialog>
@@ -864,6 +865,20 @@ export default {
     submitFileForm() {
       this.$refs.upload.submit();
     },
+    agentChange(q,direction,e){
+      console.log(q,direction,e);
+      if(direction == 'right'){
+        // 向右添加
+      }else if(direction == 'left'){
+        // 向左减少
+      }
+    }, 
+    getLeftAgent(){
+
+    },
+    getRightAgent(){
+
+    }
   },
 };
 </script>