@10yun/cv-mobile-ui 0.5.14 → 0.5.16
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 +1 -1
- package/ui-cv/cv-banner/cv-banner.vue +1 -0
- package/ui-cv/cv-banner-card/cv-banner-card.vue +1 -0
- package/ui-cv/cv-base-audio/cv-base-audio.vue +1 -0
- package/ui-cv/cv-cell-row/cv-cell-row.vue +1 -1
- package/ui-cv/cv-checkbox-group/cv-checkbox-group.vue +1 -0
- package/ui-cv/cv-code-sms/cv-code-sms.vue +1 -0
- package/ui-cv/cv-date-base/cv-date-base.vue +1 -0
- package/ui-cv/cv-datetime-base/cv-datetime-base.vue +1 -0
- package/ui-cv/cv-datetime-linkage/cv-datetime-linkage.vue +1 -0
- package/ui-cv/cv-dialog-bottom/cv-dialog-bottom.vue +1 -0
- package/ui-cv/cv-dialog-share/cv-dialog-share.vue +2 -0
- package/ui-cv/cv-draw-barcode/cv-draw-barcode.vue +1 -0
- package/ui-cv/cv-draw-posters/cv-draw-posters.vue +1 -0
- package/ui-cv/cv-draw-qrcode/cv-draw-qrcode.vue +1 -0
- package/ui-cv/cv-editor-parse/cv-editor-parse.vue +1 -0
- package/ui-cv/cv-editor-parse/u-parse.vue +1 -0
- package/ui-cv/cv-editor-quill/cv-editor-quill.vue +1 -0
- package/ui-cv/cv-filter-hm/cv-filter-hm.vue +1 -0
- package/ui-cv/cv-form-base/cv-form-base.vue +0 -1
- package/ui-cv/cv-geo-local/cv-geo-local.vue +1 -0
- package/ui-cv/cv-geo-region/cv-geo-region.vue +1 -0
- package/ui-cv/cv-input-digit/cv-input-digit.vue +1 -0
- package/ui-cv/cv-input-idcard/cv-input-idcard.vue +1 -0
- package/ui-cv/cv-input-number/cv-input-number.vue +1 -0
- package/ui-cv/cv-input-password/cv-input-password.vue +1 -0
- package/ui-cv/cv-input-text/cv-input-text.vue +1 -0
- package/ui-cv/cv-lists-base/cv-lists-base.vue +7 -1
- package/ui-cv/cv-lists-swiper/cv-lists-swipe2r.vue +1 -0
- package/ui-cv/cv-lists-swiper/cv-lists-swiper.vue +1 -0
- package/ui-cv/cv-nav-col/cv-nav-col.vue +1 -0
- package/ui-cv/cv-picker1/cv-picker1.vue +1 -0
- package/ui-cv/cv-picker2/cv-picker2.vue +1 -0
- package/ui-cv/cv-picker3/cv-picker3.vue +1 -0
- package/ui-cv/cv-radio-group/cv-radio-group.vue +1 -0
- package/ui-cv/cv-rate/cv-rate.vue +1 -0
- package/ui-cv/cv-rate/uni-rate.vue +1 -0
- package/ui-cv/cv-search/cv-search.vue +1 -0
- package/ui-cv/cv-specs/cv-specs.vue +1 -0
- package/ui-cv/cv-switch/cv-switch.vue +1 -0
- package/ui-cv/cv-tab-lists/cv-tab-lists.vue +7 -1
- package/ui-cv/cv-tabs-box/cv-tabs-box.vue +1 -0
- package/ui-cv/cv-textarea/cv-textarea.vue +1 -0
- package/ui-cv/cv-time-base/cv-time-base.vue +1 -0
- package/ui-cv/cv-treaty/cv-treaty.vue +1 -1
- package/ui-cv/cv-upload-avatar/cv-upload-avatar.vue +1 -0
- package/ui-cv/cv-upload-image/cv-upload-image.vue +1 -1
package/package.json
CHANGED
|
@@ -37,6 +37,7 @@ import cvCheckboxOptBase from '../cv-checkbox-opt-base/cv-checkbox-opt-base.vue'
|
|
|
37
37
|
import cvCheckboxOptTag from '../cv-checkbox-opt-tag/cv-checkbox-opt-tag.vue';
|
|
38
38
|
export default {
|
|
39
39
|
name: 'cvCheckboxGroup',
|
|
40
|
+
emits: ['input', 'update:modelValue'],
|
|
40
41
|
components: {
|
|
41
42
|
cvCheckboxOptBase,
|
|
42
43
|
cvCheckboxOptTag
|
|
@@ -4,8 +4,9 @@
|
|
|
4
4
|
<scroll-view
|
|
5
5
|
class="cv-lists-base-data-scroll-box"
|
|
6
6
|
scroll-y="true"
|
|
7
|
+
refresher-background="transparent"
|
|
8
|
+
:refresher-default-style="disableStyle && 'none'"
|
|
7
9
|
:refresher-enabled="localTabLists[index] && localTabLists[index].enabled && disableEnabled === false"
|
|
8
|
-
refresher-background="#eeeeee"
|
|
9
10
|
:refresher-triggered="localTabLists[index] && localTabLists[index].triggered"
|
|
10
11
|
@scrolltolower="onTolower(index)"
|
|
11
12
|
@scrolltoupper="onToupper"
|
|
@@ -43,6 +44,7 @@
|
|
|
43
44
|
<script>
|
|
44
45
|
export default {
|
|
45
46
|
name: 'cvListsBase',
|
|
47
|
+
emits: ['change', 'dataList', 'update:dataList'],
|
|
46
48
|
props: {
|
|
47
49
|
tabsConfig: {
|
|
48
50
|
type: [Array, Function],
|
|
@@ -71,6 +73,10 @@ export default {
|
|
|
71
73
|
return false;
|
|
72
74
|
}
|
|
73
75
|
},
|
|
76
|
+
disableStyle: {
|
|
77
|
+
type: Boolean,
|
|
78
|
+
default: false
|
|
79
|
+
},
|
|
74
80
|
/* 监听更新数据通知 ,接收时间戳 */
|
|
75
81
|
onUpdate: {
|
|
76
82
|
type: Number,
|
|
@@ -36,6 +36,7 @@ import cvRadioOptBase from '../cv-radio-opt-base/cv-radio-opt-base.vue';
|
|
|
36
36
|
import cvRadioOptTag from '../cv-radio-opt-tag/cv-radio-opt-tag.vue';
|
|
37
37
|
export default {
|
|
38
38
|
name: 'cvRadioGroup',
|
|
39
|
+
emits: ['input', 'update:modelValue'],
|
|
39
40
|
components: {
|
|
40
41
|
cvRadioOptBase,
|
|
41
42
|
cvRadioOptTag
|
|
@@ -59,12 +59,13 @@
|
|
|
59
59
|
:disableTouch="disableTouch"
|
|
60
60
|
>
|
|
61
61
|
<swiper-item v-for="(item, index) in localTabLists" :key="index" :show-scrollbar="true">
|
|
62
|
-
<!-- refresher-background="#eeeeee" -->
|
|
63
62
|
<scroll-view
|
|
64
63
|
class="cv-tab-lists-data-scroll-box"
|
|
65
64
|
scroll-y="true"
|
|
65
|
+
refresher-background="transparent"
|
|
66
66
|
:refresher-enabled="localTabLists[index].enabled && disableEnabled === false"
|
|
67
67
|
:refresher-triggered="localTabLists[index].triggered"
|
|
68
|
+
:refresher-default-style="disableStyle && 'none'"
|
|
68
69
|
@scrolltolower="onTolower(index)"
|
|
69
70
|
@scrolltoupper="onToupper"
|
|
70
71
|
@scroll="onScroll"
|
|
@@ -102,6 +103,7 @@
|
|
|
102
103
|
<script>
|
|
103
104
|
export default {
|
|
104
105
|
name: 'cvTabLists',
|
|
106
|
+
emits: ['input', 'update:dataList', 'change', 'dataLists'],
|
|
105
107
|
props: {
|
|
106
108
|
tabsConfig: {
|
|
107
109
|
type: [Array, Function],
|
|
@@ -130,6 +132,10 @@ export default {
|
|
|
130
132
|
return false;
|
|
131
133
|
}
|
|
132
134
|
},
|
|
135
|
+
disableStyle: {
|
|
136
|
+
type: Boolean,
|
|
137
|
+
default: false
|
|
138
|
+
},
|
|
133
139
|
/* 监听更新数据通知 ,接收时间戳 */
|
|
134
140
|
onUpdate: {
|
|
135
141
|
type: Number,
|