@10yun/cv-mobile-ui 0.5.29 → 0.5.30
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/plugins/luch-request/adapters/index.js +131 -0
- package/plugins/luch-request/core/InterceptorManager.js +50 -0
- package/plugins/luch-request/core/Request.js +199 -0
- package/plugins/luch-request/core/buildFullPath.js +20 -0
- package/plugins/luch-request/core/defaults.js +32 -0
- package/plugins/luch-request/core/dispatchRequest.js +5 -0
- package/plugins/luch-request/core/mergeConfig.js +125 -0
- package/plugins/luch-request/core/settle.js +16 -0
- package/plugins/luch-request/helpers/buildURL.js +71 -0
- package/plugins/luch-request/helpers/combineURLs.js +12 -0
- package/plugins/luch-request/helpers/isAbsoluteURL.js +14 -0
- package/plugins/luch-request/index.d.ts +197 -0
- package/plugins/luch-request/index.js +2 -0
- package/plugins/luch-request/readme.md +3 -0
- package/plugins/luch-request/utils/clone.js +264 -0
- package/plugins/luch-request/utils.js +131 -0
- package/plugins/request.js +2 -2
- package/ui-cv/components/cv-form-item/cv-form-item.vue +1 -1
- package/ui-fireui/fui-actionsheet/fui-actionsheet.vue +202 -0
- package/ui-fireui/fui-alert/fui-alert.vue +141 -0
- package/ui-fireui/fui-badge/fui-badge.vue +158 -0
- package/ui-fireui/fui-bottom-navigation/fui-bottom-navigation.vue +390 -0
- package/ui-fireui/fui-bottom-popup/fui-bottom-popup.vue +100 -0
- package/ui-fireui/fui-bubble-popup/fui-bubble-popup.vue +236 -0
- package/ui-fireui/fui-button/fui-button.vue +424 -0
- package/ui-fireui/fui-calendar/fui-calendar.js +915 -0
- package/ui-fireui/fui-calendar/fui-calendar.vue +868 -0
- package/ui-fireui/fui-card/fui-card.vue +231 -0
- package/ui-fireui/fui-cascade-selection/fui-cascade-selection.vue +538 -0
- package/ui-fireui/fui-circular-progress/fui-circular-progress.vue +261 -0
- package/ui-fireui/fui-collapse/fui-collapse.vue +179 -0
- package/ui-fireui/fui-countdown/fui-countdown.vue +301 -0
- package/ui-fireui/fui-datetime/fui-datetime.vue +570 -0
- package/ui-fireui/fui-divider/fui-divider.vue +118 -0
- package/ui-fireui/fui-drawer/fui-drawer.vue +103 -0
- package/ui-fireui/fui-dropdown-list/fui-dropdown-list.vue +70 -0
- package/ui-fireui/fui-fab/fui-fab.vue +284 -0
- package/ui-fireui/fui-footer/fui-footer.vue +131 -0
- package/ui-fireui/fui-grid/fui-grid.vue +42 -0
- package/ui-fireui/fui-grid-item/fui-grid-item.vue +142 -0
- package/ui-fireui/fui-icon/fui-icon.vue +820 -0
- package/ui-fireui/fui-image-cropper/fui-image-cropper.vue +1058 -0
- package/ui-fireui/fui-image-group/fui-image-group.vue +149 -0
- package/ui-fireui/fui-keyboard/fui-keyboard.vue +254 -0
- package/ui-fireui/fui-keyboard-input/fui-keyboard-input.vue +78 -0
- package/ui-fireui/fui-list-cell/fui-list-cell.vue +178 -0
- package/ui-fireui/fui-list-view/fui-list-view.vue +87 -0
- package/ui-fireui/fui-loading/fui-loading.vue +78 -0
- package/ui-fireui/fui-loadmore/fui-loadmore.vue +163 -0
- package/ui-fireui/fui-modal/fui-modal.vue +392 -0
- package/ui-fireui/fui-navigation-bar/fui-navigation-bar.vue +180 -0
- package/ui-fireui/fui-no-data/fui-no-data.vue +116 -0
- package/ui-fireui/fui-nomore/fui-nomore.vue +116 -0
- package/ui-fireui/fui-numberbox/fui-numberbox.vue +234 -0
- package/ui-fireui/fui-numberbox-border/fui-numberbox-border.vue +232 -0
- package/ui-fireui/fui-picture-cropper/fui-picture-cropper.vue +682 -0
- package/ui-fireui/fui-picture-cropper/fui-picture-cropper.wxs +560 -0
- package/ui-fireui/fui-rate/fui-rate.vue +167 -0
- package/ui-fireui/fui-round-progress/fui-round-progress.vue +306 -0
- package/ui-fireui/fui-scroll-top/fui-scroll-top.vue +189 -0
- package/ui-fireui/fui-sharemodel/fui-sharemodel.vue +181 -0
- package/ui-fireui/fui-skeleton/fui-skeleton.vue +248 -0
- package/ui-fireui/fui-steps/fui-steps.vue +214 -0
- package/ui-fireui/fui-sticky/fui-sticky.vue +155 -0
- package/ui-fireui/fui-sticky-wxs/fui-sticky-wxs.vue +133 -0
- package/ui-fireui/fui-sticky-wxs/fui-sticky.wxs +44 -0
- package/ui-fireui/fui-swipe-action/fui-swipe-action.vue +301 -0
- package/ui-fireui/fui-tabbar/fui-tabbar.vue +283 -0
- package/ui-fireui/fui-tabs/fui-tabs.vue +284 -0
- package/ui-fireui/fui-tabs2/fui-tabs2.vue +284 -0
- package/ui-fireui/fui-tag/fui-tag.vue +374 -0
- package/ui-fireui/fui-time-axis/fui-time-axis.vue +36 -0
- package/ui-fireui/fui-timeaxis-item/fui-timeaxis-item.vue +48 -0
- package/ui-fireui/fui-tips/fui-tips.vue +161 -0
- package/ui-fireui/fui-toast/fui-toast.vue +117 -0
- package/ui-fireui/fui-top-dropdown/fui-top-dropdown.vue +129 -0
- package/ui-fireui/fui-upload/fui-upload.vue +446 -0
- package/ui-fireui/fui-uploadsamll/fui-uploadsamll.vue +472 -0
- package/uview-plus/README.md +1 -1
- package/uview-plus/changelog-wu-tool.md +21 -0
- package/uview-plus/changelog-wu.md +91 -0
- package/uview-plus/components/u-action-sheet/_doc/changelog.md +12 -0
- package/uview-plus/components/u-action-sheet/_doc/package.json +92 -0
- package/uview-plus/components/u-action-sheet/_doc/readme.md +16 -0
- package/uview-plus/components/u-app-update/_doc/changelog.md +26 -0
- package/uview-plus/components/u-app-update/_doc/package.json +89 -0
- package/uview-plus/components/u-app-update/_doc/readme.md +16 -0
- package/uview-plus/components/u-app-update/config.js +120 -0
- package/uview-plus/components/u-app-update/img/act.png +0 -0
- package/uview-plus/components/u-app-update/img/appUploadAlertBoxBg.png +0 -0
- package/uview-plus/components/u-app-update/img/close.png +0 -0
- package/uview-plus/components/u-app-update/js-sdk/checkVersion.js +81 -0
- package/uview-plus/components/u-app-update/js-sdk/silentlyAppUpdate.js +41 -0
- package/uview-plus/components/u-app-update/pages/index.vue +8 -0
- package/uview-plus/components/u-app-update/u-app-update.vue +583 -0
- package/uview-plus/components/u-button-wu/_doc/changelog.md +6 -0
- package/uview-plus/components/u-button-wu/_doc/package.json +89 -0
- package/uview-plus/components/u-button-wu/_doc/readme.md +16 -0
- package/uview-plus/components/u-button-wu/u-button-wu.vue +522 -0
- package/uview-plus/components/u-button-wu/vue.scss +81 -0
- package/uview-plus/components/u-calendar-wu/_doc/changelog.md +145 -0
- package/uview-plus/components/u-calendar-wu/_doc/package.json +90 -0
- package/uview-plus/components/u-calendar-wu/_doc/readme.md +16 -0
- package/uview-plus/components/u-calendar-wu/calendar.js +664 -0
- package/uview-plus/components/u-calendar-wu/i18n/en.json +14 -0
- package/uview-plus/components/u-calendar-wu/i18n/index.js +8 -0
- package/uview-plus/components/u-calendar-wu/i18n/zh-Hans.json +14 -0
- package/uview-plus/components/u-calendar-wu/i18n/zh-Hant.json +14 -0
- package/uview-plus/components/u-calendar-wu/props.js +166 -0
- package/uview-plus/components/u-calendar-wu/style.css +196 -0
- package/uview-plus/components/u-calendar-wu/u-calendar-wu.vue +921 -0
- package/uview-plus/components/u-calendar-wu/util.js +552 -0
- package/uview-plus/components/u-calendar-wu/wu-calendar-block/props.js +73 -0
- package/uview-plus/components/u-calendar-wu/wu-calendar-block/wu-calendar-block.vue +122 -0
- package/uview-plus/components/u-calendar-wu/wu-calendar-item/props.js +55 -0
- package/uview-plus/components/u-calendar-wu/wu-calendar-item/wu-calendar-item.vue +293 -0
- package/uview-plus/components/u-cell/_doc/changelog.md +6 -0
- package/uview-plus/components/u-cell/_doc/package.json +89 -0
- package/uview-plus/components/u-cell/_doc/readme.md +25 -0
- package/uview-plus/components/u-checkbox/_doc/changelog.md +8 -0
- package/uview-plus/components/u-checkbox/_doc/package.json +88 -0
- package/uview-plus/components/u-checkbox/_doc/readme.md +25 -0
- package/uview-plus/components/u-code/_doc/changelog.md +6 -0
- package/uview-plus/components/u-code/_doc/package.json +86 -0
- package/uview-plus/components/u-code/_doc/readme.md +16 -0
- package/uview-plus/components/u-drag-sort/_doc/changelog.md +0 -0
- package/uview-plus/components/u-drag-sort/_doc/package.json +85 -0
- package/uview-plus/components/u-drag-sort/_doc/readme.md +16 -0
- package/uview-plus/components/u-drag-sort/u-drag-sort.vue +3 -0
- package/uview-plus/components/u-empty/u-empty.vue +27 -1
- package/uview-plus/components/u-gap/_doc/changelog.md +4 -0
- package/uview-plus/components/u-gap/_doc/package.json +86 -0
- package/uview-plus/components/u-gap/_doc/readme.md +22 -0
- package/uview-plus/components/u-icon/_doc/changelog.md +10 -0
- package/uview-plus/components/u-icon/_doc/package.json +85 -0
- package/uview-plus/components/u-icon/_doc/readme.md +10 -0
- package/uview-plus/components/u-icon/icon.js +23 -25
- package/uview-plus/components/u-icon/icons.js +213 -213
- package/uview-plus/components/u-icon/style.css +3 -3
- package/uview-plus/components/u-icon/u-icon2.vue +149 -0
- package/uview-plus/components/u-image-wu/_doc/changelog.md +21 -0
- package/uview-plus/components/u-image-wu/_doc/package.json +88 -0
- package/uview-plus/components/u-image-wu/_doc/readme.md +11 -0
- package/uview-plus/components/u-image-wu/props.js +94 -0
- package/uview-plus/components/u-image-wu/u-image-wu.vue +243 -0
- package/uview-plus/components/u-input/_doc/changelog.md +6 -0
- package/uview-plus/components/u-input/_doc/package.json +88 -0
- package/uview-plus/components/u-input/_doc/readme.md +16 -0
- package/uview-plus/components/u-line/_doc/changelog.md +8 -0
- package/uview-plus/components/u-line/_doc/package.json +86 -0
- package/uview-plus/components/u-line/_doc/readme.md +16 -0
- package/uview-plus/components/u-link/_doc/changelog.md +8 -0
- package/uview-plus/components/u-link/_doc/package.json +86 -0
- package/uview-plus/components/u-link/_doc/readme.md +20 -0
- package/uview-plus/components/u-loading-icon/_doc/changelog.md +12 -0
- package/uview-plus/components/u-loading-icon/_doc/package.json +86 -0
- package/uview-plus/components/u-loading-icon/_doc/readme.md +16 -0
- package/uview-plus/components/u-loading-icon/props.js +1 -1
- package/uview-plus/components/u-navbar/_doc/changelog.md +6 -0
- package/uview-plus/components/u-navbar/_doc/package.json +89 -0
- package/uview-plus/components/u-navbar/_doc/readme.md +16 -0
- package/uview-plus/components/u-navbar-wu/props.js +102 -0
- package/uview-plus/components/u-navbar-wu/u-navbar-wu.vue +196 -0
- package/uview-plus/components/u-number-box/_doc/changelog.md +19 -0
- package/uview-plus/components/u-number-box/_doc/package.json +88 -0
- package/uview-plus/components/u-number-box/_doc/readme.md +16 -0
- package/uview-plus/components/u-overlay/_doc/changelog.md +4 -0
- package/uview-plus/components/u-overlay/_doc/package.json +88 -0
- package/uview-plus/components/u-overlay/_doc/readme.md +16 -0
- package/uview-plus/components/u-popup/_doc/changelog.md +4 -0
- package/uview-plus/components/u-popup/_doc/package.json +92 -0
- package/uview-plus/components/u-popup/_doc/readme.md +16 -0
- package/uview-plus/components/u-popup-wu/keypress.js +45 -0
- package/uview-plus/components/u-popup-wu/u-popup-wu.vue +519 -0
- package/uview-plus/components/u-radio/_doc/changelog.md +6 -0
- package/uview-plus/components/u-radio/_doc/package.json +88 -0
- package/uview-plus/components/u-radio/_doc/readme.md +25 -0
- package/uview-plus/components/u-row/_doc/changelog.md +8 -0
- package/uview-plus/components/u-row/_doc/package.json +86 -0
- package/uview-plus/components/u-row/_doc/readme.md +16 -0
- package/uview-plus/components/u-safe-bottom/_doc/changelog.md +6 -0
- package/uview-plus/components/u-safe-bottom/_doc/package.json +86 -0
- package/uview-plus/components/u-safe-bottom/_doc/readme.md +16 -0
- package/uview-plus/components/u-sku-wu/_doc/changelog.md +27 -0
- package/uview-plus/components/u-sku-wu/_doc/package.json +93 -0
- package/uview-plus/components/u-sku-wu/_doc/readme.md +16 -0
- package/uview-plus/components/u-sku-wu/props.js +86 -0
- package/uview-plus/components/u-sku-wu/style.css +271 -0
- package/uview-plus/components/u-sku-wu/u-sku-wu.vue +864 -0
- package/uview-plus/components/u-status-bar/_doc/changelog.md +4 -0
- package/uview-plus/components/u-status-bar/_doc/package.json +86 -0
- package/uview-plus/components/u-status-bar/_doc/readme.md +16 -0
- package/uview-plus/components/u-text/_doc/changelog.md +10 -0
- package/uview-plus/components/u-text/_doc/package.json +89 -0
- package/uview-plus/components/u-text/_doc/readme.md +20 -0
- package/uview-plus/components/u-textarea/_doc/changelog.md +6 -0
- package/uview-plus/components/u-textarea/_doc/package.json +86 -0
- package/uview-plus/components/u-textarea/_doc/readme.md +25 -0
- package/uview-plus/components/u-transition/_doc/changelog.md +14 -0
- package/uview-plus/components/u-transition/_doc/package.json +86 -0
- package/uview-plus/components/u-transition/_doc/readme.md +16 -0
- package/uview-plus/components/u-transition-wu/createAnimation.js +148 -0
- package/uview-plus/components/u-transition-wu/props.js +32 -0
- package/uview-plus/components/u-transition-wu/u-transition.vue +300 -0
- package/uview-plus/components/u-verification-code/u-verification-code.vue +161 -0
- package/uview-plus/index.js +107 -94
- package/uview-plus/libs/config/config.js +46 -48
- package/uview-plus/libs/css/color.scss +32 -311
- package/uview-plus/libs/css/components-wu.scss +30 -0
- package/uview-plus/libs/css/vue.scss +10 -10
- package/uview-plus/libs/function/calc.js +61 -55
- package/uview-plus/libs/function/cc.js +66 -0
- package/uview-plus/libs/function/color/color-convert/CHANGELOG.md +54 -0
- package/uview-plus/libs/function/color/color-convert/LICENSE +21 -0
- package/uview-plus/libs/function/color/color-convert/README.md +68 -0
- package/uview-plus/libs/function/color/color-convert/conversions.js +839 -0
- package/uview-plus/libs/function/color/color-convert/index.js +81 -0
- package/uview-plus/libs/function/color/color-convert/package.json +48 -0
- package/uview-plus/libs/function/color/color-convert/route.js +97 -0
- package/uview-plus/libs/function/color/color-name/LICENSE +8 -0
- package/uview-plus/libs/function/color/color-name/README.md +11 -0
- package/uview-plus/libs/function/color/color-name/index.js +152 -0
- package/uview-plus/libs/function/color/color-name/package.json +28 -0
- package/uview-plus/libs/function/color/color-string/LICENSE +21 -0
- package/uview-plus/libs/function/color/color-string/README.md +62 -0
- package/uview-plus/libs/function/color/color-string/index.js +244 -0
- package/uview-plus/libs/function/color/color-string/package.json +39 -0
- package/uview-plus/libs/function/color/color.js +496 -0
- package/uview-plus/libs/function/color/index.js +158 -0
- package/uview-plus/libs/function/color/is-arrayish/LICENSE +21 -0
- package/uview-plus/libs/function/color/is-arrayish/README.md +16 -0
- package/uview-plus/libs/function/color/is-arrayish/index.js +9 -0
- package/uview-plus/libs/function/color/is-arrayish/package.json +45 -0
- package/uview-plus/libs/function/color/is-arrayish/yarn-error.log +1443 -0
- package/uview-plus/libs/function/color/simple-swizzle/LICENSE +21 -0
- package/uview-plus/libs/function/color/simple-swizzle/README.md +39 -0
- package/uview-plus/libs/function/color/simple-swizzle/index.js +29 -0
- package/uview-plus/libs/function/color/simple-swizzle/package.json +36 -0
- package/uview-plus/libs/function/colorGradient.js +108 -106
- package/uview-plus/libs/function/debounce.js +17 -17
- package/uview-plus/libs/function/digit.js +1 -3
- package/uview-plus/libs/function/http.js +3 -3
- package/uview-plus/libs/function/index-wu.js +231 -0
- package/uview-plus/libs/function/index.js +579 -566
- package/uview-plus/libs/function/platform.js +18 -18
- package/uview-plus/libs/function/test.js +135 -137
- package/uview-plus/libs/function/throttle.js +17 -17
- package/uview-plus/libs/luch-request/core/Request.js +199 -199
- package/uview-plus/libs/mixin/mpMixin.js +1 -0
- package/uview-plus/libs/mixin/openType.js +33 -0
- package/uview-plus/libs/util/async-validator.js +1343 -1343
- package/uview-plus/libs/util/dayjs.js +404 -0
- package/uview-plus/libs/util/route.js +101 -105
- package/uview-plus/package-wu-tool.json +84 -0
- package/uview-plus/package-wu.json +112 -0
- package/uview-plus/package.json +106 -95
- package/uview-plus/readme-wu.md +148 -0
- package/uview-ui/index.js +51 -52
- package/plugins/uni-upgrade.js +0 -294
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<view class="wu-calendar-block">
|
|
3
|
+
<view v-if="showMonth && FoldShowMonth" class="wu-calendar__box-bg">
|
|
4
|
+
<text class="wu-calendar__box-bg-text">{{ month }}</text>
|
|
5
|
+
</view>
|
|
6
|
+
<!-- 月或周日历 -->
|
|
7
|
+
<view class="wu-calendar__weeks" v-for="(item, index) in weeks" :key="index">
|
|
8
|
+
<template v-for="(weeks, weeksIndex) in item">
|
|
9
|
+
<wu-calendar-item
|
|
10
|
+
:key="weeksIndex"
|
|
11
|
+
v-if="!monthShowCurrentMonth || !weeks.empty"
|
|
12
|
+
class="wu-calendar-item--hook"
|
|
13
|
+
:weekItemStyle="weekItemStyle"
|
|
14
|
+
:weeks="weeks"
|
|
15
|
+
:calendar="calendar"
|
|
16
|
+
:selected="selected"
|
|
17
|
+
:lunar="lunar"
|
|
18
|
+
@change="choiceDate"
|
|
19
|
+
:color="color"
|
|
20
|
+
:actBadgeColor="actBadgeColor"
|
|
21
|
+
:startText="startText"
|
|
22
|
+
:endText="endText"
|
|
23
|
+
:itemHeight="itemHeight - defaultMargin"
|
|
24
|
+
:todayDefaultStyle="todayDefaultStyle"
|
|
25
|
+
></wu-calendar-item>
|
|
26
|
+
<view v-else class="wu-calendar__weeks-item" :style="[weekItemStyle]"></view>
|
|
27
|
+
</template>
|
|
28
|
+
</view>
|
|
29
|
+
</view>
|
|
30
|
+
</template>
|
|
31
|
+
|
|
32
|
+
<script>
|
|
33
|
+
import { mpMixin } from '../../../libs/mixin/mpMixin.js';
|
|
34
|
+
import { mixin } from '../../../libs/mixin/mixin.js';
|
|
35
|
+
import props from './props.js';
|
|
36
|
+
|
|
37
|
+
import { initVueI18n } from '@dcloudio/uni-i18n';
|
|
38
|
+
import i18nMessages from '../i18n/index.js';
|
|
39
|
+
const { t } = initVueI18n(i18nMessages);
|
|
40
|
+
import wuCalendarItem from '../wu-calendar-item/wu-calendar-item.vue';
|
|
41
|
+
|
|
42
|
+
export default {
|
|
43
|
+
components: { wuCalendarItem },
|
|
44
|
+
emits: ['change'],
|
|
45
|
+
mixins: [mpMixin, mixin, props],
|
|
46
|
+
data() {
|
|
47
|
+
return {
|
|
48
|
+
FoldShowMonth: false
|
|
49
|
+
};
|
|
50
|
+
},
|
|
51
|
+
mounted() {
|
|
52
|
+
this.FoldShowMonth = this.FoldStatus == 'open';
|
|
53
|
+
},
|
|
54
|
+
computed: {
|
|
55
|
+
weekItemStyle() {
|
|
56
|
+
let weeksLength = Object.keys(this.weeks).length;
|
|
57
|
+
let calendarHeight = this.FoldStatus === 'open' ? this.itemHeight * 6 : this.itemHeight;
|
|
58
|
+
let margin =
|
|
59
|
+
weeksLength && this.weeks[weeksLength - 1][0].empty
|
|
60
|
+
? this.itemHeight / (weeksLength - 1) + this.defaultMargin
|
|
61
|
+
: this.defaultMargin;
|
|
62
|
+
return {
|
|
63
|
+
marginTop: margin / 2 + 'px',
|
|
64
|
+
marginBottom: margin / 2 + 'px',
|
|
65
|
+
height: this.itemHeight - this.defaultMargin + 'px'
|
|
66
|
+
};
|
|
67
|
+
}
|
|
68
|
+
},
|
|
69
|
+
watch: {
|
|
70
|
+
FoldStatus(newVal) {
|
|
71
|
+
this.$nextTick(() => {
|
|
72
|
+
this.FoldShowMonth = this.FoldStatus == 'open';
|
|
73
|
+
});
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
methods: {
|
|
77
|
+
choiceDate(weeks) {
|
|
78
|
+
this.$emit('change', weeks);
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
};
|
|
82
|
+
</script>
|
|
83
|
+
|
|
84
|
+
<style scoped>
|
|
85
|
+
.wu-calendar-block .wu-calendar__weeks {
|
|
86
|
+
position: relative;
|
|
87
|
+
/* #ifndef APP-NVUE */
|
|
88
|
+
display: flex;
|
|
89
|
+
/* #endif */
|
|
90
|
+
flex-direction: row;
|
|
91
|
+
padding: 0 8rpx;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.wu-calendar-block .wu-calendar__weeks-item {
|
|
95
|
+
flex: 1;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.wu-calendar-block .wu-calendar__box-bg {
|
|
99
|
+
/* #ifndef APP-NVUE */
|
|
100
|
+
display: flex;
|
|
101
|
+
/* #endif */
|
|
102
|
+
justify-content: center;
|
|
103
|
+
align-items: center;
|
|
104
|
+
position: absolute;
|
|
105
|
+
top: 0;
|
|
106
|
+
left: 0;
|
|
107
|
+
right: 0;
|
|
108
|
+
bottom: 0;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.wu-calendar-block .wu-calendar__box-bg-text {
|
|
112
|
+
font-size: 100rpx;
|
|
113
|
+
transform: scale(4);
|
|
114
|
+
font-weight: bold;
|
|
115
|
+
color: #999;
|
|
116
|
+
opacity: 0.1;
|
|
117
|
+
text-align: center;
|
|
118
|
+
/* #ifndef APP-NVUE */
|
|
119
|
+
line-height: 1;
|
|
120
|
+
/* #endif */
|
|
121
|
+
}
|
|
122
|
+
</style>
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
props: {
|
|
3
|
+
color: {
|
|
4
|
+
type: String,
|
|
5
|
+
default: '#3c9cff'
|
|
6
|
+
},
|
|
7
|
+
startText: {
|
|
8
|
+
type: String,
|
|
9
|
+
default: '开始'
|
|
10
|
+
},
|
|
11
|
+
endText: {
|
|
12
|
+
type: String,
|
|
13
|
+
default: '结束'
|
|
14
|
+
},
|
|
15
|
+
weeks: {
|
|
16
|
+
type: Object,
|
|
17
|
+
default () {
|
|
18
|
+
return {}
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
calendar: {
|
|
22
|
+
type: Object,
|
|
23
|
+
default: () => {
|
|
24
|
+
return {}
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
selected: {
|
|
28
|
+
type: Array,
|
|
29
|
+
default: () => {
|
|
30
|
+
return []
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
lunar: {
|
|
34
|
+
type: Boolean,
|
|
35
|
+
default: false
|
|
36
|
+
},
|
|
37
|
+
itemHeight: {
|
|
38
|
+
type: Number,
|
|
39
|
+
default: 64
|
|
40
|
+
},
|
|
41
|
+
actBadgeColor: {
|
|
42
|
+
type: String,
|
|
43
|
+
default: '#fff',
|
|
44
|
+
},
|
|
45
|
+
weekItemStyle: {
|
|
46
|
+
type: Object,
|
|
47
|
+
default: {}
|
|
48
|
+
},
|
|
49
|
+
// 是否显示今日默认样式(默认为true)
|
|
50
|
+
todayDefaultStyle: {
|
|
51
|
+
type: Boolean,
|
|
52
|
+
default: true
|
|
53
|
+
},
|
|
54
|
+
}
|
|
55
|
+
}
|
|
@@ -0,0 +1,293 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<view
|
|
3
|
+
ref="$weeksBox"
|
|
4
|
+
class="wu-calendar-item__weeks-box"
|
|
5
|
+
:style="[
|
|
6
|
+
calendarItemStyle,
|
|
7
|
+
weekItemStyle,
|
|
8
|
+
{
|
|
9
|
+
borderTopLeftRadius: weeks.beforeRange ? '12rpx' : '',
|
|
10
|
+
borderBottomLeftRadius: weeks.beforeRange ? '12rpx' : '',
|
|
11
|
+
borderTopRightRadius: weeks.afterRange ? '12rpx' : '',
|
|
12
|
+
borderBottomRightRadius: weeks.afterRange ? '12rpx' : ''
|
|
13
|
+
}
|
|
14
|
+
]"
|
|
15
|
+
@click="choiceDate(weeks)"
|
|
16
|
+
>
|
|
17
|
+
<view class="wu-calendar-item__weeks-box-item" :style="[actMultipleStyle, { width: itemWidth, height: itemHeight + 'px' }]">
|
|
18
|
+
<!-- 自定义打点上方信息 -->
|
|
19
|
+
<text
|
|
20
|
+
v-if="weeks.extraInfo && weeks.extraInfo.topInfo"
|
|
21
|
+
class="wu-calendar-item__weeks-lunar-text"
|
|
22
|
+
:style="[{ color: weeks.extraInfo.topInfoColor || '#e43d33' }, calendarItemStyle, actMultipleStyle]"
|
|
23
|
+
>
|
|
24
|
+
{{ weeks.extraInfo.topInfo }}
|
|
25
|
+
</text>
|
|
26
|
+
<!-- 徽标 -->
|
|
27
|
+
<text
|
|
28
|
+
v-if="selected && weeks.extraInfo && weeks.extraInfo.badge"
|
|
29
|
+
class="wu-calendar-item__weeks-box-circle"
|
|
30
|
+
:style="[badgeStyle]"
|
|
31
|
+
></text>
|
|
32
|
+
<!-- 日期文字 -->
|
|
33
|
+
<text class="wu-calendar-item__weeks-box-text" :style="[calendarItemStyle, actMultipleStyle]">{{ weeks.date }}</text>
|
|
34
|
+
<!-- 今日的文字 -->
|
|
35
|
+
<text
|
|
36
|
+
v-if="!lunar && !weeks.extraInfo && weeks.isDay && !weeks.beforeRange && !weeks.afterRange"
|
|
37
|
+
class="wu-calendar-item__weeks-lunar-text"
|
|
38
|
+
:style="[calendarItemStyle, actMultipleStyle]"
|
|
39
|
+
>
|
|
40
|
+
{{ todayText }}
|
|
41
|
+
</text>
|
|
42
|
+
<!-- 农历文字 -->
|
|
43
|
+
<text
|
|
44
|
+
v-if="lunar && !weeks.extraInfo && !weeks.beforeRange && !weeks.afterRange"
|
|
45
|
+
class="wu-calendar-item__weeks-lunar-text"
|
|
46
|
+
:style="[calendarItemStyle, actMultipleStyle]"
|
|
47
|
+
>
|
|
48
|
+
{{ dayText }}
|
|
49
|
+
</text>
|
|
50
|
+
<!-- 选中的文字展示 -->
|
|
51
|
+
<text
|
|
52
|
+
v-if="!weeks.extraInfo && (weeks.beforeRange || weeks.afterRange)"
|
|
53
|
+
class="wu-calendar-item__weeks-lunar-text"
|
|
54
|
+
:style="[calendarItemStyle, actMultipleStyle]"
|
|
55
|
+
>
|
|
56
|
+
{{ multipleText }}
|
|
57
|
+
</text>
|
|
58
|
+
<!-- 自定义打点下方信息 -->
|
|
59
|
+
<text
|
|
60
|
+
v-if="weeks.extraInfo && weeks.extraInfo.info"
|
|
61
|
+
class="wu-calendar-item__weeks-lunar-text"
|
|
62
|
+
:style="[{ color: weeks.extraInfo.infoColor || '#e43d33' }, calendarItemStyle, actMultipleStyle]"
|
|
63
|
+
>
|
|
64
|
+
{{ weeks.extraInfo.info }}
|
|
65
|
+
</text>
|
|
66
|
+
</view>
|
|
67
|
+
</view>
|
|
68
|
+
</template>
|
|
69
|
+
|
|
70
|
+
<script>
|
|
71
|
+
import { mpMixin } from '../../../libs/mixin/mpMixin.js';
|
|
72
|
+
import { mixin } from '../../../libs/mixin/mixin.js';
|
|
73
|
+
import props from './props.js';
|
|
74
|
+
|
|
75
|
+
import { initVueI18n } from '@dcloudio/uni-i18n';
|
|
76
|
+
import i18nMessages from '../i18n/index.js';
|
|
77
|
+
const { t } = initVueI18n(i18nMessages);
|
|
78
|
+
import Color from '../../../libs/function/color/index.js';
|
|
79
|
+
|
|
80
|
+
export default {
|
|
81
|
+
emits: ['change'],
|
|
82
|
+
mixins: [mpMixin, mixin, props],
|
|
83
|
+
computed: {
|
|
84
|
+
todayText() {
|
|
85
|
+
return t('wu-calender.today');
|
|
86
|
+
},
|
|
87
|
+
// 每项日历样式
|
|
88
|
+
calendarItemStyle() {
|
|
89
|
+
let style = {};
|
|
90
|
+
let color = Color.gradient(this.color, Color.isLight(this.color) ? '#000' : '#fff', 100)[6];
|
|
91
|
+
// 有顺序别乱动
|
|
92
|
+
// 选中的日期范围内的样式
|
|
93
|
+
if (this.weeks.rangeMultiple) {
|
|
94
|
+
style = {
|
|
95
|
+
backgroundColor: Color.gradient(this.color, '#fff', 100)[80],
|
|
96
|
+
color
|
|
97
|
+
};
|
|
98
|
+
}
|
|
99
|
+
// 今天的日期样式
|
|
100
|
+
if (this.weeks.isDay && this.todayDefaultStyle) {
|
|
101
|
+
style.color = color;
|
|
102
|
+
}
|
|
103
|
+
// 禁用的日期样式
|
|
104
|
+
if (this.weeks.disable) {
|
|
105
|
+
style = {
|
|
106
|
+
backgroundColor: 'rgba(249, 249, 249, 0.3)',
|
|
107
|
+
color: '#c0c0c0'
|
|
108
|
+
};
|
|
109
|
+
}
|
|
110
|
+
return style;
|
|
111
|
+
},
|
|
112
|
+
// 选中的日期样式
|
|
113
|
+
actMultipleStyle() {
|
|
114
|
+
if (
|
|
115
|
+
(this.weeks.beforeRange ||
|
|
116
|
+
this.weeks.afterRange ||
|
|
117
|
+
this.weeks.multiples ||
|
|
118
|
+
(this.calendar.fullDate === this.weeks.fullDate && this.weeks.mode === 'single')) &&
|
|
119
|
+
!this.weeks.disable
|
|
120
|
+
) {
|
|
121
|
+
// #ifdef APP-NVUE
|
|
122
|
+
if (this.itemWidth == '100%') return {};
|
|
123
|
+
return {
|
|
124
|
+
backgroundColor: this.color,
|
|
125
|
+
color: '#fff',
|
|
126
|
+
borderRadius: '12rpx'
|
|
127
|
+
};
|
|
128
|
+
// #endif
|
|
129
|
+
// #ifndef APP-NVUE
|
|
130
|
+
return {
|
|
131
|
+
backgroundColor: this.color,
|
|
132
|
+
color: '#fff',
|
|
133
|
+
borderRadius: '12rpx'
|
|
134
|
+
};
|
|
135
|
+
// #endif
|
|
136
|
+
}
|
|
137
|
+
},
|
|
138
|
+
// 徽标样式
|
|
139
|
+
badgeStyle() {
|
|
140
|
+
let style = {
|
|
141
|
+
backgroundColor: this.weeks.disable ? '#c0c0c0' : '#e43d33',
|
|
142
|
+
width: '16rpx',
|
|
143
|
+
height: '16rpx'
|
|
144
|
+
};
|
|
145
|
+
if (this.weeks.extraInfo) {
|
|
146
|
+
if (this.weeks.extraInfo.badgeColor) {
|
|
147
|
+
// 如果当前是选中日期的徽标且徽标颜色与主题色一致 为了保证 徽标颜色可以被看见 再选中时将其设置为 #fff
|
|
148
|
+
if (
|
|
149
|
+
(this.weeks.beforeRange ||
|
|
150
|
+
this.weeks.afterRange ||
|
|
151
|
+
this.weeks.multiples ||
|
|
152
|
+
(this.calendar.fullDate === this.weeks.fullDate && this.weeks.mode === 'single')) &&
|
|
153
|
+
!this.weeks.disable &&
|
|
154
|
+
Color.convertFormat(this.weeks.extraInfo.badgeColor) == Color.convertFormat(this.color)
|
|
155
|
+
) {
|
|
156
|
+
style.backgroundColor = this.actBadgeColor;
|
|
157
|
+
} else {
|
|
158
|
+
style.backgroundColor = this.weeks.extraInfo.badgeColor;
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
if (this.weeks.extraInfo.badgeSize) {
|
|
162
|
+
style.width = this.weeks.extraInfo.badgeSize;
|
|
163
|
+
style.height = this.weeks.extraInfo.badgeSize;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
if (!this.weeks.extraInfo.badgePosition) {
|
|
167
|
+
style.right = '10rpx';
|
|
168
|
+
style.top = '10rpx';
|
|
169
|
+
} else if (this.weeks.extraInfo.badgePosition == 'top-left') {
|
|
170
|
+
style.top = '10rpx';
|
|
171
|
+
style.left = '10rpx';
|
|
172
|
+
} else if (this.weeks.extraInfo.badgePosition == 'top-center') {
|
|
173
|
+
style.top = '10rpx';
|
|
174
|
+
style.left = 'center';
|
|
175
|
+
} else if (this.weeks.extraInfo.badgePosition == 'top-right') {
|
|
176
|
+
style.top = '10rpx';
|
|
177
|
+
style.right = '10rpx';
|
|
178
|
+
} else if (this.weeks.extraInfo.badgePosition == 'bottom-left') {
|
|
179
|
+
style.bottom = '10rpx';
|
|
180
|
+
style.left = '10rpx';
|
|
181
|
+
} else if (this.weeks.extraInfo.badgePosition == 'bottom-center') {
|
|
182
|
+
style.bottom = '10rpx';
|
|
183
|
+
style.left = 'center';
|
|
184
|
+
} else if (this.weeks.extraInfo.badgePosition == 'bottom-right') {
|
|
185
|
+
style.bottom = '10rpx';
|
|
186
|
+
style.right = '10rpx';
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
return style;
|
|
191
|
+
},
|
|
192
|
+
// 日期文字
|
|
193
|
+
dayText() {
|
|
194
|
+
let text = '';
|
|
195
|
+
if (this.weeks.isDay) {
|
|
196
|
+
text = this.todayText;
|
|
197
|
+
} else if (this.weeks.lunar.festival) {
|
|
198
|
+
text = this.weeks.lunar.festival;
|
|
199
|
+
} else if (this.weeks.lunar.isTerm) {
|
|
200
|
+
text = this.weeks.lunar.Term;
|
|
201
|
+
} else if (this.weeks.lunar.IDayCn === '初一') {
|
|
202
|
+
text = this.weeks.lunar.IMonthCn;
|
|
203
|
+
} else {
|
|
204
|
+
text = this.weeks.lunar.IDayCn;
|
|
205
|
+
}
|
|
206
|
+
return text;
|
|
207
|
+
},
|
|
208
|
+
// 选中的文字
|
|
209
|
+
multipleText() {
|
|
210
|
+
let text = '';
|
|
211
|
+
if (this.weeks.afterRange) {
|
|
212
|
+
text = this.endText;
|
|
213
|
+
} else if (this.weeks.beforeRange) {
|
|
214
|
+
text = this.startText;
|
|
215
|
+
}
|
|
216
|
+
return text;
|
|
217
|
+
}
|
|
218
|
+
},
|
|
219
|
+
data() {
|
|
220
|
+
return {
|
|
221
|
+
itemWidth: '100%'
|
|
222
|
+
};
|
|
223
|
+
},
|
|
224
|
+
methods: {
|
|
225
|
+
choiceDate(weeks) {
|
|
226
|
+
this.$emit('change', weeks);
|
|
227
|
+
}
|
|
228
|
+
},
|
|
229
|
+
mounted() {
|
|
230
|
+
// #ifdef APP-NVUE
|
|
231
|
+
setTimeout(() => {
|
|
232
|
+
const dom = uni.requireNativePlugin('dom');
|
|
233
|
+
dom.getComponentRect(this.$refs.$weeksBox, (res) => {
|
|
234
|
+
this.itemWidth = res.size.width + 'px';
|
|
235
|
+
});
|
|
236
|
+
}, 10);
|
|
237
|
+
// #endif
|
|
238
|
+
}
|
|
239
|
+
};
|
|
240
|
+
</script>
|
|
241
|
+
<style scoped>
|
|
242
|
+
.wu-calendar-item__weeks-box {
|
|
243
|
+
flex: 1;
|
|
244
|
+
/* #ifndef APP-NVUE */
|
|
245
|
+
display: flex;
|
|
246
|
+
/* #endif */
|
|
247
|
+
flex-direction: column;
|
|
248
|
+
justify-content: center;
|
|
249
|
+
align-items: center;
|
|
250
|
+
padding: 0 0.5px;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.wu-calendar-item__weeks-box-text {
|
|
254
|
+
font-size: 28rpx;
|
|
255
|
+
color: #333;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
.wu-calendar-item__weeks-lunar-text {
|
|
259
|
+
font-size: 24rpx;
|
|
260
|
+
color: #333;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.wu-calendar-item__weeks-box-item {
|
|
264
|
+
flex: 1;
|
|
265
|
+
position: relative;
|
|
266
|
+
/* #ifndef APP-NVUE */
|
|
267
|
+
display: flex;
|
|
268
|
+
/* #endif */
|
|
269
|
+
flex-direction: column;
|
|
270
|
+
justify-content: center;
|
|
271
|
+
align-items: center;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
.wu-calendar-item__weeks-box-circle {
|
|
275
|
+
position: absolute;
|
|
276
|
+
border-radius: 16rpx;
|
|
277
|
+
background-color: #e43d33;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
.wu-calendar-item--disable {
|
|
281
|
+
background-color: rgba(249, 249, 249, 0.3);
|
|
282
|
+
color: #c0c0c0;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.wu-calendar-item--extra {
|
|
286
|
+
color: #e43d33;
|
|
287
|
+
opacity: 0.8;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
.wu-calendar-item--checked {
|
|
291
|
+
color: #fff;
|
|
292
|
+
}
|
|
293
|
+
</style>
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "u-cell",
|
|
3
|
+
"displayName": "u-cell 单元格,全端兼容,无论平台,一致体验。",
|
|
4
|
+
"version": "1.0.2",
|
|
5
|
+
"description": "u-cell 单元格一般用于一组列表的情况,比如个人中心页,设置页等。",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"u-ui",
|
|
8
|
+
"wuui",
|
|
9
|
+
"u-cell",
|
|
10
|
+
"cell",
|
|
11
|
+
"单元格"
|
|
12
|
+
],
|
|
13
|
+
"repository": "",
|
|
14
|
+
"engines": {
|
|
15
|
+
"HBuilderX": "^3.4.15"
|
|
16
|
+
},
|
|
17
|
+
"dcloudext": {
|
|
18
|
+
"type": "component-vue",
|
|
19
|
+
"sale": {
|
|
20
|
+
"regular": {
|
|
21
|
+
"price": "0.00"
|
|
22
|
+
},
|
|
23
|
+
"sourcecode": {
|
|
24
|
+
"price": "0.00"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"contact": {
|
|
28
|
+
"qq": ""
|
|
29
|
+
},
|
|
30
|
+
"declaration": {
|
|
31
|
+
"ads": "无",
|
|
32
|
+
"data": "插件不采集任何数据",
|
|
33
|
+
"permissions": "无"
|
|
34
|
+
},
|
|
35
|
+
"npmurl": ""
|
|
36
|
+
},
|
|
37
|
+
"uni_modules": {
|
|
38
|
+
"dependencies": [
|
|
39
|
+
"u-icon",
|
|
40
|
+
"u-line"
|
|
41
|
+
],
|
|
42
|
+
"encrypt": [],
|
|
43
|
+
"platforms": {
|
|
44
|
+
"cloud": {
|
|
45
|
+
"tcb": "y",
|
|
46
|
+
"aliyun": "y",
|
|
47
|
+
"alipay": "n"
|
|
48
|
+
},
|
|
49
|
+
"client": {
|
|
50
|
+
"Vue": {
|
|
51
|
+
"vue2": "y",
|
|
52
|
+
"vue3": "y"
|
|
53
|
+
},
|
|
54
|
+
"App": {
|
|
55
|
+
"app-vue": "y",
|
|
56
|
+
"app-nvue": "y"
|
|
57
|
+
},
|
|
58
|
+
"H5-mobile": {
|
|
59
|
+
"Safari": "y",
|
|
60
|
+
"Android Browser": "y",
|
|
61
|
+
"微信浏览器(Android)": "y",
|
|
62
|
+
"QQ浏览器(Android)": "y"
|
|
63
|
+
},
|
|
64
|
+
"H5-pc": {
|
|
65
|
+
"Chrome": "y",
|
|
66
|
+
"IE": "y",
|
|
67
|
+
"Edge": "y",
|
|
68
|
+
"Firefox": "y",
|
|
69
|
+
"Safari": "y"
|
|
70
|
+
},
|
|
71
|
+
"小程序": {
|
|
72
|
+
"微信": "y",
|
|
73
|
+
"阿里": "y",
|
|
74
|
+
"百度": "y",
|
|
75
|
+
"字节跳动": "y",
|
|
76
|
+
"QQ": "y",
|
|
77
|
+
"钉钉": "n",
|
|
78
|
+
"快手": "n",
|
|
79
|
+
"飞书": "n",
|
|
80
|
+
"京东": "n"
|
|
81
|
+
},
|
|
82
|
+
"快应用": {
|
|
83
|
+
"华为": "n",
|
|
84
|
+
"联盟": "n"
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
## u-cell 单元格
|
|
2
|
+
|
|
3
|
+
> **组件名:u-cell**
|
|
4
|
+
|
|
5
|
+
u-cell单元格一般用于一组列表的情况,比如个人中心页,设置页等。
|
|
6
|
+
|
|
7
|
+
## [查看文档](https://ijry.github.io/uview-plus/components/cell.html)
|
|
8
|
+
|
|
9
|
+
## [更多组件, 请查看 `u-ui` 组件库](https://ext.dcloud.net.cn/plugin?name=u--ui)
|
|
10
|
+
(请勿下载插件zip)
|
|
11
|
+
|
|
12
|
+
<a href="https://ext.dcloud.net.cn/plugin?name=u--ui">
|
|
13
|
+
<img src="https://wuui.cn/intr.png">
|
|
14
|
+
</a>
|
|
15
|
+
|
|
16
|
+
**如使用过程中有任何问题,或者您对u-ui有一些好的建议。<br>欢迎加入 [u-ui 交流群](https://ijry.github.io/uview-plus/components/qqFeedBack.html)**
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "u-checkbox",
|
|
3
|
+
"displayName": "u-checkbox 复选框,全端兼容,无论平台,一致体验",
|
|
4
|
+
"version": "1.0.3",
|
|
5
|
+
"description": "u-checkbox 复选框组件一般用于需要多个选择的场景,该组件功能完整,使用方便。",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"u-ui",
|
|
8
|
+
"wuui",
|
|
9
|
+
"u-checkbox",
|
|
10
|
+
"checkbox",
|
|
11
|
+
"复选框"
|
|
12
|
+
],
|
|
13
|
+
"repository": "",
|
|
14
|
+
"engines": {
|
|
15
|
+
"HBuilderX": "^3.4.15"
|
|
16
|
+
},
|
|
17
|
+
"dcloudext": {
|
|
18
|
+
"type": "component-vue",
|
|
19
|
+
"sale": {
|
|
20
|
+
"regular": {
|
|
21
|
+
"price": "0.00"
|
|
22
|
+
},
|
|
23
|
+
"sourcecode": {
|
|
24
|
+
"price": "0.00"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"contact": {
|
|
28
|
+
"qq": ""
|
|
29
|
+
},
|
|
30
|
+
"declaration": {
|
|
31
|
+
"ads": "无",
|
|
32
|
+
"data": "插件不采集任何数据",
|
|
33
|
+
"permissions": "无"
|
|
34
|
+
},
|
|
35
|
+
"npmurl": ""
|
|
36
|
+
},
|
|
37
|
+
"uni_modules": {
|
|
38
|
+
"dependencies": [
|
|
39
|
+
"u-icon"
|
|
40
|
+
],
|
|
41
|
+
"encrypt": [],
|
|
42
|
+
"platforms": {
|
|
43
|
+
"cloud": {
|
|
44
|
+
"tcb": "y",
|
|
45
|
+
"aliyun": "y",
|
|
46
|
+
"alipay": "n"
|
|
47
|
+
},
|
|
48
|
+
"client": {
|
|
49
|
+
"Vue": {
|
|
50
|
+
"vue2": "y",
|
|
51
|
+
"vue3": "y"
|
|
52
|
+
},
|
|
53
|
+
"App": {
|
|
54
|
+
"app-vue": "y",
|
|
55
|
+
"app-nvue": "y"
|
|
56
|
+
},
|
|
57
|
+
"H5-mobile": {
|
|
58
|
+
"Safari": "y",
|
|
59
|
+
"Android Browser": "y",
|
|
60
|
+
"微信浏览器(Android)": "y",
|
|
61
|
+
"QQ浏览器(Android)": "y"
|
|
62
|
+
},
|
|
63
|
+
"H5-pc": {
|
|
64
|
+
"Chrome": "y",
|
|
65
|
+
"IE": "y",
|
|
66
|
+
"Edge": "y",
|
|
67
|
+
"Firefox": "y",
|
|
68
|
+
"Safari": "y"
|
|
69
|
+
},
|
|
70
|
+
"小程序": {
|
|
71
|
+
"微信": "y",
|
|
72
|
+
"阿里": "y",
|
|
73
|
+
"百度": "y",
|
|
74
|
+
"字节跳动": "y",
|
|
75
|
+
"QQ": "y",
|
|
76
|
+
"钉钉": "n",
|
|
77
|
+
"快手": "n",
|
|
78
|
+
"飞书": "n",
|
|
79
|
+
"京东": "n"
|
|
80
|
+
},
|
|
81
|
+
"快应用": {
|
|
82
|
+
"华为": "n",
|
|
83
|
+
"联盟": "n"
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
}
|