n20-common-lib 3.0.44 → 3.0.46
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
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
<el-form
|
|
4
4
|
v-show="visible"
|
|
5
5
|
ref="advancedFilter"
|
|
6
|
-
style="display: flex; align-items: center; flex-wrap: wrap"
|
|
7
6
|
:class="prefixCls + '-body'"
|
|
8
7
|
@submit.native.prevent="() => {}"
|
|
9
8
|
>
|
|
@@ -568,3 +567,11 @@ export default {
|
|
|
568
567
|
}
|
|
569
568
|
}
|
|
570
569
|
</script>
|
|
570
|
+
|
|
571
|
+
<style scoped>
|
|
572
|
+
.n20-advanced-filter-body {
|
|
573
|
+
display: flex;
|
|
574
|
+
align-items: center;
|
|
575
|
+
flex-wrap: wrap;
|
|
576
|
+
}
|
|
577
|
+
</style>
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
popper-class="pro-filter-view-popover"
|
|
9
9
|
placement="bottom-start"
|
|
10
10
|
trigger="click"
|
|
11
|
-
class="m-r"
|
|
11
|
+
class="m-r-s"
|
|
12
12
|
>
|
|
13
13
|
<el-button slot="reference" class="botton" :class="{ activiti: selectedItem !== '无视图' }">
|
|
14
14
|
<div class="flex-box flex-v m-r">
|
|
@@ -316,7 +316,7 @@ export default {
|
|
|
316
316
|
})
|
|
317
317
|
},
|
|
318
318
|
changeFn(value) {
|
|
319
|
-
|
|
319
|
+
this.$emit('changeFn', value)
|
|
320
320
|
},
|
|
321
321
|
filterFn() {
|
|
322
322
|
this.$emit('filter', this.filterObj)
|
|
@@ -554,7 +554,7 @@ export default {
|
|
|
554
554
|
|
|
555
555
|
<style scoped>
|
|
556
556
|
.filter.is-hidden {
|
|
557
|
-
padding:
|
|
557
|
+
padding: 4px;
|
|
558
558
|
border-bottom: none !important;
|
|
559
559
|
}
|
|
560
560
|
</style>
|