{"remainingRequest":"D:\\jenkins\\workspace\\examine-fvue\\node_modules\\thread-loader\\dist\\cjs.js!D:\\jenkins\\workspace\\examine-fvue\\node_modules\\babel-loader\\lib\\index.js!D:\\jenkins\\workspace\\examine-fvue\\node_modules\\cache-loader\\dist\\cjs.js??ref--0-0!D:\\jenkins\\workspace\\examine-fvue\\node_modules\\vue-loader\\lib\\index.js??vue-loader-options!D:\\jenkins\\workspace\\examine-fvue\\src\\views\\examMenu\\components\\yearSubjectDialog.vue?vue&type=script&lang=js&","dependencies":[{"path":"D:\\jenkins\\workspace\\examine-fvue\\src\\views\\examMenu\\components\\yearSubjectDialog.vue","mtime":1675655021211},{"path":"D:\\jenkins\\workspace\\examine-fvue\\node_modules\\cache-loader\\dist\\cjs.js","mtime":499162500000},{"path":"D:\\jenkins\\workspace\\examine-fvue\\node_modules\\thread-loader\\dist\\cjs.js","mtime":499162500000},{"path":"D:\\jenkins\\workspace\\examine-fvue\\node_modules\\babel-loader\\lib\\index.js","mtime":315532800000},{"path":"D:\\jenkins\\workspace\\examine-fvue\\node_modules\\cache-loader\\dist\\cjs.js","mtime":499162500000},{"path":"D:\\jenkins\\workspace\\examine-fvue\\node_modules\\vue-loader\\lib\\index.js","mtime":499162500000}],"contextDependencies":[],"result":["import \"core-js/modules/web.dom.iterable\";\nimport \"core-js/modules/es6.regexp.to-string\";\nimport \"core-js/modules/es6.function.name\";\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\nimport { TableMixin } from '@/mixins/tableMixin';\nimport dictUtils from '@/components/dict/DictSelectUtils.js';\nimport questionListMenu from '@/api/examination/questionListMenu.js'; // import questionListMenu from '@/api/examination/questionListMenu.js'\n\nexport default {\n  mixins: [TableMixin],\n  name: 'SelectOrganize',\n  props: [\"userTypeId\"],\n  data: function data() {\n    return {\n      querys: [{\n        group: 'main',\n        operation: 'LIKE',\n        parentGroup: '',\n        property: 'po.full_id_',\n        relation: 'AND',\n        value: ''\n      }, {\n        group: 'main',\n        operation: 'LIKE',\n        parentGroup: '',\n        property: 'y.year_',\n        relation: 'AND',\n        value: ''\n      }, {\n        group: 'main',\n        operation: 'RIGHT_LIKE',\n        parentGroup: '',\n        property: 'y.subject_name_',\n        relation: 'AND',\n        value: ''\n      }],\n      newParam: {\n        pageBean: {\n          pageSize: -1,\n          page: 1\n        },\n        querys: [{\n          group: 'main',\n          operation: 'RIGHT_LIKE',\n          parentGroup: '',\n          property: 'name',\n          relation: 'AND',\n          value: ''\n        }]\n      },\n      search: '',\n      treeData: [],\n      defaultProps: {\n        children: 'children',\n        label: 'name'\n      },\n      visible: false,\n      UserData: [],\n      selectUser: [],\n      selectUserProps: {\n        label: \"name\"\n      },\n      nameArr: [],\n      multipleSelection: null,\n      params: {\n        majorIds: [],\n        subjectIds: []\n      },\n      userlength: null,\n      userInfoVos: [],\n      currentKey: null,\n      filterText: '',\n      expandAll: false\n    };\n  },\n  created: function created() {\n    this.trainTypeList = dictUtils.getDictItemsFromCache('xllb');\n  },\n  watch: {\n    filterText: function filterText(val) {\n      this.$refs.tree.filter(val);\n    },\n    currentKey: {\n      handler: function handler(value) {\n        var _this = this;\n\n        if (value) {\n          this.$nextTick(function () {\n            _this.$refs.tree.setCurrentKey(_this.currentKey);\n          });\n        }\n      },\n      immediate: true,\n      valType: false\n    }\n  },\n  mounted: function mounted() {},\n  methods: {\n    expandHandle: function expandHandle() {\n      console.log(this.$refs.tree.store);\n      this.expandAll = !this.expandAll;\n      this.expandNodes(this.$refs.tree.store.root);\n    },\n    // 遍历树形数据，设置每一项的expanded属性，实现展开收起\n    expandNodes: function expandNodes(node) {\n      node.expanded = this.expandAll;\n\n      for (var i = 0; i < node.childNodes.length; i++) {\n        node.childNodes[i].expanded = this.expandAll;\n\n        if (node.childNodes[i].childNodes.length > 0) {\n          this.expandNodes(node.childNodes[i]);\n        }\n      }\n    },\n    filterNode: function filterNode(value, data) {\n      if (!value) return true;\n      return data.name.indexOf(value) !== -1;\n    },\n    add: function add(val, id) {\n      console.log(val, id);\n      this.selectUser = [];\n      this.visible = true;\n\n      if (val) {\n        this.querys[0].value = val.id;\n        this.userInfoVos = val;\n        this.selectUser = JSON.parse(JSON.stringify(val));\n        this.userlength = val.length;\n      }\n\n      if (id) {\n        this.queryParam.params.id = id;\n      }\n\n      var year = new Date().getFullYear();\n      this.querys[1].value = year.toString();\n      this.multipleSelection = null;\n      this.getTree(1); // this.loadData(1)\n    },\n    searchName: function searchName() {\n      this.getTree(1);\n    },\n    // 获取列表\n    loadData: function loadData(page) {\n      var _this2 = this;\n\n      console.log(this.params);\n\n      if (page) {\n        this.queryParam.pageBean.page = page;\n      }\n\n      this.UserData = [];\n      this.queryParam.querys = [];\n\n      if (this.querys[0].value) {\n        this.queryParam.querys.push(this.querys[0]);\n      }\n\n      if (this.querys[1].value) {\n        this.queryParam.querys.push(this.querys[1]);\n      }\n\n      if (this.querys[2].value) {\n        this.queryParam.querys.push(this.querys[2]);\n      }\n\n      questionListMenu.queryAssess(this.queryParam, function (res) {\n        _this2.total = res.total;\n        _this2.UserData = res.rows;\n\n        _this2.UserData.forEach(function (u) {\n          _this2.trainTypeList.forEach(function (e) {\n            console.log(u, e);\n\n            if (u.trainType == e.value) {\n              u.trainTypeName = e.name;\n            }\n          });\n\n          _this2.$nextTick(function () {\n            _this2.selectUser.forEach(function (s) {\n              console.log(1);\n\n              _this2.UserData.forEach(function (u) {\n                if (s.id == u.id) {\n                  _this2.$refs.multipleSelection.toggleRowSelection(u);\n                }\n              });\n            });\n          });\n        });\n\n        _this2.$set(_this2.UserData);\n      });\n    },\n    // 获取人员类别树\n    getTree: function getTree(page) {\n      var _this3 = this;\n\n      if (page) {\n        this.newParam.pageBean.page = page;\n      }\n\n      questionListMenu.getPositionPage({}, function (res) {\n        _this3.treeData = res;\n        _this3.currentKey = _this3.treeData[0].id;\n        _this3.querys[0].value = _this3.currentKey;\n        console.log(_this3.currentKey);\n\n        _this3.loadData(1);\n      });\n    },\n    // 显示\n    handleShow: function handleShow(val) {\n      this.visible = true;\n      this.selectUser = [];\n      this.multipleSelection = null;\n      this.getTree(1);\n      this.loadData(1);\n    },\n    // 关闭新增人员窗口\n    handleClose: function handleClose() {\n      this.visible = false;\n      this.treeData = [];\n      this.UserData = [];\n      this.selectUser = [];\n    },\n    // 树\n    handleNodeClick: function handleNodeClick(item) {\n      console.log(item);\n      this.querys[0].value = item.id;\n      this.loadData(1);\n    },\n    // 中间列表\n    searchEnterFun: function searchEnterFun() {\n      this.loadData(1);\n    },\n    // 重置\n    reset: function reset() {\n      this.querys[0].value = \"\";\n      this.querys[1].value = \"\";\n      this.loadData(1);\n    },\n    dialogConfirm: function dialogConfirm() {\n      this.$emit('getUser', this.selectUser);\n      this.handleClose();\n    },\n    binRowKey: function binRowKey(row) {\n      return row.id;\n    },\n    selectable: function selectable(row) {\n      var _this4 = this;\n\n      var type = true;\n      this.userInfoVos.forEach(function (u, ui) {\n        if (ui <= _this4.userlength) {\n          if (row.id == u.id) {\n            type = false;\n          }\n        }\n      });\n      return type; // return true\n    },\n    manualSelection: function manualSelection(selection, row) {\n      var _this5 = this;\n\n      //先判断当前操作flag\n      //true勾选还是false取消\n      var flag = selection.some(function (item) {\n        if (row.id == item.id) return true;\n      });\n\n      if (flag) {\n        this.selectUser.push(row);\n      } else {\n        this.selectUser.forEach(function (s, si) {\n          if (s.id == row.id) {\n            _this5.selectUser.splice(si, 1);\n          }\n        });\n      }\n    },\n    handleSelectionChange: function handleSelectionChange(selection, row) {\n      var _this6 = this;\n\n      console.log(row);\n      this.selectUser = [];\n      var flag = selection.some(function (item) {\n        if (row.id == item.id) return true;\n      });\n\n      if (flag) {\n        this.selectUser.push(row);\n      } else {\n        this.selectUser.forEach(function (s, si) {\n          if (s.id == row.id) {\n            _this6.selectUser.splice(si, 1);\n          }\n        });\n      } // this.selectUser.push(row)\n      // this.multipleSelection = row;\n      // 清除 所有勾选项\n\n\n      this.$refs.multipleSelection.clearSelection(); // 当表格数据都没有被勾选的时候 就返回\n      // 主要用于将当前勾选的表格状态清除\n\n      if (selection.length == 0) return;\n      this.$refs.multipleSelection.toggleRowSelection(row, true);\n    }\n  }\n};",null]}