vue2-client 1.4.62 → 1.4.63

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,11 +1,12 @@
1
1
  # Change Log
2
2
  > 所有关于本项目的变化都在该文档里。
3
3
 
4
- **1.4.60 - 1.4.61 -2022-11-29 @苗艳强**
4
+ **1.4.60 - 1.4.63 -2022-11-29 @苗艳强**
5
5
  - 新增树形选择框
6
6
  - 修复查询方式默认选择问题
7
7
  - 修复固定集合编辑错误问题
8
8
  - 树形选择框支持模糊查询
9
+ - 修复组织机构模糊查询错误
9
10
 
10
11
  **1.4.58 - 1.4.59 -2022-11-29 @江超**
11
12
  - 修复一些小问题
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue2-client",
3
- "version": "1.4.62",
3
+ "version": "1.4.63",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -514,6 +514,7 @@ export default {
514
514
  if (this.attr.queryType === 'RIGHT_LIKE') {
515
515
  // 获取可用于模糊查询的组织机构字符串
516
516
  let node = extra.triggerNode.$parent
517
+ label = label[0]
517
518
  while (node && node.label) {
518
519
  label = node.label + '.' + label
519
520
  node = node.$parent