bri-components 1.2.29 → 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/lib/bri-components.min.js +2 -2
- package/package.json +1 -1
- package/src/components/form/DshAdvSearch.vue +4 -4
- package/src/index.js +2 -2
- /package/src/styles/components/form/{DshAdvSearchForm.less → DshAdvSearch.less} +0 -0
- /package/src/styles/components/other/{DshAvatar.less → BriAvatar.less} +0 -0
package/package.json
CHANGED
|
@@ -23,14 +23,14 @@
|
|
|
23
23
|
:key="`${conditionItem._id}andor`"
|
|
24
24
|
class="DshAdvSearch-conditions-loop"
|
|
25
25
|
>
|
|
26
|
-
<dsh-
|
|
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-
|
|
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-
|
|
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-
|
|
65
|
+
></dsh-adv-search>
|
|
66
66
|
|
|
67
67
|
<div
|
|
68
68
|
v-else
|
package/src/index.js
CHANGED
|
@@ -38,6 +38,8 @@ import BriIframe from "./components/other/BriIframe.vue";
|
|
|
38
38
|
import BriSvg from "./components/other/BriSvg.vue";
|
|
39
39
|
|
|
40
40
|
// small
|
|
41
|
+
import DshRender from "./components/small/render.js";
|
|
42
|
+
import DshListRender from "./components/small/DshListRender.js";
|
|
41
43
|
import BriButton from "./components/small/BriButton.vue";
|
|
42
44
|
import BriDrawer from "./components/small/BriDrawer.vue";
|
|
43
45
|
import BriTooltip from "./components/small/BriTooltip.vue";
|
|
@@ -49,8 +51,6 @@ import DshSteps from "./components/small/DshSteps.vue";
|
|
|
49
51
|
import DshTabs from "./components/small/DshTabs.vue";
|
|
50
52
|
import DshTags from "./components/small/DshTags.vue";
|
|
51
53
|
import DshTitle from "./components/small/DshTitle.vue";
|
|
52
|
-
import DshRender from "./components/small/render.js";
|
|
53
|
-
import DshListRender from "./components/small/DshListRender.js";
|
|
54
54
|
|
|
55
55
|
/* -------------------- 局部组件 ----------------------- */
|
|
56
56
|
// Error
|
|
File without changes
|
|
File without changes
|