bri-components 1.2.30 → 1.2.31

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bri-components",
3
- "version": "1.2.30",
3
+ "version": "1.2.31",
4
4
  "author": "dengshanghui",
5
5
  "description": "a component lib for vue project",
6
6
  "main": "src/index.js",
@@ -23,14 +23,14 @@
23
23
  :key="`${conditionItem._id}andor`"
24
24
  class="DshAdvSearch-conditions-loop"
25
25
  >
26
- <dsh-advSearch-form
26
+ <dsh-adv-search
27
27
  :isInner="true"
28
28
  :mode="mode"
29
29
  :value="conditionItem"
30
30
  :formList="searchFormList"
31
31
  :dynamicFieldsMap="dynamicFieldsMap"
32
32
  @change="change(conditionItem, arguments)"
33
- ></dsh-advSearch-form>
33
+ ></dsh-adv-search>
34
34
 
35
35
  <!-- 删除 -->
36
36
  <dsh-icons
@@ -54,7 +54,7 @@
54
54
  <template v-if="!conditionItem.__isDelete__">
55
55
  <!-- 子表的筛选,出现是有条件的,递归 -->
56
56
  <template v-if="['subSearch', 'subTableSearch'].includes(conditionItem.fieldOperator)">
57
- <dsh-advSearch-form
57
+ <dsh-adv-search
58
58
  v-if="conditionItem.finished === true"
59
59
  :isInner="true"
60
60
  :mode="mode"
@@ -62,7 +62,7 @@
62
62
  :formList="conditionItem.subFormList"
63
63
  :dynamicFieldsMap="dynamicFieldsMap"
64
64
  @change="change(conditionItem, arguments)"
65
- ></dsh-advSearch-form>
65
+ ></dsh-adv-search>
66
66
 
67
67
  <div
68
68
  v-else