@10yun/cv-mobile-ui 0.5.18 → 0.5.20
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/other/api-set-tabbar.nvue +147 -0
- package/other/mpvue-echarts/src/echarts.vue +112 -0
- package/other/mpvue-echarts/src/style.css +6 -0
- package/other/mpvue-picker/mpvuePicker.vue +402 -0
- package/other/mpvue-picker/style.css +75 -0
- package/other/product.vue +20 -0
- package/other/style.css +46 -0
- package/other/tab-nvue/mediaList.vue +68 -0
- package/other/tab-nvue/style.css +124 -0
- package/other/uParse/components/style.css +1 -0
- package/other/uParse/components/wxParseAudio.vue +1 -0
- package/other/uParse/components/wxParseImg.vue +86 -0
- package/other/uParse/components/wxParseTable.vue +54 -0
- package/other/uParse/components/wxParseTemplate0.vue +98 -0
- package/other/uParse/components/wxParseTemplate1.vue +81 -0
- package/other/uParse/components/wxParseTemplate10.vue +81 -0
- package/other/uParse/components/wxParseTemplate11.vue +79 -0
- package/other/uParse/components/wxParseTemplate2.vue +81 -0
- package/other/uParse/components/wxParseTemplate3.vue +81 -0
- package/other/uParse/components/wxParseTemplate4.vue +81 -0
- package/other/uParse/components/wxParseTemplate5.vue +81 -0
- package/other/uParse/components/wxParseTemplate6.vue +81 -0
- package/other/uParse/components/wxParseTemplate7.vue +81 -0
- package/other/uParse/components/wxParseTemplate8.vue +81 -0
- package/other/uParse/components/wxParseTemplate9.vue +81 -0
- package/other/uParse/components/wxParseVideo.vue +14 -0
- package/other/uParse/editor.css +495 -0
- package/other/uParse/libs/html2json.js +258 -0
- package/other/uParse/libs/htmlparser.js +163 -0
- package/other/uParse/libs/wxDiscode.js +195 -0
- package/other/uParse/wxParse.vue +196 -0
- package/package.json +1 -1
- package/plugins/map/amqp-wx.js +173 -0
- package/plugins/uni-upgrade.js +0 -1
- package/ui-cv/components/cv-banner/cv-banner.vue +131 -0
- package/ui-cv/components/cv-banner-card/cv-banner-card.vue +145 -0
- package/ui-cv/components/cv-base-audio/cv-base-audio.vue +282 -0
- package/ui-cv/components/cv-block/cv-block.vue +91 -0
- package/ui-cv/components/cv-box/cv-box.vue +77 -0
- package/ui-cv/components/cv-btn-base/cv-btn-base.vue +73 -0
- package/ui-cv/components/cv-cell-row/cv-cell-row.vue +220 -0
- package/ui-cv/components/cv-checkbox-group/cv-checkbox-group.vue +260 -0
- package/ui-cv/components/cv-checkbox-opt-base/cv-checkbox-opt-base.vue +100 -0
- package/ui-cv/components/cv-checkbox-opt-tag/cv-checkbox-opt-tag.vue +114 -0
- package/ui-cv/components/cv-code-sms/cv-code-sms.vue +232 -0
- package/ui-cv/components/cv-date-base/cv-date-base.vue +108 -0
- package/ui-cv/components/cv-datetime-base/cv-datetime-base.vue +155 -0
- package/ui-cv/components/cv-datetime-linkage/cv-datetime-linkage.vue +492 -0
- package/ui-cv/components/cv-dialog-bottom/cv-dialog-bottom.vue +171 -0
- package/ui-cv/components/cv-dialog-full/cv-dialog-full.vue +158 -0
- package/ui-cv/components/cv-dialog-loading/cv-dialog-loading.vue +102 -0
- package/ui-cv/components/cv-dialog-share/cv-dialog-share.vue +160 -0
- package/ui-cv/components/cv-draw-barcode/cv-draw-barcode.vue +212 -0
- package/ui-cv/components/cv-draw-gesture-lock/cv-draw-gesture-lock.vue +127 -0
- package/ui-cv/components/cv-draw-gesture-lock/gestureLock.js +169 -0
- package/ui-cv/components/cv-draw-gesture-lock/style.css +39 -0
- package/ui-cv/components/cv-draw-posters/cv-draw-posters.vue +495 -0
- package/ui-cv/components/cv-draw-progress/cv-draw-progress.vue +143 -0
- package/ui-cv/components/cv-draw-qrcode/cv-draw-qrcode.vue +308 -0
- package/ui-cv/components/cv-editor-parse/cv-editor-parse.vue +115 -0
- package/ui-cv/components/cv-editor-quill/cv-editor-quill.vue +487 -0
- package/ui-cv/components/cv-filter-hm/cv-filter-hm.vue +869 -0
- package/ui-cv/components/cv-form-base/cv-form-base.vue +471 -0
- package/ui-cv/components/cv-form-group/cv-form-group.vue +126 -0
- package/ui-cv/components/cv-form-item/cv-form-item.vue +561 -0
- package/ui-cv/components/cv-geo-local/cv-geo-local.vue +264 -0
- package/ui-cv/components/cv-geo-region/cv-geo-region.vue +246 -0
- package/ui-cv/components/cv-geo-region/mpvueCityPicker.vue +144 -0
- package/ui-cv/components/cv-geo-region/style.css +77 -0
- package/ui-cv/components/cv-grid-item/cv-grid-item.vue +210 -0
- package/ui-cv/components/cv-icons/cv-icons.vue +136 -0
- package/ui-cv/components/cv-input-digit/cv-input-digit.vue +114 -0
- package/ui-cv/components/cv-input-idcard/cv-input-idcard.vue +109 -0
- package/ui-cv/components/cv-input-number/cv-input-number.vue +115 -0
- package/ui-cv/components/cv-input-password/cv-input-password.vue +127 -0
- package/ui-cv/components/cv-input-text/cv-input-text.vue +118 -0
- package/ui-cv/components/cv-layout-topbar/cv-layout-topbar.vue +239 -0
- package/ui-cv/components/cv-link/cv-link.vue +60 -0
- package/ui-cv/components/cv-lists-base/cv-lists-base.vue +653 -0
- package/ui-cv/components/cv-lists-swiper/cv-lists-swipe2r.vue +200 -0
- package/ui-cv/components/cv-lists-swiper/cv-lists-swiper.vue +520 -0
- package/ui-cv/components/cv-load-empty/cv-load-empty.vue +60 -0
- package/ui-cv/components/cv-load-more/cv-load-more.vue +410 -0
- package/ui-cv/components/cv-load-more2/cv-load-more2.vue +47 -0
- package/ui-cv/components/cv-markdown-show/cv-markdown-show.vue +108 -0
- package/ui-cv/components/cv-message/cv-message.vue +40 -0
- package/ui-cv/components/cv-picker1/cv-picker1.vue +208 -0
- package/ui-cv/components/cv-picker2/cv-picker2.vue +255 -0
- package/ui-cv/components/cv-picker3/cv-picker3.vue +316 -0
- package/ui-cv/components/cv-radio-group/cv-radio-group.vue +199 -0
- package/ui-cv/components/cv-radio-opt-base/cv-radio-opt-base.vue +94 -0
- package/ui-cv/components/cv-radio-opt-tag/cv-radio-opt-tag.vue +110 -0
- package/ui-cv/components/cv-rate/cv-rate.vue +185 -0
- package/ui-cv/components/cv-search/cv-search.vue +185 -0
- package/ui-cv/components/cv-skeleton/cv-skeleton.vue +174 -0
- package/ui-cv/components/cv-skeleton/cv-skeleton2.vue +213 -0
- package/ui-cv/components/cv-skeleton-group/cv-skeleton-group.vue +24 -0
- package/ui-cv/components/cv-specs/cv-specs.vue +320 -0
- package/ui-cv/components/cv-switch/cv-switch.vue +113 -0
- package/ui-cv/components/cv-tab-lists/cv-tab-lists.vue +711 -0
- package/ui-cv/components/cv-tabs-box/cv-tabs-box.vue +100 -0
- package/ui-cv/components/cv-tabs-item/cv-tabs-item.vue +85 -0
- package/ui-cv/components/cv-textarea/cv-textarea.vue +144 -0
- package/ui-cv/components/cv-time-base/cv-time-base.vue +103 -0
- package/ui-cv/components/cv-treaty/cv-treaty.vue +95 -0
- package/ui-cv/components/cv-upload-avatar/cv-upload-avatar.vue +145 -0
- package/ui-cv/components/cv-upload-image/cv-upload-image.vue +481 -0
- package/ui-cv/libs/mixin/mixin.js +1 -0
- package/ui-cv/libs/mixin/mpMixin.js +8 -0
- package/uni-ui/LICENSE +202 -0
- package/uni-ui/README.md +245 -0
- package/uni-ui/lib/uni-badge/style.css +81 -0
- package/uni-ui/lib/uni-badge/style.scss +106 -0
- package/uni-ui/lib/uni-badge/uni-badge.vue +1 -0
- package/uni-ui/lib/uni-breadcrumb/style.css +3 -0
- package/uni-ui/lib/uni-breadcrumb/style.scss +4 -0
- package/uni-ui/lib/uni-breadcrumb/uni-breadcrumb.vue +1 -0
- package/uni-ui/lib/uni-breadcrumb-item/style.css +30 -0
- package/uni-ui/lib/uni-breadcrumb-item/style.scss +40 -0
- package/uni-ui/lib/uni-breadcrumb-item/uni-breadcrumb-item.vue +1 -0
- package/uni-ui/lib/uni-calendar/i18n/en.json +12 -0
- package/uni-ui/lib/uni-calendar/i18n/index.js +8 -0
- package/uni-ui/lib/uni-calendar/i18n/zh-Hans.json +12 -0
- package/uni-ui/lib/uni-calendar/i18n/zh-Hant.json +12 -0
- package/uni-ui/lib/uni-calendar/style.css +167 -0
- package/uni-ui/lib/uni-calendar/style.scss +200 -0
- package/uni-ui/lib/uni-calendar/uni-calendar-item.vue +1 -0
- package/uni-ui/lib/uni-calendar/uni-calendar.vue +1 -0
- package/uni-ui/lib/uni-calendar/util.js +360 -0
- package/uni-ui/lib/uni-card/style.css +115 -0
- package/uni-ui/lib/uni-card/style.scss +161 -0
- package/uni-ui/lib/uni-card/uni-card.vue +1 -0
- package/uni-ui/lib/uni-col/style.css +2145 -0
- package/uni-ui/lib/uni-col/style.scss +112 -0
- package/uni-ui/lib/uni-col/uni-col.vue +205 -0
- package/uni-ui/lib/uni-collapse/style.css +11 -0
- package/uni-ui/lib/uni-collapse/style.scss +12 -0
- package/uni-ui/lib/uni-collapse/uni-collapse.vue +1 -0
- package/uni-ui/lib/uni-collapse-item/style.css +120 -0
- package/uni-ui/lib/uni-collapse-item/style.scss +143 -0
- package/uni-ui/lib/uni-collapse-item/uni-collapse-item.vue +1 -0
- package/uni-ui/lib/uni-combox/style.css +114 -0
- package/uni-ui/lib/uni-combox/style.scss +133 -0
- package/uni-ui/lib/uni-combox/uni-combox.vue +174 -0
- package/uni-ui/lib/uni-countdown/i18n/en.json +6 -0
- package/uni-ui/lib/uni-countdown/i18n/index.js +8 -0
- package/uni-ui/lib/uni-countdown/i18n/zh-Hans.json +6 -0
- package/uni-ui/lib/uni-countdown/i18n/zh-Hant.json +6 -0
- package/uni-ui/lib/uni-countdown/style.css +16 -0
- package/uni-ui/lib/uni-countdown/style.scss +21 -0
- package/uni-ui/lib/uni-countdown/uni-countdown.vue +1 -0
- package/uni-ui/lib/uni-data-checkbox/style.css +302 -0
- package/uni-ui/lib/uni-data-checkbox/style.scss +366 -0
- package/uni-ui/lib/uni-data-checkbox/uni-data-checkbox.vue +1 -0
- package/uni-ui/lib/uni-data-picker/uni-data-picker.vue +1 -0
- package/uni-ui/lib/uni-data-pickerview/style.css +134 -0
- package/uni-ui/lib/uni-data-pickerview/style.scss +154 -0
- package/uni-ui/lib/uni-data-pickerview/uni-data-picker.js +622 -0
- package/uni-ui/lib/uni-data-pickerview/uni-data-pickerview.vue +1 -0
- package/uni-ui/lib/uni-data-select/style.css +181 -0
- package/uni-ui/lib/uni-data-select/style.scss +213 -0
- package/uni-ui/lib/uni-data-select/uni-data-select.vue +1 -0
- package/uni-ui/lib/uni-dateformat/uni-dateformat.vue +84 -0
- package/uni-ui/lib/uni-datetime-picker/calendar-item.vue +1 -0
- package/uni-ui/lib/uni-datetime-picker/calendar.vue +1 -0
- package/uni-ui/lib/uni-datetime-picker/i18n/en.json +22 -0
- package/uni-ui/lib/uni-datetime-picker/i18n/index.js +8 -0
- package/uni-ui/lib/uni-datetime-picker/i18n/zh-Hans.json +22 -0
- package/uni-ui/lib/uni-datetime-picker/i18n/zh-Hant.json +22 -0
- package/uni-ui/lib/uni-datetime-picker/style.css +188 -0
- package/uni-ui/lib/uni-datetime-picker/style.scss +218 -0
- package/uni-ui/lib/uni-datetime-picker/time-picker.vue +1 -0
- package/uni-ui/lib/uni-datetime-picker/uni-datetime-picker.vue +1 -0
- package/uni-ui/lib/uni-datetime-picker/util.js +403 -0
- package/uni-ui/lib/uni-drawer/keypress.js +45 -0
- package/uni-ui/lib/uni-drawer/style.css +63 -0
- package/uni-ui/lib/uni-drawer/style.scss +77 -0
- package/uni-ui/lib/uni-drawer/uni-drawer.vue +1 -0
- package/uni-ui/lib/uni-easyinput/style.css +126 -0
- package/uni-ui/lib/uni-easyinput/style.scss +155 -0
- package/uni-ui/lib/uni-easyinput/uni-easyinput.vue +1 -0
- package/uni-ui/lib/uni-fab/style.css +185 -0
- package/uni-ui/lib/uni-fab/style.scss +259 -0
- package/uni-ui/lib/uni-fab/uni-fab.vue +1 -0
- package/uni-ui/lib/uni-fav/i18n/en.json +4 -0
- package/uni-ui/lib/uni-fav/i18n/index.js +8 -0
- package/uni-ui/lib/uni-fav/i18n/zh-Hans.json +4 -0
- package/uni-ui/lib/uni-fav/i18n/zh-Hant.json +4 -0
- package/uni-ui/lib/uni-fav/style.css +39 -0
- package/uni-ui/lib/uni-fav/style.scss +45 -0
- package/uni-ui/lib/uni-fav/uni-fav.vue +1 -0
- package/uni-ui/lib/uni-file-picker/choose-and-upload-file.js +224 -0
- package/uni-ui/lib/uni-file-picker/style.css +97 -0
- package/uni-ui/lib/uni-file-picker/style.scss +110 -0
- package/uni-ui/lib/uni-file-picker/uni-file-picker.vue +1 -0
- package/uni-ui/lib/uni-file-picker/upload-file.vue +1 -0
- package/uni-ui/lib/uni-file-picker/upload-image.vue +1 -0
- package/uni-ui/lib/uni-forms/style.css +0 -0
- package/uni-ui/lib/uni-forms/style.scss +3 -0
- package/uni-ui/lib/uni-forms/uni-forms.vue +1 -0
- package/uni-ui/lib/uni-forms/utils.js +293 -0
- package/{ui-uni → uni-ui/lib}/uni-forms/validate.js +0 -0
- package/uni-ui/lib/uni-forms-item/style.css +133 -0
- package/uni-ui/lib/uni-forms-item/style.scss +165 -0
- package/uni-ui/lib/uni-forms-item/uni-forms-item.vue +1 -0
- package/uni-ui/lib/uni-goods-nav/i18n/en.json +6 -0
- package/uni-ui/lib/uni-goods-nav/i18n/index.js +8 -0
- package/uni-ui/lib/uni-goods-nav/i18n/zh-Hans.json +6 -0
- package/uni-ui/lib/uni-goods-nav/i18n/zh-Hant.json +6 -0
- package/uni-ui/lib/uni-goods-nav/style.css +100 -0
- package/uni-ui/lib/uni-goods-nav/style.scss +122 -0
- package/uni-ui/lib/uni-goods-nav/uni-goods-nav.vue +1 -0
- package/uni-ui/lib/uni-grid/style.css +29 -0
- package/uni-ui/lib/uni-grid/style.scss +33 -0
- package/uni-ui/lib/uni-grid/uni-grid.vue +1 -0
- package/uni-ui/lib/uni-grid-item/style.css +49 -0
- package/uni-ui/lib/uni-grid-item/style.scss +55 -0
- package/uni-ui/lib/uni-grid-item/uni-grid-item.vue +1 -0
- package/uni-ui/lib/uni-group/style.css +36 -0
- package/uni-ui/lib/uni-group/style.scss +50 -0
- package/uni-ui/lib/uni-group/uni-group.vue +1 -0
- package/uni-ui/lib/uni-icons/icons.js +1169 -0
- package/uni-ui/lib/uni-icons/style.css +12 -0
- package/uni-ui/lib/uni-icons/style.scss +14 -0
- package/uni-ui/lib/uni-icons/uni-icons.vue +1 -0
- package/uni-ui/lib/uni-icons/uniicons.css +663 -0
- package/uni-ui/lib/uni-icons/uniicons.ttf +0 -0
- package/uni-ui/lib/uni-indexed-list/style.css +68 -0
- package/uni-ui/lib/uni-indexed-list/style.scss +83 -0
- package/uni-ui/lib/uni-indexed-list/uni-indexed-list-item.vue +1 -0
- package/uni-ui/lib/uni-indexed-list/uni-indexed-list.vue +1 -0
- package/uni-ui/lib/uni-link/uni-link.vue +140 -0
- package/uni-ui/lib/uni-list/style.css +43 -0
- package/uni-ui/lib/uni-list/style.scss +52 -0
- package/uni-ui/lib/uni-list/uni-list.vue +1 -0
- package/uni-ui/lib/uni-list/uni-refresh.vue +63 -0
- package/uni-ui/lib/uni-list/uni-refresh.wxs +87 -0
- package/uni-ui/lib/uni-list-ad/style.css +30 -0
- package/uni-ui/lib/uni-list-ad/style.scss +35 -0
- package/uni-ui/lib/uni-list-ad/uni-list-ad.vue +1 -0
- package/uni-ui/lib/uni-list-chat/style.css +257 -0
- package/uni-ui/lib/uni-list-chat/style.scss +326 -0
- package/uni-ui/lib/uni-list-chat/uni-list-chat.scss +58 -0
- package/uni-ui/lib/uni-list-chat/uni-list-chat.vue +1 -0
- package/uni-ui/lib/uni-list-item/style.css +170 -0
- package/uni-ui/lib/uni-list-item/style.scss +213 -0
- package/uni-ui/lib/uni-list-item/uni-list-item.vue +1 -0
- package/uni-ui/lib/uni-load-more/i18n/en.json +5 -0
- package/uni-ui/lib/uni-load-more/i18n/index.js +8 -0
- package/uni-ui/lib/uni-load-more/i18n/zh-Hans.json +5 -0
- package/uni-ui/lib/uni-load-more/i18n/zh-Hant.json +5 -0
- package/uni-ui/lib/uni-load-more/style.css +194 -0
- package/uni-ui/lib/uni-load-more/style.scss +244 -0
- package/uni-ui/lib/uni-load-more/uni-load-more.vue +1 -0
- package/uni-ui/lib/uni-nav-bar/style.css +3 -0
- package/uni-ui/lib/uni-nav-bar/style.scss +6 -0
- package/uni-ui/lib/uni-nav-bar/uni-nav-bar.vue +1 -0
- package/uni-ui/lib/uni-nav-bar/uni-status-bar.vue +1 -0
- package/uni-ui/lib/uni-notice-bar/style.css +109 -0
- package/uni-ui/lib/uni-notice-bar/style.scss +125 -0
- package/uni-ui/lib/uni-notice-bar/uni-notice-bar.vue +1 -0
- package/uni-ui/lib/uni-number-box/style.css +50 -0
- package/uni-ui/lib/uni-number-box/style.scss +64 -0
- package/uni-ui/lib/uni-number-box/uni-number-box.vue +1 -0
- package/uni-ui/lib/uni-pagination/i18n/en.json +5 -0
- package/uni-ui/lib/uni-pagination/i18n/es.json +5 -0
- package/uni-ui/lib/uni-pagination/i18n/fr.json +5 -0
- package/uni-ui/lib/uni-pagination/i18n/index.js +12 -0
- package/uni-ui/lib/uni-pagination/i18n/zh-Hans.json +5 -0
- package/uni-ui/lib/uni-pagination/i18n/zh-Hant.json +5 -0
- package/uni-ui/lib/uni-pagination/style.css +125 -0
- package/uni-ui/lib/uni-pagination/style.scss +154 -0
- package/uni-ui/lib/uni-pagination/uni-pagination.vue +1 -0
- package/uni-ui/lib/uni-popup/i18n/en.json +7 -0
- package/uni-ui/lib/uni-popup/i18n/index.js +8 -0
- package/uni-ui/lib/uni-popup/i18n/zh-Hans.json +7 -0
- package/uni-ui/lib/uni-popup/i18n/zh-Hant.json +7 -0
- package/uni-ui/lib/uni-popup/keypress.js +45 -0
- package/uni-ui/lib/uni-popup/popup.js +26 -0
- package/uni-ui/lib/uni-popup/style.css +41 -0
- package/uni-ui/lib/uni-popup/style.scss +51 -0
- package/uni-ui/lib/uni-popup/uni-popup.vue +426 -0
- package/uni-ui/lib/uni-popup-dialog/keypress.js +45 -0
- package/uni-ui/lib/uni-popup-dialog/style.css +82 -0
- package/uni-ui/lib/uni-popup-dialog/style.scss +98 -0
- package/uni-ui/lib/uni-popup-dialog/uni-popup-dialog.vue +1 -0
- package/uni-ui/lib/uni-popup-message/style.css +57 -0
- package/uni-ui/lib/uni-popup-message/style.scss +69 -0
- package/uni-ui/lib/uni-popup-message/uni-popup-message.vue +1 -0
- package/uni-ui/lib/uni-popup-share/style.css +72 -0
- package/uni-ui/lib/uni-popup-share/style.scss +81 -0
- package/uni-ui/lib/uni-popup-share/uni-popup-share.vue +1 -0
- package/uni-ui/lib/uni-rate/style.css +29 -0
- package/uni-ui/lib/uni-rate/style.scss +33 -0
- package/uni-ui/lib/uni-rate/uni-rate.vue +1 -0
- package/uni-ui/lib/uni-row/style.css +58 -0
- package/uni-ui/lib/uni-row/style.scss +104 -0
- package/uni-ui/lib/uni-row/uni-row.vue +83 -0
- package/uni-ui/lib/uni-scss/changelog.md +8 -0
- package/uni-ui/lib/uni-scss/index.scss +1 -0
- package/uni-ui/lib/uni-scss/package.json +82 -0
- package/uni-ui/lib/uni-scss/readme.md +4 -0
- package/uni-ui/lib/uni-scss/styles/index.scss +7 -0
- package/uni-ui/lib/uni-scss/styles/setting/_border.scss +3 -0
- package/uni-ui/lib/uni-scss/styles/setting/_color.scss +66 -0
- package/uni-ui/lib/uni-scss/styles/setting/_radius.scss +55 -0
- package/uni-ui/lib/uni-scss/styles/setting/_space.scss +56 -0
- package/uni-ui/lib/uni-scss/styles/setting/_styles.scss +167 -0
- package/uni-ui/lib/uni-scss/styles/setting/_text.scss +24 -0
- package/uni-ui/lib/uni-scss/styles/setting/_variables.scss +146 -0
- package/uni-ui/lib/uni-scss/styles/tools/functions.scss +19 -0
- package/uni-ui/lib/uni-scss/theme.scss +31 -0
- package/uni-ui/lib/uni-scss/uni.scss +76 -0
- package/uni-ui/lib/uni-scss/variables.scss +62 -0
- package/uni-ui/lib/uni-search-bar/i18n/en.json +4 -0
- package/uni-ui/lib/uni-search-bar/i18n/index.js +8 -0
- package/uni-ui/lib/uni-search-bar/i18n/zh-Hans.json +4 -0
- package/uni-ui/lib/uni-search-bar/i18n/zh-Hant.json +4 -0
- package/uni-ui/lib/uni-search-bar/style.css +59 -0
- package/uni-ui/lib/uni-search-bar/style.scss +70 -0
- package/uni-ui/lib/uni-search-bar/uni-search-bar.vue +1 -0
- package/uni-ui/lib/uni-section/style.css +55 -0
- package/uni-ui/lib/uni-section/style.scss +65 -0
- package/uni-ui/lib/uni-section/uni-section.vue +1 -0
- package/uni-ui/lib/uni-segmented-control/style.css +48 -0
- package/uni-ui/lib/uni-segmented-control/style.scss +55 -0
- package/uni-ui/lib/uni-segmented-control/uni-segmented-control.vue +1 -0
- package/uni-ui/lib/uni-status-bar/style.css +4 -0
- package/uni-ui/lib/uni-status-bar/uni-status-bar.vue +19 -0
- package/uni-ui/lib/uni-steps/style.css +152 -0
- package/uni-ui/lib/uni-steps/style.scss +179 -0
- package/uni-ui/lib/uni-steps/uni-steps.vue +1 -0
- package/uni-ui/lib/uni-swipe-action/uni-swipe-action.vue +1 -0
- package/uni-ui/lib/uni-swipe-action-item/bindingx.js +302 -0
- package/uni-ui/lib/uni-swipe-action-item/isPC.js +12 -0
- package/uni-ui/lib/uni-swipe-action-item/mpalipay.js +195 -0
- package/uni-ui/lib/uni-swipe-action-item/mpother.js +260 -0
- package/uni-ui/lib/uni-swipe-action-item/mpwxs.js +84 -0
- package/uni-ui/lib/uni-swipe-action-item/render.js +270 -0
- package/uni-ui/lib/uni-swipe-action-item/style.css +90 -0
- package/uni-ui/lib/uni-swipe-action-item/style.scss +112 -0
- package/uni-ui/lib/uni-swipe-action-item/uni-swipe-action-item.vue +3 -0
- package/uni-ui/lib/uni-swipe-action-item/wx.wxs +341 -0
- package/uni-ui/lib/uni-swiper-dot/style.css +75 -0
- package/uni-ui/lib/uni-swiper-dot/style.scss +95 -0
- package/uni-ui/lib/uni-swiper-dot/uni-swiper-dot.vue +1 -0
- package/uni-ui/lib/uni-table/style.css +123 -0
- package/uni-ui/lib/uni-table/style.scss +152 -0
- package/uni-ui/lib/uni-table/uni-table.vue +1 -0
- package/uni-ui/lib/uni-tag/style.css +105 -0
- package/uni-ui/lib/uni-tag/style.scss +141 -0
- package/uni-ui/lib/uni-tag/uni-tag.vue +1 -0
- package/uni-ui/lib/uni-tbody/uni-tbody.vue +1 -0
- package/uni-ui/lib/uni-td/style.css +13 -0
- package/uni-ui/lib/uni-td/style.scss +17 -0
- package/uni-ui/lib/uni-td/uni-td.vue +1 -0
- package/uni-ui/lib/uni-test/uni-test.vue +11 -0
- package/uni-ui/lib/uni-th/filter-dropdown.vue +299 -0
- package/uni-ui/lib/uni-th/style.css +63 -0
- package/uni-ui/lib/uni-th/style.scss +78 -0
- package/uni-ui/lib/uni-th/uni-th.vue +1 -0
- package/uni-ui/lib/uni-thead/style.css +30 -0
- package/uni-ui/lib/uni-thead/style.scss +52 -0
- package/uni-ui/lib/uni-thead/uni-thead.vue +1 -0
- package/uni-ui/lib/uni-title/uni-title.vue +1 -0
- package/uni-ui/lib/uni-tooltip/uni-tooltip.vue +1 -0
- package/uni-ui/lib/uni-tr/style.css +25 -0
- package/uni-ui/lib/uni-tr/style.scss +46 -0
- package/uni-ui/lib/uni-tr/table-checkbox.vue +1 -0
- package/uni-ui/lib/uni-tr/uni-tr.vue +1 -0
- package/uni-ui/lib/uni-transition/createAnimation.js +131 -0
- package/uni-ui/lib/uni-transition/uni-transition.vue +286 -0
- package/uni-ui/package.json +17 -0
- package/uview-plus/LICENSE +21 -0
- package/uview-plus/README.md +64 -0
- package/uview-plus/changelog.md +24 -0
- package/uview-plus/components/u--form/u--form.vue +1 -0
- package/uview-plus/components/u--image/u--image.vue +1 -0
- package/uview-plus/components/u--input/u--input.vue +9 -0
- package/uview-plus/components/u--text/u--text.vue +1 -0
- package/uview-plus/components/u--textarea/u--textarea.vue +1 -0
- package/uview-plus/components/u-action-sheet/props.js +55 -0
- package/uview-plus/components/u-action-sheet/style.css +68 -0
- package/uview-plus/components/u-action-sheet/style.scss +84 -0
- package/uview-plus/components/u-action-sheet/u-action-sheet.vue +158 -0
- package/uview-plus/components/u-album/props.js +60 -0
- package/uview-plus/components/u-album/style.css +41 -0
- package/uview-plus/components/u-album/style.scss +26 -0
- package/uview-plus/components/u-album/u-album.vue +203 -0
- package/uview-plus/components/u-alert/props.js +45 -0
- package/uview-plus/components/u-alert/style.css +101 -0
- package/uview-plus/components/u-alert/style.scss +113 -0
- package/uview-plus/components/u-alert/u-alert.vue +118 -0
- package/uview-plus/components/u-avatar/props.js +79 -0
- package/uview-plus/components/u-avatar/style.css +31 -0
- package/uview-plus/components/u-avatar/style.scss +25 -0
- package/uview-plus/components/u-avatar/u-avatar.vue +168 -0
- package/uview-plus/components/u-avatar-group/props.js +53 -0
- package/uview-plus/components/u-avatar-group/style.css +39 -0
- package/uview-plus/components/u-avatar-group/style.scss +28 -0
- package/uview-plus/components/u-avatar-group/u-avatar-group.vue +74 -0
- package/uview-plus/components/u-back-top/props.js +55 -0
- package/uview-plus/components/u-back-top/style.css +27 -0
- package/uview-plus/components/u-back-top/style.scss +19 -0
- package/uview-plus/components/u-back-top/u-back-top.vue +95 -0
- package/uview-plus/components/u-badge/props.js +78 -0
- package/uview-plus/components/u-badge/style.css +68 -0
- package/uview-plus/components/u-badge/style.scss +85 -0
- package/uview-plus/components/u-badge/u-badge.vue +96 -0
- package/uview-plus/components/u-button/nvue-parse.scss +27 -0
- package/uview-plus/components/u-button/nvue.scss +1 -0
- package/uview-plus/components/u-button/props.js +162 -0
- package/uview-plus/components/u-button/style.css +202 -0
- package/uview-plus/components/u-button/style.scss +196 -0
- package/uview-plus/components/u-button/u-button.vue +262 -0
- package/uview-plus/components/u-button/vue-parse.scss +42 -0
- package/uview-plus/components/u-button/vue.scss +80 -0
- package/uview-plus/components/u-calendar/header.vue +1 -0
- package/uview-plus/components/u-calendar/month.vue +478 -0
- package/uview-plus/components/u-calendar/props.js +145 -0
- package/uview-plus/components/u-calendar/style.css +14 -0
- package/uview-plus/components/u-calendar/style.scss +7 -0
- package/uview-plus/components/u-calendar/u-calendar.vue +322 -0
- package/uview-plus/components/u-calendar/util.js +86 -0
- package/uview-plus/components/u-car-keyboard/props.js +15 -0
- package/uview-plus/components/u-car-keyboard/style.css +80 -0
- package/uview-plus/components/u-car-keyboard/style.scss +90 -0
- package/uview-plus/components/u-car-keyboard/u-car-keyboard.vue +1 -0
- package/uview-plus/components/u-cell/props.js +111 -0
- package/uview-plus/components/u-cell/style.css +98 -0
- package/uview-plus/components/u-cell/style.scss +127 -0
- package/uview-plus/components/u-cell/u-cell.vue +124 -0
- package/uview-plus/components/u-cell-group/props.js +15 -0
- package/uview-plus/components/u-cell-group/style.css +25 -0
- package/uview-plus/components/u-cell-group/style.scss +24 -0
- package/uview-plus/components/u-cell-group/u-cell-group.vue +37 -0
- package/uview-plus/components/u-checkbox/props.js +70 -0
- package/uview-plus/components/u-checkbox/style.css +86 -0
- package/uview-plus/components/u-checkbox/style.scss +103 -0
- package/uview-plus/components/u-checkbox/u-checkbox.vue +250 -0
- package/uview-plus/components/u-checkbox-group/props.js +91 -0
- package/uview-plus/components/u-checkbox-group/style.css +23 -0
- package/uview-plus/components/u-checkbox-group/style.scss +14 -0
- package/uview-plus/components/u-checkbox-group/u-checkbox-group.vue +112 -0
- package/uview-plus/components/u-circle-progress/props.js +9 -0
- package/uview-plus/components/u-circle-progress/style.css +80 -0
- package/uview-plus/components/u-circle-progress/style.scss +86 -0
- package/uview-plus/components/u-circle-progress/u-circle-progress.vue +99 -0
- package/uview-plus/components/u-code/props.js +35 -0
- package/uview-plus/components/u-code/style.css +11 -0
- package/uview-plus/components/u-code/style.scss +1 -0
- package/uview-plus/components/u-code/u-code.vue +129 -0
- package/uview-plus/components/u-code-input/props.js +80 -0
- package/uview-plus/components/u-code-input/style.css +78 -0
- package/uview-plus/components/u-code-input/style.scss +75 -0
- package/uview-plus/components/u-code-input/u-code-input.vue +169 -0
- package/uview-plus/components/u-col/props.js +30 -0
- package/uview-plus/components/u-col/style.css +61 -0
- package/uview-plus/components/u-col/style.scss +67 -0
- package/uview-plus/components/u-col/u-col.vue +92 -0
- package/uview-plus/components/u-collapse/props.js +20 -0
- package/uview-plus/components/u-collapse/style.css +11 -0
- package/uview-plus/components/u-collapse/style.scss +1 -0
- package/uview-plus/components/u-collapse/u-collapse.vue +87 -0
- package/uview-plus/components/u-collapse-item/props.js +60 -0
- package/uview-plus/components/u-collapse-item/style.css +21 -0
- package/uview-plus/components/u-collapse-item/style.scss +15 -0
- package/uview-plus/components/u-collapse-item/u-collapse-item.vue +1 -0
- package/uview-plus/components/u-column-notice/props.js +56 -0
- package/uview-plus/components/u-column-notice/style.css +48 -0
- package/uview-plus/components/u-column-notice/style.scss +35 -0
- package/uview-plus/components/u-column-notice/u-column-notice.vue +95 -0
- package/uview-plus/components/u-count-down/props.js +25 -0
- package/uview-plus/components/u-count-down/style.css +16 -0
- package/uview-plus/components/u-count-down/style.scss +12 -0
- package/uview-plus/components/u-count-down/u-count-down.vue +1 -0
- package/uview-plus/components/u-count-down/utils.js +62 -0
- package/uview-plus/components/u-count-to/props.js +60 -0
- package/uview-plus/components/u-count-to/style.css +17 -0
- package/uview-plus/components/u-count-to/style.scss +8 -0
- package/uview-plus/components/u-count-to/u-count-to.vue +179 -0
- package/uview-plus/components/u-datetime-picker/props.js +126 -0
- package/uview-plus/components/u-datetime-picker/style.css +11 -0
- package/uview-plus/components/u-datetime-picker/style.scss +1 -0
- package/uview-plus/components/u-datetime-picker/u-datetime-picker.vue +379 -0
- package/uview-plus/components/u-divider/props.js +45 -0
- package/uview-plus/components/u-divider/style.css +28 -0
- package/uview-plus/components/u-divider/style.scss +23 -0
- package/uview-plus/components/u-divider/u-divider.vue +73 -0
- package/uview-plus/components/u-dropdown/props.js +66 -0
- package/uview-plus/components/u-dropdown/style.css +32 -0
- package/uview-plus/components/u-dropdown/style.scss +18 -0
- package/uview-plus/components/u-dropdown/u-dropdown.vue +1 -0
- package/uview-plus/components/u-dropdown-item/props.js +37 -0
- package/uview-plus/components/u-dropdown-item/style.css +16 -0
- package/uview-plus/components/u-dropdown-item/style.scss +9 -0
- package/uview-plus/components/u-dropdown-item/u-dropdown-item.vue +1 -0
- package/uview-plus/components/u-empty/props.js +60 -0
- package/uview-plus/components/u-empty/style.css +38 -0
- package/uview-plus/components/u-empty/style.scss +23 -0
- package/uview-plus/components/u-empty/u-empty.vue +98 -0
- package/uview-plus/components/u-form/props.js +46 -0
- package/uview-plus/components/u-form/u-form.vue +1 -0
- package/uview-plus/components/u-form-item/props.js +44 -0
- package/uview-plus/components/u-form-item/style.css +95 -0
- package/uview-plus/components/u-form-item/style.scss +76 -0
- package/uview-plus/components/u-form-item/u-form-item.vue +159 -0
- package/uview-plus/components/u-gap/props.js +25 -0
- package/uview-plus/components/u-gap/style.css +11 -0
- package/uview-plus/components/u-gap/style.scss +1 -0
- package/uview-plus/components/u-gap/u-gap.vue +38 -0
- package/uview-plus/components/u-grid/props.js +20 -0
- package/uview-plus/components/u-grid/style.css +27 -0
- package/uview-plus/components/u-grid/style.scss +15 -0
- package/uview-plus/components/u-grid/u-grid.vue +80 -0
- package/uview-plus/components/u-grid-item/props.js +15 -0
- package/uview-plus/components/u-grid-item/style.css +41 -0
- package/uview-plus/components/u-grid-item/style.scss +44 -0
- package/uview-plus/components/u-grid-item/u-grid-item.vue +165 -0
- package/uview-plus/components/u-icon/icons.js +214 -0
- package/uview-plus/components/u-icon/props.js +90 -0
- package/uview-plus/components/u-icon/style.css +74 -0
- package/uview-plus/components/u-icon/style.scss +85 -0
- package/uview-plus/components/u-icon/u-icon.vue +133 -0
- package/uview-plus/components/u-image/props.js +85 -0
- package/uview-plus/components/u-image/style.css +35 -0
- package/uview-plus/components/u-image/style.scss +34 -0
- package/uview-plus/components/u-image/u-image.vue +182 -0
- package/uview-plus/components/u-index-anchor/props.js +30 -0
- package/uview-plus/components/u-index-anchor/style.css +29 -0
- package/uview-plus/components/u-index-anchor/style.scss +15 -0
- package/uview-plus/components/u-index-anchor/u-index-anchor.vue +78 -0
- package/uview-plus/components/u-index-item/props.js +4 -0
- package/uview-plus/components/u-index-item/style.css +11 -0
- package/uview-plus/components/u-index-item/style.scss +1 -0
- package/uview-plus/components/u-index-item/u-index-item.vue +81 -0
- package/uview-plus/components/u-index-list/props.js +30 -0
- package/uview-plus/components/u-index-list/style.css +61 -0
- package/uview-plus/components/u-index-list/style.scss +53 -0
- package/uview-plus/components/u-index-list/u-index-list.vue +367 -0
- package/uview-plus/components/u-input/props.js +196 -0
- package/uview-plus/components/u-input/style.css +75 -0
- package/uview-plus/components/u-input/style.scss +64 -0
- package/uview-plus/components/u-input/u-input.vue +287 -0
- package/uview-plus/components/u-keyboard/props.js +85 -0
- package/uview-plus/components/u-keyboard/style.css +37 -0
- package/uview-plus/components/u-keyboard/style.scss +31 -0
- package/uview-plus/components/u-keyboard/u-keyboard.vue +115 -0
- package/uview-plus/components/u-line/props.js +34 -0
- package/uview-plus/components/u-line/style.css +16 -0
- package/uview-plus/components/u-line/style.scss +7 -0
- package/uview-plus/components/u-line/u-line.vue +50 -0
- package/uview-plus/components/u-line-progress/props.js +29 -0
- package/uview-plus/components/u-line-progress/style.css +50 -0
- package/uview-plus/components/u-line-progress/style.scss +38 -0
- package/uview-plus/components/u-line-progress/u-line-progress.vue +99 -0
- package/uview-plus/components/u-link/props.js +40 -0
- package/uview-plus/components/u-link/style.css +22 -0
- package/uview-plus/components/u-link/style.scss +11 -0
- package/uview-plus/components/u-link/u-link.vue +68 -0
- package/uview-plus/components/u-list/props.js +76 -0
- package/uview-plus/components/u-list/style.css +17 -0
- package/uview-plus/components/u-list/style.scss +5 -0
- package/uview-plus/components/u-list/u-list.vue +152 -0
- package/uview-plus/components/u-list-item/props.js +10 -0
- package/uview-plus/components/u-list-item/style.css +11 -0
- package/uview-plus/components/u-list-item/style.scss +4 -0
- package/uview-plus/components/u-list-item/u-list-item.vue +105 -0
- package/uview-plus/components/u-loading-icon/props.js +60 -0
- package/uview-plus/components/u-loading-icon/style.css +148 -0
- package/uview-plus/components/u-loading-icon/style.scss +153 -0
- package/uview-plus/components/u-loading-icon/u-loading-icon.vue +1 -0
- package/uview-plus/components/u-loading-page/props.js +50 -0
- package/uview-plus/components/u-loading-page/style.css +44 -0
- package/uview-plus/components/u-loading-page/style.scss +37 -0
- package/uview-plus/components/u-loading-page/u-loading-page.vue +75 -0
- package/uview-plus/components/u-loadmore/props.js +95 -0
- package/uview-plus/components/u-loadmore/style.css +40 -0
- package/uview-plus/components/u-loadmore/style.scss +29 -0
- package/uview-plus/components/u-loadmore/u-loadmore.vue +101 -0
- package/uview-plus/components/u-message-input/style.css +115 -0
- package/uview-plus/components/u-message-input/style.scss +134 -0
- package/uview-plus/components/u-message-input/u-message-input.vue +205 -0
- package/uview-plus/components/u-modal/props.js +85 -0
- package/uview-plus/components/u-modal/style.css +70 -0
- package/uview-plus/components/u-modal/style.scss +65 -0
- package/uview-plus/components/u-modal/u-modal.vue +1 -0
- package/uview-plus/components/u-navbar/props.js +85 -0
- package/uview-plus/components/u-navbar/style.css +62 -0
- package/uview-plus/components/u-navbar/style.scss +58 -0
- package/uview-plus/components/u-navbar/u-navbar.vue +114 -0
- package/uview-plus/components/u-no-network/props.js +20 -0
- package/uview-plus/components/u-no-network/style.css +49 -0
- package/uview-plus/components/u-no-network/style.scss +36 -0
- package/uview-plus/components/u-no-network/u-no-network.vue +168 -0
- package/uview-plus/components/u-notice-bar/props.js +71 -0
- package/uview-plus/components/u-notice-bar/style.css +16 -0
- package/uview-plus/components/u-notice-bar/style.scss +7 -0
- package/uview-plus/components/u-notice-bar/u-notice-bar.vue +98 -0
- package/uview-plus/components/u-notify/props.js +50 -0
- package/uview-plus/components/u-notify/style.css +39 -0
- package/uview-plus/components/u-notify/style.scss +40 -0
- package/uview-plus/components/u-notify/u-notify.vue +166 -0
- package/uview-plus/components/u-number-box/props.js +119 -0
- package/uview-plus/components/u-number-box/style.css +67 -0
- package/uview-plus/components/u-number-box/style.scss +70 -0
- package/uview-plus/components/u-number-box/u-number-box.vue +343 -0
- package/uview-plus/components/u-number-keyboard/props.js +20 -0
- package/uview-plus/components/u-number-keyboard/style.css +56 -0
- package/uview-plus/components/u-number-keyboard/style.scss +62 -0
- package/uview-plus/components/u-number-keyboard/u-number-keyboard.vue +118 -0
- package/uview-plus/components/u-overlay/props.js +25 -0
- package/uview-plus/components/u-overlay/style.css +19 -0
- package/uview-plus/components/u-overlay/style.scss +14 -0
- package/uview-plus/components/u-overlay/u-overlay.vue +48 -0
- package/uview-plus/components/u-parse/node/node.vue +535 -0
- package/uview-plus/components/u-parse/parser.js +1333 -0
- package/uview-plus/components/u-parse/props.js +47 -0
- package/uview-plus/components/u-parse/u-parse.vue +519 -0
- package/uview-plus/components/u-picker/props.js +80 -0
- package/uview-plus/components/u-picker/style.css +57 -0
- package/uview-plus/components/u-picker/style.scss +45 -0
- package/uview-plus/components/u-picker/u-picker.vue +231 -0
- package/uview-plus/components/u-picker-column/props.js +4 -0
- package/uview-plus/components/u-picker-column/style.css +11 -0
- package/uview-plus/components/u-picker-column/style.scss +1 -0
- package/uview-plus/components/u-picker-column/u-picker-column.vue +25 -0
- package/uview-plus/components/u-popup/props.js +80 -0
- package/uview-plus/components/u-popup/style.css +70 -0
- package/uview-plus/components/u-popup/style.scss +75 -0
- package/uview-plus/components/u-popup/u-popup.vue +1 -0
- package/uview-plus/components/u-radio/props.js +70 -0
- package/uview-plus/components/u-radio/style.css +86 -0
- package/uview-plus/components/u-radio/style.scss +102 -0
- package/uview-plus/components/u-radio/u-radio.vue +238 -0
- package/uview-plus/components/u-radio-group/props.js +94 -0
- package/uview-plus/components/u-radio-group/style.css +26 -0
- package/uview-plus/components/u-radio-group/style.scss +16 -0
- package/uview-plus/components/u-radio-group/u-radio-group.vue +121 -0
- package/uview-plus/components/u-rate/props.js +79 -0
- package/uview-plus/components/u-rate/style.css +43 -0
- package/uview-plus/components/u-rate/style.scss +38 -0
- package/uview-plus/components/u-rate/u-rate.vue +249 -0
- package/uview-plus/components/u-read-more/props.js +62 -0
- package/uview-plus/components/u-read-more/style.css +33 -0
- package/uview-plus/components/u-read-more/style.scss +22 -0
- package/uview-plus/components/u-read-more/u-read-more.vue +119 -0
- package/uview-plus/components/u-row/props.js +20 -0
- package/uview-plus/components/u-row/style.css +17 -0
- package/uview-plus/components/u-row/style.scss +5 -0
- package/uview-plus/components/u-row/u-row.vue +82 -0
- package/uview-plus/components/u-row-notice/props.js +40 -0
- package/uview-plus/components/u-row-notice/style.css +61 -0
- package/uview-plus/components/u-row-notice/style.scss +50 -0
- package/uview-plus/components/u-row-notice/u-row-notice.vue +256 -0
- package/uview-plus/components/u-safe-bottom/props.js +4 -0
- package/uview-plus/components/u-safe-bottom/style.css +5 -0
- package/uview-plus/components/u-safe-bottom/style.scss +5 -0
- package/uview-plus/components/u-safe-bottom/u-safe-bottom.vue +1 -0
- package/uview-plus/components/u-scroll-list/nvue.js +3 -0
- package/uview-plus/components/u-scroll-list/other.js +0 -0
- package/uview-plus/components/u-scroll-list/props.js +35 -0
- package/uview-plus/components/u-scroll-list/scrollWxs.wxs +50 -0
- package/uview-plus/components/u-scroll-list/style.css +45 -0
- package/uview-plus/components/u-scroll-list/style.scss +32 -0
- package/uview-plus/components/u-scroll-list/u-scroll-list.vue +193 -0
- package/uview-plus/components/u-search/props.js +123 -0
- package/uview-plus/components/u-search/style.css +92 -0
- package/uview-plus/components/u-search/style.scss +98 -0
- package/uview-plus/components/u-search/u-search.vue +220 -0
- package/uview-plus/components/u-skeleton/props.js +60 -0
- package/uview-plus/components/u-skeleton/style.css +62 -0
- package/uview-plus/components/u-skeleton/style.scss +59 -0
- package/uview-plus/components/u-skeleton/u-skeleton.vue +188 -0
- package/uview-plus/components/u-slider/mpother.js +113 -0
- package/uview-plus/components/u-slider/mpwxs.js +42 -0
- package/uview-plus/components/u-slider/mpwxs.wxs +121 -0
- package/uview-plus/components/u-slider/nvue - /345/211/257/346/234/254.js" +175 -0
- package/uview-plus/components/u-slider/nvue.js +190 -0
- package/uview-plus/components/u-slider/props.js +55 -0
- package/uview-plus/components/u-slider/style.css +11 -0
- package/uview-plus/components/u-slider/style.scss +1 -0
- package/uview-plus/components/u-slider/u-slider.vue +1 -0
- package/uview-plus/components/u-status-bar/props.js +9 -0
- package/uview-plus/components/u-status-bar/style.css +5 -0
- package/uview-plus/components/u-status-bar/style.scss +6 -0
- package/uview-plus/components/u-status-bar/u-status-bar.vue +37 -0
- package/uview-plus/components/u-steps/props.js +40 -0
- package/uview-plus/components/u-steps/style.css +24 -0
- package/uview-plus/components/u-steps/style.scss +14 -0
- package/uview-plus/components/u-steps/u-steps.vue +63 -0
- package/uview-plus/components/u-steps-item/props.js +25 -0
- package/uview-plus/components/u-steps-item/style.css +119 -0
- package/uview-plus/components/u-steps-item/style.scss +111 -0
- package/uview-plus/components/u-steps-item/u-steps-item.vue +225 -0
- package/uview-plus/components/u-sticky/props.js +41 -0
- package/uview-plus/components/u-sticky/style.css +5 -0
- package/uview-plus/components/u-sticky/style.scss +6 -0
- package/uview-plus/components/u-sticky/u-sticky.vue +201 -0
- package/uview-plus/components/u-subsection/props.js +50 -0
- package/uview-plus/components/u-subsection/style.css +95 -0
- package/uview-plus/components/u-subsection/style.scss +90 -0
- package/uview-plus/components/u-subsection/u-subsection.vue +188 -0
- package/uview-plus/components/u-swipe-action/props.js +10 -0
- package/uview-plus/components/u-swipe-action/u-swipe-action.vue +65 -0
- package/uview-plus/components/u-swipe-action-item/index - backup.wxs +256 -0
- package/uview-plus/components/u-swipe-action-item/index.wxs +229 -0
- package/uview-plus/components/u-swipe-action-item/nvue - backup.js +264 -0
- package/uview-plus/components/u-swipe-action-item/nvue.js +172 -0
- package/uview-plus/components/u-swipe-action-item/props.js +42 -0
- package/uview-plus/components/u-swipe-action-item/style.css +61 -0
- package/uview-plus/components/u-swipe-action-item/style.scss +45 -0
- package/uview-plus/components/u-swipe-action-item/u-swipe-action-item.vue +188 -0
- package/uview-plus/components/u-swipe-action-item/wxs.js +15 -0
- package/uview-plus/components/u-swiper/props.js +126 -0
- package/uview-plus/components/u-swiper/style.css +58 -0
- package/uview-plus/components/u-swiper/style.scss +50 -0
- package/uview-plus/components/u-swiper/u-swiper.vue +196 -0
- package/uview-plus/components/u-swiper-indicator/props.js +30 -0
- package/uview-plus/components/u-swiper-indicator/style.css +37 -0
- package/uview-plus/components/u-swiper-indicator/style.scss +31 -0
- package/uview-plus/components/u-swiper-indicator/u-swiper-indicator.vue +70 -0
- package/uview-plus/components/u-switch/props.js +63 -0
- package/uview-plus/components/u-switch/style.css +58 -0
- package/uview-plus/components/u-switch/style.scss +48 -0
- package/uview-plus/components/u-switch/u-switch.vue +165 -0
- package/uview-plus/components/u-tabbar/props.js +45 -0
- package/uview-plus/components/u-tabbar/style.css +40 -0
- package/uview-plus/components/u-tabbar/style.scss +25 -0
- package/uview-plus/components/u-tabbar/u-tabbar.vue +115 -0
- package/uview-plus/components/u-tabbar-item/props.js +35 -0
- package/uview-plus/components/u-tabbar-item/style.css +42 -0
- package/uview-plus/components/u-tabbar-item/style.scss +30 -0
- package/uview-plus/components/u-tabbar-item/u-tabbar-item.vue +105 -0
- package/uview-plus/components/u-table/props.js +4 -0
- package/uview-plus/components/u-table/style.css +11 -0
- package/uview-plus/components/u-table/style.scss +1 -0
- package/uview-plus/components/u-table/u-table.vue +24 -0
- package/uview-plus/components/u-tabs/props.js +65 -0
- package/uview-plus/components/u-tabs/style.css +69 -0
- package/uview-plus/components/u-tabs/style.scss +58 -0
- package/uview-plus/components/u-tabs/u-tabs.vue +294 -0
- package/uview-plus/components/u-tabs-item/props.js +4 -0
- package/uview-plus/components/u-tabs-item/u-tabs-item.vue +26 -0
- package/uview-plus/components/u-tag/props.js +85 -0
- package/uview-plus/components/u-tag/style.css +180 -0
- package/uview-plus/components/u-tag/style.scss +206 -0
- package/uview-plus/components/u-tag/u-tag.vue +1 -0
- package/uview-plus/components/u-td/props.js +4 -0
- package/uview-plus/components/u-td/style.css +11 -0
- package/uview-plus/components/u-td/style.scss +1 -0
- package/uview-plus/components/u-td/u-td.vue +26 -0
- package/uview-plus/components/u-text/props.js +111 -0
- package/uview-plus/components/u-text/style.css +65 -0
- package/uview-plus/components/u-text/style.scss +62 -0
- package/uview-plus/components/u-text/u-text.vue +144 -0
- package/uview-plus/components/u-text/value.js +85 -0
- package/uview-plus/components/u-textarea/props.js +125 -0
- package/uview-plus/components/u-textarea/style.css +46 -0
- package/uview-plus/components/u-textarea/style.scss +39 -0
- package/uview-plus/components/u-textarea/u-textarea.vue +222 -0
- package/uview-plus/components/u-toast/style.css +78 -0
- package/uview-plus/components/u-toast/style.scss +108 -0
- package/uview-plus/components/u-toast/u-toast.vue +180 -0
- package/uview-plus/components/u-toolbar/props.js +35 -0
- package/uview-plus/components/u-toolbar/style.css +37 -0
- package/uview-plus/components/u-toolbar/style.scss +32 -0
- package/uview-plus/components/u-toolbar/u-toolbar.vue +62 -0
- package/uview-plus/components/u-tooltip/props.js +60 -0
- package/uview-plus/components/u-tooltip/style.css +75 -0
- package/uview-plus/components/u-tooltip/style.scss +63 -0
- package/uview-plus/components/u-tooltip/u-tooltip.vue +279 -0
- package/uview-plus/components/u-tr/props.js +4 -0
- package/uview-plus/components/u-tr/style.css +11 -0
- package/uview-plus/components/u-tr/style.scss +1 -0
- package/uview-plus/components/u-tr/u-tr.vue +26 -0
- package/uview-plus/components/u-transition/nvue-ani-map.js +1 -0
- package/uview-plus/components/u-transition/props.js +25 -0
- package/uview-plus/components/u-transition/style.css +109 -0
- package/uview-plus/components/u-transition/style.scss +9 -0
- package/uview-plus/components/u-transition/transition.js +164 -0
- package/uview-plus/components/u-transition/u-transition.vue +86 -0
- package/uview-plus/components/u-transition/vue.ani-style.scss +113 -0
- package/uview-plus/components/u-upload/mixin.js +21 -0
- package/uview-plus/components/u-upload/props.js +125 -0
- package/uview-plus/components/u-upload/style.css +164 -0
- package/uview-plus/components/u-upload/style.scss +200 -0
- package/uview-plus/components/u-upload/u-upload.vue +316 -0
- package/uview-plus/components/u-upload/utils.js +151 -0
- package/uview-plus/components/uview-plus/uview-plus.vue +8 -0
- package/uview-plus/index.css +4091 -0
- package/uview-plus/index.js +81 -0
- package/uview-plus/index.scss +24 -0
- package/uview-plus/libs/config/color.js +17 -0
- package/uview-plus/libs/config/config.js +33 -0
- package/uview-plus/libs/config/props/actionSheet.js +25 -0
- package/uview-plus/libs/config/props/album.js +25 -0
- package/uview-plus/libs/config/props/alert.js +22 -0
- package/uview-plus/libs/config/props/avatar.js +28 -0
- package/uview-plus/libs/config/props/avatarGroup.js +23 -0
- package/uview-plus/libs/config/props/backtop.js +27 -0
- package/uview-plus/libs/config/props/badge.js +27 -0
- package/uview-plus/libs/config/props/button.js +42 -0
- package/uview-plus/libs/config/props/calendar.js +42 -0
- package/uview-plus/libs/config/props/carKeyboard.js +15 -0
- package/uview-plus/libs/config/props/cell.js +35 -0
- package/uview-plus/libs/config/props/cellGroup.js +17 -0
- package/uview-plus/libs/config/props/checkbox.js +27 -0
- package/uview-plus/libs/config/props/checkboxGroup.js +29 -0
- package/uview-plus/libs/config/props/circleProgress.js +15 -0
- package/uview-plus/libs/config/props/code.js +21 -0
- package/uview-plus/libs/config/props/codeInput.js +29 -0
- package/uview-plus/libs/config/props/col.js +19 -0
- package/uview-plus/libs/config/props/collapse.js +17 -0
- package/uview-plus/libs/config/props/collapseItem.js +25 -0
- package/uview-plus/libs/config/props/columnNotice.js +24 -0
- package/uview-plus/libs/config/props/countDown.js +18 -0
- package/uview-plus/libs/config/props/countTo.js +25 -0
- package/uview-plus/libs/config/props/datetimePicker.js +36 -0
- package/uview-plus/libs/config/props/divider.js +23 -0
- package/uview-plus/libs/config/props/empty.js +26 -0
- package/uview-plus/libs/config/props/form.js +22 -0
- package/uview-plus/libs/config/props/formItem.js +22 -0
- package/uview-plus/libs/config/props/gap.js +19 -0
- package/uview-plus/libs/config/props/grid.js +17 -0
- package/uview-plus/libs/config/props/gridItem.js +16 -0
- package/uview-plus/libs/config/props/icon.js +36 -0
- package/uview-plus/libs/config/props/image.js +30 -0
- package/uview-plus/libs/config/props/indexAnchor.js +19 -0
- package/uview-plus/libs/config/props/indexList.js +19 -0
- package/uview-plus/libs/config/props/input.js +48 -0
- package/uview-plus/libs/config/props/keyboard.js +30 -0
- package/uview-plus/libs/config/props/line.js +20 -0
- package/uview-plus/libs/config/props/lineProgress.js +19 -0
- package/uview-plus/libs/config/props/link.js +26 -0
- package/uview-plus/libs/config/props/list.js +28 -0
- package/uview-plus/libs/config/props/listItem.js +15 -0
- package/uview-plus/libs/config/props/loadingIcon.js +30 -0
- package/uview-plus/libs/config/props/loadingPage.js +23 -0
- package/uview-plus/libs/config/props/loadmore.js +32 -0
- package/uview-plus/libs/config/props/modal.js +30 -0
- package/uview-plus/libs/config/props/navbar.js +32 -0
- package/uview-plus/libs/config/props/noNetwork.js +18 -0
- package/uview-plus/libs/config/props/noticeBar.js +27 -0
- package/uview-plus/libs/config/props/notify.js +22 -0
- package/uview-plus/libs/config/props/numberBox.js +35 -0
- package/uview-plus/libs/config/props/numberKeyboard.js +17 -0
- package/uview-plus/libs/config/props/overlay.js +18 -0
- package/uview-plus/libs/config/props/parse.js +22 -0
- package/uview-plus/libs/config/props/picker.js +29 -0
- package/uview-plus/libs/config/props/popup.js +29 -0
- package/uview-plus/libs/config/props/radio.js +27 -0
- package/uview-plus/libs/config/props/radioGroup.js +30 -0
- package/uview-plus/libs/config/props/rate.js +26 -0
- package/uview-plus/libs/config/props/readMore.js +22 -0
- package/uview-plus/libs/config/props/row.js +17 -0
- package/uview-plus/libs/config/props/rowNotice.js +21 -0
- package/uview-plus/libs/config/props/scrollList.js +20 -0
- package/uview-plus/libs/config/props/search.js +37 -0
- package/uview-plus/libs/config/props/section.js +24 -0
- package/uview-plus/libs/config/props/skeleton.js +25 -0
- package/uview-plus/libs/config/props/slider.js +25 -0
- package/uview-plus/libs/config/props/statusBar.js +15 -0
- package/uview-plus/libs/config/props/steps.js +21 -0
- package/uview-plus/libs/config/props/stepsItem.js +18 -0
- package/uview-plus/libs/config/props/sticky.js +20 -0
- package/uview-plus/libs/config/props/subsection.js +23 -0
- package/uview-plus/libs/config/props/swipeAction.js +15 -0
- package/uview-plus/libs/config/props/swipeActionItem.js +21 -0
- package/uview-plus/libs/config/props/swiper.js +39 -0
- package/uview-plus/libs/config/props/swipterIndicator.js +19 -0
- package/uview-plus/libs/config/props/switch.js +24 -0
- package/uview-plus/libs/config/props/tabbar.js +22 -0
- package/uview-plus/libs/config/props/tabbarItem.js +20 -0
- package/uview-plus/libs/config/props/tabs.js +32 -0
- package/uview-plus/libs/config/props/tag.js +29 -0
- package/uview-plus/libs/config/props/text.js +38 -0
- package/uview-plus/libs/config/props/textarea.js +36 -0
- package/uview-plus/libs/config/props/toast.js +30 -0
- package/uview-plus/libs/config/props/toolbar.js +21 -0
- package/uview-plus/libs/config/props/tooltip.js +25 -0
- package/uview-plus/libs/config/props/transition.js +18 -0
- package/uview-plus/libs/config/props/upload.js +36 -0
- package/uview-plus/libs/config/props.js +190 -0
- package/uview-plus/libs/config/zIndex.js +20 -0
- package/uview-plus/libs/css/color-libcss.scss +117 -0
- package/uview-plus/libs/css/color.scss +155 -0
- package/uview-plus/libs/css/common-libcss.scss +132 -0
- package/uview-plus/libs/css/common.scss +97 -0
- package/uview-plus/libs/css/components-libcss.scss +11 -0
- package/uview-plus/libs/css/components.scss +15 -0
- package/uview-plus/libs/css/flex-libcss.scss +2815 -0
- package/uview-plus/libs/css/flex.scss +296 -0
- package/uview-plus/libs/css/h5-libcss.scss +0 -0
- package/uview-plus/libs/css/h5.scss +0 -0
- package/uview-plus/libs/css/mixin-libcss.scss +0 -0
- package/uview-plus/libs/css/mixin.scss +8 -0
- package/uview-plus/libs/css/mp-libcss.scss +0 -0
- package/uview-plus/libs/css/mp.scss +0 -0
- package/uview-plus/libs/css/nvue-libcss.scss +0 -0
- package/uview-plus/libs/css/nvue.scss +0 -0
- package/uview-plus/libs/css/vue-libcss.scss +35 -0
- package/uview-plus/libs/css/vue.scss +27 -0
- package/uview-plus/libs/function/colorGradient.js +134 -0
- package/uview-plus/libs/function/debounce.js +29 -0
- package/uview-plus/libs/function/digit.js +167 -0
- package/uview-plus/libs/function/index.js +708 -0
- package/uview-plus/libs/function/platform.js +75 -0
- package/uview-plus/libs/function/test.js +288 -0
- package/uview-plus/libs/function/throttle.js +30 -0
- package/uview-plus/libs/luch-request/adapters/index.js +97 -0
- package/uview-plus/libs/luch-request/core/InterceptorManager.js +50 -0
- package/uview-plus/libs/luch-request/core/Request.js +198 -0
- package/uview-plus/libs/luch-request/core/buildFullPath.js +20 -0
- package/uview-plus/libs/luch-request/core/defaults.js +29 -0
- package/uview-plus/libs/luch-request/core/dispatchRequest.js +3 -0
- package/uview-plus/libs/luch-request/core/mergeConfig.js +103 -0
- package/uview-plus/libs/luch-request/core/settle.js +16 -0
- package/uview-plus/libs/luch-request/helpers/buildURL.js +69 -0
- package/uview-plus/libs/luch-request/helpers/combineURLs.js +14 -0
- package/uview-plus/libs/luch-request/helpers/isAbsoluteURL.js +14 -0
- package/uview-plus/libs/luch-request/index.d.ts +116 -0
- package/uview-plus/libs/luch-request/index.js +3 -0
- package/uview-plus/libs/luch-request/utils/clone.js +264 -0
- package/uview-plus/libs/luch-request/utils.js +131 -0
- package/uview-plus/libs/mixin/button.js +13 -0
- package/uview-plus/libs/mixin/mixin.js +167 -0
- package/uview-plus/libs/mixin/mpMixin.js +8 -0
- package/uview-plus/libs/mixin/mpShare.js +13 -0
- package/uview-plus/libs/mixin/openType.js +25 -0
- package/uview-plus/libs/mixin/style.js +252 -0
- package/uview-plus/libs/mixin/touch.js +61 -0
- package/uview-plus/libs/util/async-validator.js +1343 -0
- package/uview-plus/libs/util/calendar.js +546 -0
- package/uview-plus/libs/util/emitter.js +51 -0
- package/uview-plus/libs/util/route.js +124 -0
- package/uview-plus/package.json +91 -0
- package/uview-plus/theme.css +29 -0
- package/uview-plus/theme.scss +44 -0
- package/uview-ui/LICENSE +21 -0
- package/uview-ui/README.md +66 -0
- package/uview-ui/changelog.md +362 -0
- package/uview-ui/components/u--form/u--form.vue +1 -0
- package/uview-ui/components/u--image/u--image.vue +1 -0
- package/uview-ui/components/u--input/u--input.vue +1 -0
- package/uview-ui/components/u--text/u--text.vue +1 -0
- package/uview-ui/components/u--textarea/u--textarea.vue +1 -0
- package/uview-ui/components/u-action-sheet/props.js +55 -0
- package/uview-ui/components/u-action-sheet/style.css +68 -0
- package/uview-ui/components/u-action-sheet/style.scss +84 -0
- package/uview-ui/components/u-action-sheet/u-action-sheet.vue +158 -0
- package/uview-ui/components/u-album/props.js +60 -0
- package/uview-ui/components/u-album/style.css +41 -0
- package/uview-ui/components/u-album/style.scss +26 -0
- package/uview-ui/components/u-album/u-album.vue +203 -0
- package/uview-ui/components/u-alert/props.js +45 -0
- package/uview-ui/components/u-alert/style.css +101 -0
- package/uview-ui/components/u-alert/style.scss +113 -0
- package/uview-ui/components/u-alert/u-alert.vue +118 -0
- package/uview-ui/components/u-avatar/props.js +79 -0
- package/uview-ui/components/u-avatar/style.css +31 -0
- package/uview-ui/components/u-avatar/style.scss +25 -0
- package/uview-ui/components/u-avatar/u-avatar.vue +168 -0
- package/uview-ui/components/u-avatar-group/props.js +53 -0
- package/uview-ui/components/u-avatar-group/style.css +39 -0
- package/uview-ui/components/u-avatar-group/style.scss +28 -0
- package/uview-ui/components/u-avatar-group/u-avatar-group.vue +74 -0
- package/uview-ui/components/u-back-top/props.js +55 -0
- package/uview-ui/components/u-back-top/style.css +27 -0
- package/uview-ui/components/u-back-top/style.scss +19 -0
- package/uview-ui/components/u-back-top/u-back-top.vue +95 -0
- package/uview-ui/components/u-badge/props.js +73 -0
- package/uview-ui/components/u-badge/style.css +68 -0
- package/uview-ui/components/u-badge/style.scss +85 -0
- package/uview-ui/components/u-badge/u-badge.vue +96 -0
- package/uview-ui/components/u-button/nvue-parse.scss +27 -0
- package/uview-ui/components/u-button/nvue.scss +1 -0
- package/uview-ui/components/u-button/props.js +162 -0
- package/uview-ui/components/u-button/style.css +202 -0
- package/uview-ui/components/u-button/style.scss +196 -0
- package/uview-ui/components/u-button/u-button.vue +261 -0
- package/uview-ui/components/u-button/vue-parse.scss +42 -0
- package/uview-ui/components/u-button/vue.scss +80 -0
- package/uview-ui/components/u-calendar/header.vue +1 -0
- package/uview-ui/components/u-calendar/month.vue +476 -0
- package/uview-ui/components/u-calendar/props.js +145 -0
- package/uview-ui/components/u-calendar/style.css +14 -0
- package/uview-ui/components/u-calendar/style.scss +7 -0
- package/uview-ui/components/u-calendar/u-calendar.vue +325 -0
- package/uview-ui/components/u-calendar/util.js +85 -0
- package/uview-ui/components/u-car-keyboard/props.js +14 -0
- package/uview-ui/components/u-car-keyboard/style.css +80 -0
- package/uview-ui/components/u-car-keyboard/style.scss +90 -0
- package/uview-ui/components/u-car-keyboard/u-car-keyboard.vue +1 -0
- package/uview-ui/components/u-cell/props.js +111 -0
- package/uview-ui/components/u-cell/style.css +98 -0
- package/uview-ui/components/u-cell/style.scss +127 -0
- package/uview-ui/components/u-cell/u-cell.vue +125 -0
- package/uview-ui/components/u-cell-group/props.js +15 -0
- package/uview-ui/components/u-cell-group/style.css +25 -0
- package/uview-ui/components/u-cell-group/style.scss +24 -0
- package/uview-ui/components/u-cell-group/u-cell-group.vue +37 -0
- package/uview-ui/components/u-checkbox/props.js +70 -0
- package/uview-ui/components/u-checkbox/style.css +84 -0
- package/uview-ui/components/u-checkbox/style.scss +101 -0
- package/uview-ui/components/u-checkbox/u-checkbox.vue +239 -0
- package/uview-ui/components/u-checkbox-group/props.js +82 -0
- package/uview-ui/components/u-checkbox-group/style.css +23 -0
- package/uview-ui/components/u-checkbox-group/style.scss +11 -0
- package/uview-ui/components/u-checkbox-group/u-checkbox-group.vue +96 -0
- package/uview-ui/components/u-circle-progress/props.js +9 -0
- package/uview-ui/components/u-circle-progress/style.css +80 -0
- package/uview-ui/components/u-circle-progress/style.scss +86 -0
- package/uview-ui/components/u-circle-progress/u-circle-progress.vue +99 -0
- package/uview-ui/components/u-code/props.js +35 -0
- package/uview-ui/components/u-code/style.css +11 -0
- package/uview-ui/components/u-code/style.scss +1 -0
- package/uview-ui/components/u-code/u-code.vue +129 -0
- package/uview-ui/components/u-code-input/props.js +80 -0
- package/uview-ui/components/u-code-input/style.css +78 -0
- package/uview-ui/components/u-code-input/style.scss +75 -0
- package/uview-ui/components/u-code-input/u-code-input.vue +169 -0
- package/uview-ui/components/u-col/props.js +30 -0
- package/uview-ui/components/u-col/style.css +61 -0
- package/uview-ui/components/u-col/style.scss +67 -0
- package/uview-ui/components/u-col/u-col.vue +88 -0
- package/uview-ui/components/u-collapse/props.js +20 -0
- package/uview-ui/components/u-collapse/style.css +11 -0
- package/uview-ui/components/u-collapse/style.scss +1 -0
- package/uview-ui/components/u-collapse/u-collapse.vue +89 -0
- package/uview-ui/components/u-collapse-item/props.js +60 -0
- package/uview-ui/components/u-collapse-item/style.css +21 -0
- package/uview-ui/components/u-collapse-item/style.scss +15 -0
- package/uview-ui/components/u-collapse-item/u-collapse-item.vue +1 -0
- package/uview-ui/components/u-column-notice/props.js +56 -0
- package/uview-ui/components/u-column-notice/style.css +48 -0
- package/uview-ui/components/u-column-notice/style.scss +35 -0
- package/uview-ui/components/u-column-notice/u-column-notice.vue +95 -0
- package/uview-ui/components/u-count-down/props.js +25 -0
- package/uview-ui/components/u-count-down/style.css +16 -0
- package/uview-ui/components/u-count-down/style.scss +12 -0
- package/uview-ui/components/u-count-down/u-count-down.vue +1 -0
- package/uview-ui/components/u-count-down/utils.js +62 -0
- package/uview-ui/components/u-count-to/props.js +60 -0
- package/uview-ui/components/u-count-to/style.css +17 -0
- package/uview-ui/components/u-count-to/style.scss +8 -0
- package/uview-ui/components/u-count-to/u-count-to.vue +179 -0
- package/uview-ui/components/u-datetime-picker/props.js +117 -0
- package/uview-ui/components/u-datetime-picker/style.css +11 -0
- package/uview-ui/components/u-datetime-picker/style.scss +1 -0
- package/uview-ui/components/u-datetime-picker/u-datetime-picker.vue +365 -0
- package/uview-ui/components/u-divider/props.js +45 -0
- package/uview-ui/components/u-divider/style.css +28 -0
- package/uview-ui/components/u-divider/style.scss +23 -0
- package/uview-ui/components/u-divider/u-divider.vue +73 -0
- package/uview-ui/components/u-dropdown/props.js +65 -0
- package/uview-ui/components/u-dropdown/style.css +32 -0
- package/uview-ui/components/u-dropdown/style.scss +18 -0
- package/uview-ui/components/u-dropdown/u-dropdown.vue +1 -0
- package/uview-ui/components/u-dropdown-item/props.js +36 -0
- package/uview-ui/components/u-dropdown-item/style.css +32 -0
- package/uview-ui/components/u-dropdown-item/style.scss +18 -0
- package/uview-ui/components/u-dropdown-item/u-dropdown-item.vue +1 -0
- package/uview-ui/components/u-empty/props.js +60 -0
- package/uview-ui/components/u-empty/style.css +38 -0
- package/uview-ui/components/u-empty/style.scss +23 -0
- package/uview-ui/components/u-empty/u-empty.vue +98 -0
- package/uview-ui/components/u-form/props.js +46 -0
- package/uview-ui/components/u-form/u-form.vue +1 -0
- package/uview-ui/components/u-form-item/props.js +49 -0
- package/uview-ui/components/u-form-item/style.css +95 -0
- package/uview-ui/components/u-form-item/style.scss +76 -0
- package/uview-ui/components/u-form-item/u-form-item.vue +159 -0
- package/uview-ui/components/u-gap/props.js +25 -0
- package/uview-ui/components/u-gap/style.css +11 -0
- package/uview-ui/components/u-gap/style.scss +1 -0
- package/uview-ui/components/u-gap/u-gap.vue +38 -0
- package/uview-ui/components/u-grid/props.js +20 -0
- package/uview-ui/components/u-grid/style.css +27 -0
- package/uview-ui/components/u-grid/style.scss +15 -0
- package/uview-ui/components/u-grid/u-grid.vue +79 -0
- package/uview-ui/components/u-grid-item/props.js +15 -0
- package/uview-ui/components/u-grid-item/style.css +41 -0
- package/uview-ui/components/u-grid-item/style.scss +44 -0
- package/uview-ui/components/u-grid-item/u-grid-item.vue +160 -0
- package/uview-ui/components/u-icon/icons.js +214 -0
- package/uview-ui/components/u-icon/props.js +90 -0
- package/uview-ui/components/u-icon/style.css +74 -0
- package/uview-ui/components/u-icon/style.scss +85 -0
- package/uview-ui/components/u-icon/u-icon.vue +132 -0
- package/uview-ui/components/u-image/props.js +85 -0
- package/uview-ui/components/u-image/style.css +35 -0
- package/uview-ui/components/u-image/style.scss +34 -0
- package/uview-ui/components/u-image/u-image.vue +181 -0
- package/uview-ui/components/u-index-anchor/props.js +30 -0
- package/uview-ui/components/u-index-anchor/style.css +29 -0
- package/uview-ui/components/u-index-anchor/style.scss +15 -0
- package/uview-ui/components/u-index-anchor/u-index-anchor.vue +78 -0
- package/uview-ui/components/u-index-item/props.js +3 -0
- package/uview-ui/components/u-index-item/style.css +11 -0
- package/uview-ui/components/u-index-item/style.scss +1 -0
- package/uview-ui/components/u-index-item/u-index-item.vue +81 -0
- package/uview-ui/components/u-index-list/props.js +30 -0
- package/uview-ui/components/u-index-list/style.css +61 -0
- package/uview-ui/components/u-index-list/style.scss +53 -0
- package/uview-ui/components/u-index-list/u-index-list.vue +367 -0
- package/uview-ui/components/u-input/props.js +188 -0
- package/uview-ui/components/u-input/style.css +75 -0
- package/uview-ui/components/u-input/style.scss +64 -0
- package/uview-ui/components/u-input/u-input.vue +260 -0
- package/uview-ui/components/u-keyboard/props.js +85 -0
- package/uview-ui/components/u-keyboard/style.css +37 -0
- package/uview-ui/components/u-keyboard/style.scss +31 -0
- package/uview-ui/components/u-keyboard/u-keyboard.vue +115 -0
- package/uview-ui/components/u-line/props.js +34 -0
- package/uview-ui/components/u-line/style.css +16 -0
- package/uview-ui/components/u-line/style.scss +7 -0
- package/uview-ui/components/u-line/u-line.vue +50 -0
- package/uview-ui/components/u-line-progress/props.js +29 -0
- package/uview-ui/components/u-line-progress/style.css +50 -0
- package/uview-ui/components/u-line-progress/style.scss +38 -0
- package/uview-ui/components/u-line-progress/u-line-progress.vue +99 -0
- package/uview-ui/components/u-link/props.js +40 -0
- package/uview-ui/components/u-link/style.css +22 -0
- package/uview-ui/components/u-link/style.scss +11 -0
- package/uview-ui/components/u-link/u-link.vue +68 -0
- package/uview-ui/components/u-list/props.js +76 -0
- package/uview-ui/components/u-list/style.css +17 -0
- package/uview-ui/components/u-list/style.scss +5 -0
- package/uview-ui/components/u-list/u-list.vue +152 -0
- package/uview-ui/components/u-list-item/props.js +10 -0
- package/uview-ui/components/u-list-item/style.css +11 -0
- package/uview-ui/components/u-list-item/style.scss +4 -0
- package/uview-ui/components/u-list-item/u-list-item.vue +105 -0
- package/uview-ui/components/u-loading-icon/props.js +60 -0
- package/uview-ui/components/u-loading-icon/style.css +148 -0
- package/uview-ui/components/u-loading-icon/style.scss +153 -0
- package/uview-ui/components/u-loading-icon/u-loading-icon.vue +1 -0
- package/uview-ui/components/u-loading-page/props.js +50 -0
- package/uview-ui/components/u-loading-page/style.css +44 -0
- package/uview-ui/components/u-loading-page/style.scss +37 -0
- package/uview-ui/components/u-loading-page/u-loading-page.vue +75 -0
- package/uview-ui/components/u-loadmore/props.js +95 -0
- package/uview-ui/components/u-loadmore/style.css +40 -0
- package/uview-ui/components/u-loadmore/style.scss +29 -0
- package/uview-ui/components/u-loadmore/u-loadmore.vue +101 -0
- package/uview-ui/components/u-modal/props.js +85 -0
- package/uview-ui/components/u-modal/style.css +70 -0
- package/uview-ui/components/u-modal/style.scss +65 -0
- package/uview-ui/components/u-modal/u-modal.vue +1 -0
- package/uview-ui/components/u-navbar/props.js +85 -0
- package/uview-ui/components/u-navbar/style.css +62 -0
- package/uview-ui/components/u-navbar/style.scss +58 -0
- package/uview-ui/components/u-navbar/u-navbar.vue +114 -0
- package/uview-ui/components/u-no-network/props.js +20 -0
- package/uview-ui/components/u-no-network/style.css +49 -0
- package/uview-ui/components/u-no-network/style.scss +36 -0
- package/uview-ui/components/u-no-network/u-no-network.vue +168 -0
- package/uview-ui/components/u-notice-bar/props.js +71 -0
- package/uview-ui/components/u-notice-bar/style.css +16 -0
- package/uview-ui/components/u-notice-bar/style.scss +7 -0
- package/uview-ui/components/u-notice-bar/u-notice-bar.vue +98 -0
- package/uview-ui/components/u-notify/props.js +50 -0
- package/uview-ui/components/u-notify/style.css +39 -0
- package/uview-ui/components/u-notify/style.scss +40 -0
- package/uview-ui/components/u-notify/u-notify.vue +166 -0
- package/uview-ui/components/u-number-box/props.js +110 -0
- package/uview-ui/components/u-number-box/style.css +67 -0
- package/uview-ui/components/u-number-box/style.scss +70 -0
- package/uview-ui/components/u-number-box/u-number-box.vue +320 -0
- package/uview-ui/components/u-number-keyboard/props.js +20 -0
- package/uview-ui/components/u-number-keyboard/style.css +56 -0
- package/uview-ui/components/u-number-keyboard/style.scss +62 -0
- package/uview-ui/components/u-number-keyboard/u-number-keyboard.vue +118 -0
- package/uview-ui/components/u-overlay/props.js +25 -0
- package/uview-ui/components/u-overlay/style.css +19 -0
- package/uview-ui/components/u-overlay/style.scss +14 -0
- package/uview-ui/components/u-overlay/u-overlay.vue +48 -0
- package/uview-ui/components/u-parse/node/node.vue +1 -0
- package/uview-ui/components/u-parse/parser.js +1075 -0
- package/uview-ui/components/u-parse/props.js +46 -0
- package/uview-ui/components/u-parse/u-parse.vue +363 -0
- package/uview-ui/components/u-picker/props.js +80 -0
- package/uview-ui/components/u-picker/style.css +57 -0
- package/uview-ui/components/u-picker/style.scss +45 -0
- package/uview-ui/components/u-picker/u-picker.vue +228 -0
- package/uview-ui/components/u-picker-column/props.js +3 -0
- package/uview-ui/components/u-picker-column/style.css +11 -0
- package/uview-ui/components/u-picker-column/style.scss +1 -0
- package/uview-ui/components/u-picker-column/u-picker-column.vue +25 -0
- package/uview-ui/components/u-popup/props.js +80 -0
- package/uview-ui/components/u-popup/style.css +70 -0
- package/uview-ui/components/u-popup/style.scss +75 -0
- package/uview-ui/components/u-popup/u-popup.vue +1 -0
- package/uview-ui/components/u-radio/props.js +65 -0
- package/uview-ui/components/u-radio/style.css +84 -0
- package/uview-ui/components/u-radio/style.scss +100 -0
- package/uview-ui/components/u-radio/u-radio.vue +234 -0
- package/uview-ui/components/u-radio-group/props.js +86 -0
- package/uview-ui/components/u-radio-group/style.css +26 -0
- package/uview-ui/components/u-radio-group/style.scss +13 -0
- package/uview-ui/components/u-radio-group/u-radio-group.vue +97 -0
- package/uview-ui/components/u-rate/props.js +70 -0
- package/uview-ui/components/u-rate/style.css +43 -0
- package/uview-ui/components/u-rate/style.scss +38 -0
- package/uview-ui/components/u-rate/u-rate.vue +231 -0
- package/uview-ui/components/u-read-more/props.js +62 -0
- package/uview-ui/components/u-read-more/style.css +33 -0
- package/uview-ui/components/u-read-more/style.scss +22 -0
- package/uview-ui/components/u-read-more/u-read-more.vue +119 -0
- package/uview-ui/components/u-row/props.js +20 -0
- package/uview-ui/components/u-row/style.css +17 -0
- package/uview-ui/components/u-row/style.scss +5 -0
- package/uview-ui/components/u-row/u-row.vue +82 -0
- package/uview-ui/components/u-row-notice/props.js +40 -0
- package/uview-ui/components/u-row-notice/style.css +59 -0
- package/uview-ui/components/u-row-notice/style.scss +48 -0
- package/uview-ui/components/u-row-notice/u-row-notice.vue +256 -0
- package/uview-ui/components/u-safe-bottom/props.js +3 -0
- package/uview-ui/components/u-safe-bottom/style.css +5 -0
- package/uview-ui/components/u-safe-bottom/style.scss +5 -0
- package/uview-ui/components/u-safe-bottom/u-safe-bottom.vue +1 -0
- package/uview-ui/components/u-scroll-list/nvue.js +3 -0
- package/uview-ui/components/u-scroll-list/other.js +0 -0
- package/uview-ui/components/u-scroll-list/props.js +35 -0
- package/uview-ui/components/u-scroll-list/scrollWxs.wxs +50 -0
- package/uview-ui/components/u-scroll-list/style.css +45 -0
- package/uview-ui/components/u-scroll-list/style.scss +32 -0
- package/uview-ui/components/u-scroll-list/u-scroll-list.vue +191 -0
- package/uview-ui/components/u-search/props.js +119 -0
- package/uview-ui/components/u-search/style.css +92 -0
- package/uview-ui/components/u-search/style.scss +98 -0
- package/uview-ui/components/u-search/u-search.vue +204 -0
- package/uview-ui/components/u-skeleton/props.js +60 -0
- package/uview-ui/components/u-skeleton/style.css +62 -0
- package/uview-ui/components/u-skeleton/style.scss +59 -0
- package/uview-ui/components/u-skeleton/u-skeleton.vue +188 -0
- package/uview-ui/components/u-slider/mpother.js +113 -0
- package/uview-ui/components/u-slider/mpwxs.js +42 -0
- package/uview-ui/components/u-slider/mpwxs.wxs +121 -0
- package/uview-ui/components/u-slider/nvue - /345/211/257/346/234/254.js" +175 -0
- package/uview-ui/components/u-slider/nvue.js +190 -0
- package/uview-ui/components/u-slider/props.js +55 -0
- package/uview-ui/components/u-slider/style.css +11 -0
- package/uview-ui/components/u-slider/style.scss +1 -0
- package/uview-ui/components/u-slider/u-slider.vue +1 -0
- package/uview-ui/components/u-status-bar/props.js +9 -0
- package/uview-ui/components/u-status-bar/style.css +5 -0
- package/uview-ui/components/u-status-bar/style.scss +6 -0
- package/uview-ui/components/u-status-bar/u-status-bar.vue +37 -0
- package/uview-ui/components/u-steps/props.js +40 -0
- package/uview-ui/components/u-steps/style.css +24 -0
- package/uview-ui/components/u-steps/style.scss +14 -0
- package/uview-ui/components/u-steps/u-steps.vue +63 -0
- package/uview-ui/components/u-steps-item/props.js +25 -0
- package/uview-ui/components/u-steps-item/style.css +119 -0
- package/uview-ui/components/u-steps-item/style.scss +111 -0
- package/uview-ui/components/u-steps-item/u-steps-item.vue +225 -0
- package/uview-ui/components/u-sticky/props.js +41 -0
- package/uview-ui/components/u-sticky/style.css +5 -0
- package/uview-ui/components/u-sticky/style.scss +6 -0
- package/uview-ui/components/u-sticky/u-sticky.vue +201 -0
- package/uview-ui/components/u-subsection/props.js +50 -0
- package/uview-ui/components/u-subsection/style.css +95 -0
- package/uview-ui/components/u-subsection/style.scss +90 -0
- package/uview-ui/components/u-subsection/u-subsection.vue +188 -0
- package/uview-ui/components/u-swipe-action/props.js +10 -0
- package/uview-ui/components/u-swipe-action/u-swipe-action.vue +65 -0
- package/uview-ui/components/u-swipe-action-item/index - backup.wxs +256 -0
- package/uview-ui/components/u-swipe-action-item/index.wxs +225 -0
- package/uview-ui/components/u-swipe-action-item/nvue - backup.js +264 -0
- package/uview-ui/components/u-swipe-action-item/nvue.js +172 -0
- package/uview-ui/components/u-swipe-action-item/props.js +42 -0
- package/uview-ui/components/u-swipe-action-item/style.css +61 -0
- package/uview-ui/components/u-swipe-action-item/style.scss +45 -0
- package/uview-ui/components/u-swipe-action-item/u-swipe-action-item.vue +147 -0
- package/uview-ui/components/u-swipe-action-item/wxs.js +15 -0
- package/uview-ui/components/u-swiper/props.js +126 -0
- package/uview-ui/components/u-swiper/style.css +58 -0
- package/uview-ui/components/u-swiper/style.scss +50 -0
- package/uview-ui/components/u-swiper/u-swiper.vue +196 -0
- package/uview-ui/components/u-swiper-indicator/props.js +30 -0
- package/uview-ui/components/u-swiper-indicator/style.css +37 -0
- package/uview-ui/components/u-swiper-indicator/style.scss +31 -0
- package/uview-ui/components/u-swiper-indicator/u-swiper-indicator.vue +70 -0
- package/uview-ui/components/u-switch/props.js +55 -0
- package/uview-ui/components/u-switch/style.css +58 -0
- package/uview-ui/components/u-switch/style.scss +48 -0
- package/uview-ui/components/u-switch/u-switch.vue +121 -0
- package/uview-ui/components/u-tabbar/props.js +45 -0
- package/uview-ui/components/u-tabbar/style.css +39 -0
- package/uview-ui/components/u-tabbar/style.scss +24 -0
- package/uview-ui/components/u-tabbar/u-tabbar.vue +115 -0
- package/uview-ui/components/u-tabbar-item/props.js +35 -0
- package/uview-ui/components/u-tabbar-item/style.css +39 -0
- package/uview-ui/components/u-tabbar-item/style.scss +28 -0
- package/uview-ui/components/u-tabbar-item/u-tabbar-item.vue +101 -0
- package/uview-ui/components/u-table/props.js +3 -0
- package/uview-ui/components/u-table/style.css +11 -0
- package/uview-ui/components/u-table/style.scss +1 -0
- package/uview-ui/components/u-table/u-table.vue +24 -0
- package/uview-ui/components/u-tabs/props.js +65 -0
- package/uview-ui/components/u-tabs/style.css +69 -0
- package/uview-ui/components/u-tabs/style.scss +58 -0
- package/uview-ui/components/u-tabs/u-tabs.vue +294 -0
- package/uview-ui/components/u-tabs-item/props.js +3 -0
- package/uview-ui/components/u-tabs-item/u-tabs-item.vue +26 -0
- package/uview-ui/components/u-tag/props.js +85 -0
- package/uview-ui/components/u-tag/style.css +180 -0
- package/uview-ui/components/u-tag/style.scss +206 -0
- package/uview-ui/components/u-tag/u-tag.vue +1 -0
- package/uview-ui/components/u-td/props.js +3 -0
- package/uview-ui/components/u-td/style.css +11 -0
- package/uview-ui/components/u-td/style.scss +1 -0
- package/uview-ui/components/u-td/u-td.vue +26 -0
- package/uview-ui/components/u-text/props.js +111 -0
- package/uview-ui/components/u-text/style.css +65 -0
- package/uview-ui/components/u-text/style.scss +62 -0
- package/uview-ui/components/u-text/u-text.vue +143 -0
- package/uview-ui/components/u-text/value.js +85 -0
- package/uview-ui/components/u-textarea/props.js +120 -0
- package/uview-ui/components/u-textarea/style.css +46 -0
- package/uview-ui/components/u-textarea/style.scss +39 -0
- package/uview-ui/components/u-textarea/u-textarea.vue +194 -0
- package/uview-ui/components/u-toast/style.css +78 -0
- package/uview-ui/components/u-toast/style.scss +108 -0
- package/uview-ui/components/u-toast/u-toast.vue +180 -0
- package/uview-ui/components/u-toolbar/props.js +35 -0
- package/uview-ui/components/u-toolbar/style.css +37 -0
- package/uview-ui/components/u-toolbar/style.scss +32 -0
- package/uview-ui/components/u-toolbar/u-toolbar.vue +62 -0
- package/uview-ui/components/u-tooltip/clipboard.min.js +58 -0
- package/uview-ui/components/u-tooltip/props.js +60 -0
- package/uview-ui/components/u-tooltip/style.css +75 -0
- package/uview-ui/components/u-tooltip/style.scss +63 -0
- package/uview-ui/components/u-tooltip/u-tooltip.vue +278 -0
- package/uview-ui/components/u-tr/props.js +3 -0
- package/uview-ui/components/u-tr/style.css +11 -0
- package/uview-ui/components/u-tr/style.scss +1 -0
- package/uview-ui/components/u-tr/u-tr.vue +26 -0
- package/uview-ui/components/u-transition/nvue.ani-map.js +1 -0
- package/uview-ui/components/u-transition/props.js +25 -0
- package/uview-ui/components/u-transition/style.css +109 -0
- package/uview-ui/components/u-transition/style.scss +9 -0
- package/uview-ui/components/u-transition/transition.js +157 -0
- package/uview-ui/components/u-transition/u-transition.vue +85 -0
- package/uview-ui/components/u-transition/vue.ani-style.scss +113 -0
- package/uview-ui/components/u-upload/mixin.js +21 -0
- package/uview-ui/components/u-upload/props.js +125 -0
- package/uview-ui/components/u-upload/style.css +164 -0
- package/uview-ui/components/u-upload/style.scss +200 -0
- package/uview-ui/components/u-upload/u-upload.vue +312 -0
- package/uview-ui/components/u-upload/utils.js +151 -0
- package/uview-ui/components/uview-ui/uview-ui.vue +8 -0
- package/uview-ui/index.css +352 -0
- package/uview-ui/index.js +79 -0
- package/uview-ui/index.scss +23 -0
- package/uview-ui/libs/config/color.js +17 -0
- package/uview-ui/libs/config/config.js +34 -0
- package/uview-ui/libs/config/props/actionSheet.js +25 -0
- package/uview-ui/libs/config/props/album.js +25 -0
- package/uview-ui/libs/config/props/alert.js +22 -0
- package/uview-ui/libs/config/props/avatar.js +28 -0
- package/uview-ui/libs/config/props/avatarGroup.js +23 -0
- package/uview-ui/libs/config/props/backtop.js +27 -0
- package/uview-ui/libs/config/props/badge.js +27 -0
- package/uview-ui/libs/config/props/button.js +42 -0
- package/uview-ui/libs/config/props/calendar.js +42 -0
- package/uview-ui/libs/config/props/carKeyboard.js +15 -0
- package/uview-ui/libs/config/props/cell.js +35 -0
- package/uview-ui/libs/config/props/cellGroup.js +17 -0
- package/uview-ui/libs/config/props/checkbox.js +27 -0
- package/uview-ui/libs/config/props/checkboxGroup.js +29 -0
- package/uview-ui/libs/config/props/circleProgress.js +15 -0
- package/uview-ui/libs/config/props/code.js +21 -0
- package/uview-ui/libs/config/props/codeInput.js +29 -0
- package/uview-ui/libs/config/props/col.js +19 -0
- package/uview-ui/libs/config/props/collapse.js +17 -0
- package/uview-ui/libs/config/props/collapseItem.js +25 -0
- package/uview-ui/libs/config/props/columnNotice.js +24 -0
- package/uview-ui/libs/config/props/countDown.js +18 -0
- package/uview-ui/libs/config/props/countTo.js +25 -0
- package/uview-ui/libs/config/props/datetimePicker.js +36 -0
- package/uview-ui/libs/config/props/divider.js +23 -0
- package/uview-ui/libs/config/props/empty.js +26 -0
- package/uview-ui/libs/config/props/form.js +22 -0
- package/uview-ui/libs/config/props/formItem.js +23 -0
- package/uview-ui/libs/config/props/gap.js +19 -0
- package/uview-ui/libs/config/props/grid.js +17 -0
- package/uview-ui/libs/config/props/gridItem.js +16 -0
- package/uview-ui/libs/config/props/icon.js +36 -0
- package/uview-ui/libs/config/props/image.js +30 -0
- package/uview-ui/libs/config/props/indexAnchor.js +19 -0
- package/uview-ui/libs/config/props/indexList.js +19 -0
- package/uview-ui/libs/config/props/input.js +48 -0
- package/uview-ui/libs/config/props/keyboard.js +30 -0
- package/uview-ui/libs/config/props/line.js +20 -0
- package/uview-ui/libs/config/props/lineProgress.js +19 -0
- package/uview-ui/libs/config/props/link.js +26 -0
- package/uview-ui/libs/config/props/list.js +28 -0
- package/uview-ui/libs/config/props/listItem.js +15 -0
- package/uview-ui/libs/config/props/loadingIcon.js +30 -0
- package/uview-ui/libs/config/props/loadingPage.js +23 -0
- package/uview-ui/libs/config/props/loadmore.js +32 -0
- package/uview-ui/libs/config/props/modal.js +30 -0
- package/uview-ui/libs/config/props/navbar.js +32 -0
- package/uview-ui/libs/config/props/noNetwork.js +18 -0
- package/uview-ui/libs/config/props/noticeBar.js +27 -0
- package/uview-ui/libs/config/props/notify.js +22 -0
- package/uview-ui/libs/config/props/numberBox.js +35 -0
- package/uview-ui/libs/config/props/numberKeyboard.js +17 -0
- package/uview-ui/libs/config/props/overlay.js +18 -0
- package/uview-ui/libs/config/props/parse.js +22 -0
- package/uview-ui/libs/config/props/picker.js +29 -0
- package/uview-ui/libs/config/props/popup.js +29 -0
- package/uview-ui/libs/config/props/radio.js +27 -0
- package/uview-ui/libs/config/props/radioGroup.js +30 -0
- package/uview-ui/libs/config/props/rate.js +26 -0
- package/uview-ui/libs/config/props/readMore.js +22 -0
- package/uview-ui/libs/config/props/row.js +17 -0
- package/uview-ui/libs/config/props/rowNotice.js +21 -0
- package/uview-ui/libs/config/props/scrollList.js +20 -0
- package/uview-ui/libs/config/props/search.js +37 -0
- package/uview-ui/libs/config/props/section.js +24 -0
- package/uview-ui/libs/config/props/skeleton.js +25 -0
- package/uview-ui/libs/config/props/slider.js +25 -0
- package/uview-ui/libs/config/props/statusBar.js +15 -0
- package/uview-ui/libs/config/props/steps.js +21 -0
- package/uview-ui/libs/config/props/stepsItem.js +18 -0
- package/uview-ui/libs/config/props/sticky.js +20 -0
- package/uview-ui/libs/config/props/subsection.js +23 -0
- package/uview-ui/libs/config/props/swipeAction.js +15 -0
- package/uview-ui/libs/config/props/swipeActionItem.js +21 -0
- package/uview-ui/libs/config/props/swiper.js +39 -0
- package/uview-ui/libs/config/props/swipterIndicator.js +19 -0
- package/uview-ui/libs/config/props/switch.js +24 -0
- package/uview-ui/libs/config/props/tabbar.js +22 -0
- package/uview-ui/libs/config/props/tabbarItem.js +20 -0
- package/uview-ui/libs/config/props/tabs.js +32 -0
- package/uview-ui/libs/config/props/tag.js +29 -0
- package/uview-ui/libs/config/props/text.js +38 -0
- package/uview-ui/libs/config/props/textarea.js +36 -0
- package/uview-ui/libs/config/props/toast.js +30 -0
- package/uview-ui/libs/config/props/toolbar.js +21 -0
- package/uview-ui/libs/config/props/tooltip.js +25 -0
- package/uview-ui/libs/config/props/transition.js +18 -0
- package/uview-ui/libs/config/props/upload.js +36 -0
- package/uview-ui/libs/config/props.js +190 -0
- package/uview-ui/libs/config/zIndex.js +20 -0
- package/uview-ui/libs/css/color-libcss.scss +117 -0
- package/uview-ui/libs/css/color.scss +155 -0
- package/uview-ui/libs/css/common-libcss.scss +132 -0
- package/uview-ui/libs/css/common.scss +97 -0
- package/uview-ui/libs/css/components-libcss.scss +11 -0
- package/uview-ui/libs/css/components.scss +15 -0
- package/uview-ui/libs/css/flex-libcss.scss +169 -0
- package/uview-ui/libs/css/flex.scss +257 -0
- package/uview-ui/libs/css/h5-libcss.scss +0 -0
- package/uview-ui/libs/css/h5.scss +0 -0
- package/uview-ui/libs/css/mixin-libcss.scss +0 -0
- package/uview-ui/libs/css/mixin.scss +8 -0
- package/uview-ui/libs/css/mp-libcss.scss +0 -0
- package/uview-ui/libs/css/mp.scss +0 -0
- package/uview-ui/libs/css/nvue-libcss.scss +0 -0
- package/uview-ui/libs/css/nvue.scss +0 -0
- package/uview-ui/libs/css/vue-libcss.scss +35 -0
- package/uview-ui/libs/css/vue.scss +27 -0
- package/uview-ui/libs/function/colorGradient.js +134 -0
- package/uview-ui/libs/function/debounce.js +29 -0
- package/uview-ui/libs/function/digit.js +167 -0
- package/uview-ui/libs/function/index.js +731 -0
- package/uview-ui/libs/function/platform.js +75 -0
- package/uview-ui/libs/function/test.js +288 -0
- package/uview-ui/libs/function/throttle.js +30 -0
- package/uview-ui/libs/luch-request/adapters/index.js +97 -0
- package/uview-ui/libs/luch-request/core/InterceptorManager.js +50 -0
- package/uview-ui/libs/luch-request/core/Request.js +198 -0
- package/uview-ui/libs/luch-request/core/buildFullPath.js +20 -0
- package/uview-ui/libs/luch-request/core/defaults.js +29 -0
- package/uview-ui/libs/luch-request/core/dispatchRequest.js +3 -0
- package/uview-ui/libs/luch-request/core/mergeConfig.js +103 -0
- package/uview-ui/libs/luch-request/core/settle.js +16 -0
- package/uview-ui/libs/luch-request/helpers/buildURL.js +69 -0
- package/uview-ui/libs/luch-request/helpers/combineURLs.js +14 -0
- package/uview-ui/libs/luch-request/helpers/isAbsoluteURL.js +14 -0
- package/uview-ui/libs/luch-request/index.d.ts +116 -0
- package/uview-ui/libs/luch-request/index.js +3 -0
- package/uview-ui/libs/luch-request/utils/clone.js +264 -0
- package/uview-ui/libs/luch-request/utils.js +131 -0
- package/uview-ui/libs/mixin/button.js +13 -0
- package/uview-ui/libs/mixin/mixin.js +164 -0
- package/uview-ui/libs/mixin/mpMixin.js +8 -0
- package/uview-ui/libs/mixin/mpShare.js +13 -0
- package/uview-ui/libs/mixin/openType.js +25 -0
- package/uview-ui/libs/mixin/style.js +252 -0
- package/uview-ui/libs/mixin/touch.js +61 -0
- package/uview-ui/libs/util/async-validator.js +1343 -0
- package/uview-ui/libs/util/calendar.js +546 -0
- package/uview-ui/libs/util/dayjs.js +308 -0
- package/uview-ui/libs/util/emitter.js +51 -0
- package/uview-ui/libs/util/route.js +124 -0
- package/uview-ui/package.json +87 -0
- package/uview-ui/theme.css +29 -0
- package/uview-ui/theme.scss +44 -0
- package/ui-cv/cv-banner/cv-banner.vue +0 -131
- package/ui-cv/cv-banner-card/cv-banner-card.vue +0 -145
- package/ui-cv/cv-base-audio/cv-base-audio.vue +0 -279
- package/ui-cv/cv-block/cv-block.vue +0 -91
- package/ui-cv/cv-box/cv-box.vue +0 -73
- package/ui-cv/cv-btn-base/cv-btn-base.vue +0 -70
- package/ui-cv/cv-cell-row/cv-cell-row.vue +0 -220
- package/ui-cv/cv-checkbox-group/cv-checkbox-group.vue +0 -257
- package/ui-cv/cv-checkbox-opt-base/cv-checkbox-opt-base.vue +0 -97
- package/ui-cv/cv-checkbox-opt-tag/cv-checkbox-opt-tag.vue +0 -111
- package/ui-cv/cv-code-sms/cv-code-sms.vue +0 -229
- package/ui-cv/cv-date-base/cv-date-base.vue +0 -105
- package/ui-cv/cv-datetime-base/cv-datetime-base.vue +0 -152
- package/ui-cv/cv-datetime-linkage/cv-datetime-linkage.vue +0 -489
- package/ui-cv/cv-dialog-bottom/cv-dialog-bottom.vue +0 -172
- package/ui-cv/cv-dialog-full/cv-dialog-full.vue +0 -159
- package/ui-cv/cv-dialog-loading/cv-dialog-loading.vue +0 -103
- package/ui-cv/cv-dialog-share/cv-dialog-share.vue +0 -157
- package/ui-cv/cv-draw-barcode/cv-draw-barcode.vue +0 -209
- package/ui-cv/cv-draw-posters/cv-draw-posters.vue +0 -492
- package/ui-cv/cv-draw-progress/cv-draw-progress.vue +0 -141
- package/ui-cv/cv-draw-qrcode/cv-draw-qrcode.vue +0 -305
- package/ui-cv/cv-editor-parse/cv-editor-parse.vue +0 -112
- package/ui-cv/cv-editor-quill/cv-editor-quill.vue +0 -485
- package/ui-cv/cv-filter-hm/cv-filter-hm.vue +0 -867
- package/ui-cv/cv-form-base/cv-form-base.vue +0 -469
- package/ui-cv/cv-form-group/cv-form-group.vue +0 -123
- package/ui-cv/cv-form-item/cv-form-item.vue +0 -558
- package/ui-cv/cv-geo-local/cv-geo-local.vue +0 -264
- package/ui-cv/cv-geo-region/cv-geo-region.vue +0 -243
- package/ui-cv/cv-grid-item/cv-grid-item.vue +0 -213
- package/ui-cv/cv-icons/cv-icons.vue +0 -133
- package/ui-cv/cv-input-digit/cv-input-digit.vue +0 -112
- package/ui-cv/cv-input-idcard/cv-input-idcard.vue +0 -107
- package/ui-cv/cv-input-number/cv-input-number.vue +0 -112
- package/ui-cv/cv-input-password/cv-input-password.vue +0 -125
- package/ui-cv/cv-input-text/cv-input-text.vue +0 -118
- package/ui-cv/cv-layout-topbar/cv-layout-topbar.vue +0 -238
- package/ui-cv/cv-link/cv-link.vue +0 -58
- package/ui-cv/cv-lists-base/cv-lists-base.vue +0 -650
- package/ui-cv/cv-lists-swiper/cv-lists-swipe2r.vue +0 -197
- package/ui-cv/cv-lists-swiper/cv-lists-swiper.vue +0 -517
- package/ui-cv/cv-load-empty/cv-load-empty.vue +0 -57
- package/ui-cv/cv-load-more/cv-load-more.vue +0 -407
- package/ui-cv/cv-load-more2/cv-load-more2.vue +0 -44
- package/ui-cv/cv-markdown-show/cv-markdown-show.vue +0 -109
- package/ui-cv/cv-message/cv-message.vue +0 -37
- package/ui-cv/cv-picker1/cv-picker1.vue +0 -205
- package/ui-cv/cv-picker2/cv-picker2.vue +0 -252
- package/ui-cv/cv-picker3/cv-picker3.vue +0 -313
- package/ui-cv/cv-radio-group/cv-radio-group.vue +0 -196
- package/ui-cv/cv-radio-opt-base/cv-radio-opt-base.vue +0 -91
- package/ui-cv/cv-radio-opt-tag/cv-radio-opt-tag.vue +0 -107
- package/ui-cv/cv-rate/cv-rate.vue +0 -182
- package/ui-cv/cv-search/cv-search.vue +0 -186
- package/ui-cv/cv-skeleton/cv-skeleton.vue +0 -171
- package/ui-cv/cv-skeleton/cv-skeleton2.vue +0 -210
- package/ui-cv/cv-skeleton-group/cv-skeleton-group.vue +0 -21
- package/ui-cv/cv-specs/cv-specs.vue +0 -320
- package/ui-cv/cv-switch/cv-switch.vue +0 -111
- package/ui-cv/cv-tab-lists/cv-tab-lists.vue +0 -708
- package/ui-cv/cv-tabs-box/cv-tabs-box.vue +0 -97
- package/ui-cv/cv-tabs-item/cv-tabs-item.vue +0 -82
- package/ui-cv/cv-textarea/cv-textarea.vue +0 -141
- package/ui-cv/cv-time-base/cv-time-base.vue +0 -101
- package/ui-cv/cv-treaty/cv-treaty.vue +0 -93
- package/ui-cv/cv-upload-avatar/cv-upload-avatar.vue +0 -142
- package/ui-cv/cv-upload-image/cv-upload-image.vue +0 -478
- package/ui-uni/README.md +0 -1
- package/ui-uni/amap-wx/js/util.js +0 -181
- package/ui-uni/api-set-tabbar.nvue +0 -156
- package/ui-uni/marked/index.js +0 -1
- package/ui-uni/mpvue-citypicker/city-data/area.js +0 -12542
- package/ui-uni/mpvue-citypicker/city-data/city.js +0 -1503
- package/ui-uni/mpvue-citypicker/city-data/province.js +0 -139
- package/ui-uni/mpvue-citypicker/mpvueCityPicker.vue +0 -230
- package/ui-uni/mpvue-echarts/src/echarts.vue +0 -123
- package/ui-uni/mpvue-picker/mpvuePicker.vue +0 -483
- package/ui-uni/mpvueGestureLock/gestureLock.js +0 -175
- package/ui-uni/mpvueGestureLock/index.vue +0 -138
- package/ui-uni/page-foot/page-foot.vue +0 -38
- package/ui-uni/page-head/page-head.vue +0 -16
- package/ui-uni/product.vue +0 -66
- package/ui-uni/tab-nvue/mediaList.vue +0 -175
- package/ui-uni/u-link/u-link.vue +0 -59
- package/ui-uni/uParse/src/components/wxParseAudio.vue +0 -26
- package/ui-uni/uParse/src/components/wxParseImg.vue +0 -94
- package/ui-uni/uParse/src/components/wxParseTable.vue +0 -55
- package/ui-uni/uParse/src/components/wxParseTemplate0.vue +0 -103
- package/ui-uni/uParse/src/components/wxParseTemplate1.vue +0 -88
- package/ui-uni/uParse/src/components/wxParseTemplate10.vue +0 -88
- package/ui-uni/uParse/src/components/wxParseTemplate11.vue +0 -86
- package/ui-uni/uParse/src/components/wxParseTemplate2.vue +0 -88
- package/ui-uni/uParse/src/components/wxParseTemplate3.vue +0 -88
- package/ui-uni/uParse/src/components/wxParseTemplate4.vue +0 -88
- package/ui-uni/uParse/src/components/wxParseTemplate5.vue +0 -88
- package/ui-uni/uParse/src/components/wxParseTemplate6.vue +0 -88
- package/ui-uni/uParse/src/components/wxParseTemplate7.vue +0 -88
- package/ui-uni/uParse/src/components/wxParseTemplate8.vue +0 -88
- package/ui-uni/uParse/src/components/wxParseTemplate9.vue +0 -88
- package/ui-uni/uParse/src/components/wxParseVideo.vue +0 -15
- package/ui-uni/uParse/src/editor.css +0 -495
- package/ui-uni/uParse/src/libs/html2json.js +0 -261
- package/ui-uni/uParse/src/libs/htmlparser.js +0 -156
- package/ui-uni/uParse/src/libs/wxDiscode.js +0 -195
- package/ui-uni/uParse/src/wxParse.vue +0 -206
- package/ui-uni/uni-badge/uni-badge.vue +0 -250
- package/ui-uni/uni-calendar/uni-calendar-item.vue +0 -171
- package/ui-uni/uni-calendar/uni-calendar.vue +0 -504
- package/ui-uni/uni-calendar/util.js +0 -352
- package/ui-uni/uni-card/uni-card.vue +0 -420
- package/ui-uni/uni-col/uni-col.vue +0 -2968
- package/ui-uni/uni-collapse/uni-collapse.vue +0 -146
- package/ui-uni/uni-collapse-item/uni-collapse-item.vue +0 -378
- package/ui-uni/uni-combox/uni-combox.vue +0 -237
- package/ui-uni/uni-countdown/uni-countdown.vue +0 -234
- package/ui-uni/uni-data-checkbox/uni-data-checkbox.vue +0 -792
- package/ui-uni/uni-data-indexed-list/clientdb.js +0 -362
- package/ui-uni/uni-data-indexed-list/uni-data-indexed-list-item.vue +0 -142
- package/ui-uni/uni-data-indexed-list/uni-data-indexed-list.vue +0 -364
- package/ui-uni/uni-data-picker/uni-data-picker.vue +0 -468
- package/ui-uni/uni-data-pickerview/uni-data-picker.js +0 -545
- package/ui-uni/uni-data-pickerview/uni-data-pickerview.vue +0 -298
- package/ui-uni/uni-dateformat/uni-dateformat.vue +0 -88
- package/ui-uni/uni-datetime-picker/calendar-item.vue +0 -171
- package/ui-uni/uni-datetime-picker/calendar.js +0 -546
- package/ui-uni/uni-datetime-picker/calendar.vue +0 -747
- package/ui-uni/uni-datetime-picker/keypress.js +0 -45
- package/ui-uni/uni-datetime-picker/time-picker.vue +0 -899
- package/ui-uni/uni-datetime-picker/uni-datetime-picker.vue +0 -874
- package/ui-uni/uni-datetime-picker/util.js +0 -408
- package/ui-uni/uni-drawer/keypress.js +0 -45
- package/ui-uni/uni-drawer/uni-drawer.vue +0 -185
- package/ui-uni/uni-easyinput/uni-easyinput.vue +0 -438
- package/ui-uni/uni-fab/uni-fab.vue +0 -443
- package/ui-uni/uni-fab/uni-fab.vue.bak +0 -382
- package/ui-uni/uni-fav/uni-fav.vue +0 -136
- package/ui-uni/uni-file-picker/choose-and-upload-file.js +0 -224
- package/ui-uni/uni-file-picker/uni-file-picker.vue +0 -614
- package/ui-uni/uni-file-picker/upload-file.vue +0 -309
- package/ui-uni/uni-file-picker/upload-image.vue +0 -288
- package/ui-uni/uni-forms/uni-forms.vue +0 -467
- package/ui-uni/uni-forms-item/uni-forms-item.vue +0 -500
- package/ui-uni/uni-goods-nav/uni-goods-nav.vue +0 -220
- package/ui-uni/uni-grid/uni-grid.vue +0 -141
- package/ui-uni/uni-grid-item/uni-grid-item.vue +0 -123
- package/ui-uni/uni-group/uni-group.vue +0 -123
- package/ui-uni/uni-icons/icons.js +0 -132
- package/ui-uni/uni-icons/uni-icons.vue +0 -72
- package/ui-uni/uni-icons/uni.ttf +0 -0
- package/ui-uni/uni-indexed-list/uni-indexed-list-item.vue +0 -142
- package/ui-uni/uni-indexed-list/uni-indexed-list.vue +0 -357
- package/ui-uni/uni-link/uni-link.vue +0 -117
- package/ui-uni/uni-list/uni-list.vue +0 -107
- package/ui-uni/uni-list/uni-refresh.vue +0 -65
- package/ui-uni/uni-list/uni-refresh.wxs +0 -87
- package/ui-uni/uni-list-ad/uni-list-ad.vue +0 -106
- package/ui-uni/uni-list-chat/uni-list-chat.scss +0 -58
- package/ui-uni/uni-list-chat/uni-list-chat.vue +0 -498
- package/ui-uni/uni-list-item/uni-list-item.vue +0 -428
- package/ui-uni/uni-load-more/uni-load-more.vue +0 -366
- package/ui-uni/uni-nav-bar/uni-nav-bar.vue +0 -244
- package/ui-uni/uni-nav-bar/uni-status-bar.vue +0 -25
- package/ui-uni/uni-notice-bar/uni-notice-bar.vue +0 -394
- package/ui-uni/uni-number-box/uni-number-box.vue +0 -224
- package/ui-uni/uni-pagination/uni-pagination.vue +0 -376
- package/ui-uni/uni-popup/keypress.js +0 -45
- package/ui-uni/uni-popup/popup.js +0 -23
- package/ui-uni/uni-popup/uni-popup.vue +0 -429
- package/ui-uni/uni-popup-dialog/keypress.js +0 -45
- package/ui-uni/uni-popup-dialog/uni-popup-dialog.vue +0 -243
- package/ui-uni/uni-popup-message/uni-popup-message.vue +0 -143
- package/ui-uni/uni-popup-share/uni-popup-share.vue +0 -175
- package/ui-uni/uni-rate/uni-rate.vue +0 -357
- package/ui-uni/uni-row/uni-row.vue +0 -155
- package/ui-uni/uni-search-bar/uni-search-bar.vue +0 -262
- package/ui-uni/uni-section/uni-section.vue +0 -125
- package/ui-uni/uni-segmented-control/uni-segmented-control.vue +0 -137
- package/ui-uni/uni-status-bar/uni-status-bar.vue +0 -23
- package/ui-uni/uni-steps/uni-steps.vue +0 -250
- package/ui-uni/uni-swipe-action/uni-swipe-action.vue +0 -38
- package/ui-uni/uni-swipe-action-item/bindingx.js +0 -293
- package/ui-uni/uni-swipe-action-item/index.wxs +0 -323
- package/ui-uni/uni-swipe-action-item/isPC.js +0 -12
- package/ui-uni/uni-swipe-action-item/mpalipay.js +0 -208
- package/ui-uni/uni-swipe-action-item/mpother.js +0 -253
- package/ui-uni/uni-swipe-action-item/mpwxs.js +0 -123
- package/ui-uni/uni-swipe-action-item/uni-swipe-action-item.vue +0 -316
- package/ui-uni/uni-swiper-dot/uni-swiper-dot.vue +0 -205
- package/ui-uni/uni-table/uni-table.vue +0 -455
- package/ui-uni/uni-tag/uni-tag.vue +0 -283
- package/ui-uni/uni-tbody/uni-tbody.vue +0 -30
- package/ui-uni/uni-td/uni-td.vue +0 -88
- package/ui-uni/uni-test/uni-test.vue +0 -17
- package/ui-uni/uni-th/filter-dropdown.vue +0 -509
- package/ui-uni/uni-th/uni-th.vue +0 -259
- package/ui-uni/uni-thead/uni-thead.vue +0 -114
- package/ui-uni/uni-title/uni-title.vue +0 -171
- package/ui-uni/uni-tr/table-checkbox.vue +0 -172
- package/ui-uni/uni-tr/uni-tr.vue +0 -156
- package/ui-uni/uni-transition/createAnimation.js +0 -128
- package/ui-uni/uni-transition/uni-transition.vue +0 -287
- /package/{ui-uni → other}/mpvue-echarts/src/wx-canvas.js +0 -0
- /package/{ui-uni → other}/u-charts/u-charts.js +0 -0
- /package/{ui-uni/uParse/src → other/uParse}/wxParse.css +0 -0
- /package/{ui-uni/amap-wx → plugins/map}/lib/amap-wx.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcode.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/Barcode.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/CODE128/CODE128.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/CODE128/CODE128A.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/CODE128/CODE128B.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/CODE128/CODE128C.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/CODE128/CODE128_AUTO.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/CODE128/auto.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/CODE128/constants.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/CODE128/index.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/CODE39/index.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/EAN_UPC/EAN.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/EAN_UPC/EAN13.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/EAN_UPC/EAN2.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/EAN_UPC/EAN5.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/EAN_UPC/EAN8.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/EAN_UPC/UPC.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/EAN_UPC/UPCE.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/EAN_UPC/constants.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/EAN_UPC/encoder.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/EAN_UPC/index.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/GenericBarcode/index.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/ITF/ITF.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/ITF/ITF14.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/ITF/constants.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/ITF/index.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/MSI/MSI.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/MSI/MSI10.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/MSI/MSI1010.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/MSI/MSI11.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/MSI/MSI1110.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/MSI/checksums.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/MSI/index.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/codabar/index.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/common.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/index.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/index.tmp.js +0 -0
- /package/ui-cv/{cv-draw-barcode → components/cv-draw-barcode}/barcodes/pharmacode/index.js +0 -0
- /package/ui-cv/{cv-draw-qrcode → components/cv-draw-qrcode}/qrcode.js +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseAudio.vue +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseImg.vue +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseTable.vue +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseTemplate0.vue +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseTemplate1.vue +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseTemplate10.vue +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseTemplate11.vue +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseTemplate2.vue +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseTemplate3.vue +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseTemplate4.vue +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseTemplate5.vue +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseTemplate6.vue +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseTemplate7.vue +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseTemplate8.vue +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseTemplate9.vue +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/components/wxParseVideo.vue +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/libs/html2json.js +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/libs/htmlparser.js +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/libs/wxDiscode.js +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/readme.md +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/u-parse.css +0 -0
- /package/ui-cv/{cv-editor-parse → components/cv-editor-parse}/u-parse.vue +0 -0
- /package/ui-cv/{cv-editor-quill → components/cv-editor-quill}/compressImage.vue +0 -0
- /package/ui-cv/{cv-editor-quill → components/cv-editor-quill}/editor-icon.css +0 -0
- /package/ui-cv/{cv-editor-quill → components/cv-editor-quill}/editor-icon.ttf +0 -0
- /package/ui-cv/{cv-editor-quill → components/cv-editor-quill}/index.js +0 -0
- /package/ui-cv/{cv-form-base → components/cv-form-base}/validate.js +0 -0
- /package/ui-cv/{cv-form-group → components/cv-form-group}/cv-form-group2.vue +0 -0
- /package/ui-cv/{cv-form-item → components/cv-form-item}/cv-form-item2.vue +0 -0
- /package/ui-cv/{cv-grid-group → components/cv-grid-group}/cv-grid-group.vue +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-action-icons.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-action.css +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-action.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-arrow-icons.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-arrow.css +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-arrow.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-base-icons.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-base.css +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-base.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-default-icons.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-default.css +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-default.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-mall-icons.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-mall.css +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-mall.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-media-icons.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-media.css +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-media.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-order-icons.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-order.css +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-order.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-people-icons.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-people.css +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-people.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-status-icons.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-status.css +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-status.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-wallet-icons.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-wallet.css +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/iconfont/font-wallet.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/icons/default-icons.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/icons/icons-action.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/icons/icons-arrow.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/icons/icons-base.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/icons/icons-mall.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/icons/icons-media.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/icons/icons-order.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/icons/icons-people.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/icons/icons-status.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/icons/icons-wallet.js +0 -0
- /package/ui-cv/{cv-icons → components/cv-icons}/icons.js +0 -0
- /package/ui-cv/{cv-input-text → components/cv-input-text}/input.css +0 -0
- /package/ui-cv/{cv-load-more → components/cv-load-more}/config.json +0 -0
- /package/ui-cv/{cv-load-more2 → components/cv-load-more2}/load-more.vue +0 -0
- /package/ui-cv/{cv-markdown-show → components/cv-markdown-show}/lib/11.8.0-es/highlight.min.js +0 -0
- /package/ui-cv/{cv-markdown-show → components/cv-markdown-show}/lib/highlight/atom-one-dark.css +0 -0
- /package/ui-cv/{cv-markdown-show → components/cv-markdown-show}/lib/highlight/atom-one-light.css +0 -0
- /package/ui-cv/{cv-markdown-show → components/cv-markdown-show}/lib/highlight/github-dark.min.css +0 -0
- /package/ui-cv/{cv-markdown-show → components/cv-markdown-show}/lib/html-parser.js +0 -0
- /package/ui-cv/{cv-markdown-show → components/cv-markdown-show}/lib/markdown-it.min.js +0 -0
- /package/{ui-uni/marked → ui-cv/components/cv-markdown-show}/lib/marked.js +0 -0
- /package/ui-cv/{cv-markdown-show → components/cv-markdown-show}/markdown.css +0 -0
- /package/ui-cv/{cv-markdown-show → components/cv-markdown-show}/package.json +0 -0
- /package/ui-cv/{cv-markdown-show → components/cv-markdown-show}/readme.md +0 -0
- /package/ui-cv/{cv-rate → components/cv-rate}/uni-rate.vue +0 -0
- /package/{ui-uni → uni-ui/lib}/uni-calendar/calendar.js +0 -0
- /package/{ui-uni → uni-ui/lib}/uni-data-picker/keypress.js +0 -0
- /package/{ui-uni → uni-ui/lib}/uni-dateformat/date-format.js +0 -0
- /package/{ui-uni → uni-ui/lib}/uni-easyinput/common.js +0 -0
- /package/{ui-uni → uni-ui/lib}/uni-file-picker/utils.js +0 -0
|
@@ -1,1503 +0,0 @@
|
|
|
1
|
-
/* eslint-disable */
|
|
2
|
-
var cityData = [
|
|
3
|
-
[{
|
|
4
|
-
"label": "市辖区",
|
|
5
|
-
"value": "1101"
|
|
6
|
-
}],
|
|
7
|
-
[{
|
|
8
|
-
"label": "市辖区",
|
|
9
|
-
"value": "1201"
|
|
10
|
-
}],
|
|
11
|
-
[{
|
|
12
|
-
"label": "石家庄市",
|
|
13
|
-
"value": "1301"
|
|
14
|
-
},
|
|
15
|
-
{
|
|
16
|
-
"label": "唐山市",
|
|
17
|
-
"value": "1302"
|
|
18
|
-
},
|
|
19
|
-
{
|
|
20
|
-
"label": "秦皇岛市",
|
|
21
|
-
"value": "1303"
|
|
22
|
-
},
|
|
23
|
-
{
|
|
24
|
-
"label": "邯郸市",
|
|
25
|
-
"value": "1304"
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
"label": "邢台市",
|
|
29
|
-
"value": "1305"
|
|
30
|
-
},
|
|
31
|
-
{
|
|
32
|
-
"label": "保定市",
|
|
33
|
-
"value": "1306"
|
|
34
|
-
},
|
|
35
|
-
{
|
|
36
|
-
"label": "张家口市",
|
|
37
|
-
"value": "1307"
|
|
38
|
-
},
|
|
39
|
-
{
|
|
40
|
-
"label": "承德市",
|
|
41
|
-
"value": "1308"
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
"label": "沧州市",
|
|
45
|
-
"value": "1309"
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
"label": "廊坊市",
|
|
49
|
-
"value": "1310"
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
"label": "衡水市",
|
|
53
|
-
"value": "1311"
|
|
54
|
-
}
|
|
55
|
-
],
|
|
56
|
-
[{
|
|
57
|
-
"label": "太原市",
|
|
58
|
-
"value": "1401"
|
|
59
|
-
},
|
|
60
|
-
{
|
|
61
|
-
"label": "大同市",
|
|
62
|
-
"value": "1402"
|
|
63
|
-
},
|
|
64
|
-
{
|
|
65
|
-
"label": "阳泉市",
|
|
66
|
-
"value": "1403"
|
|
67
|
-
},
|
|
68
|
-
{
|
|
69
|
-
"label": "长治市",
|
|
70
|
-
"value": "1404"
|
|
71
|
-
},
|
|
72
|
-
{
|
|
73
|
-
"label": "晋城市",
|
|
74
|
-
"value": "1405"
|
|
75
|
-
},
|
|
76
|
-
{
|
|
77
|
-
"label": "朔州市",
|
|
78
|
-
"value": "1406"
|
|
79
|
-
},
|
|
80
|
-
{
|
|
81
|
-
"label": "晋中市",
|
|
82
|
-
"value": "1407"
|
|
83
|
-
},
|
|
84
|
-
{
|
|
85
|
-
"label": "运城市",
|
|
86
|
-
"value": "1408"
|
|
87
|
-
},
|
|
88
|
-
{
|
|
89
|
-
"label": "忻州市",
|
|
90
|
-
"value": "1409"
|
|
91
|
-
},
|
|
92
|
-
{
|
|
93
|
-
"label": "临汾市",
|
|
94
|
-
"value": "1410"
|
|
95
|
-
},
|
|
96
|
-
{
|
|
97
|
-
"label": "吕梁市",
|
|
98
|
-
"value": "1411"
|
|
99
|
-
}
|
|
100
|
-
],
|
|
101
|
-
[{
|
|
102
|
-
"label": "呼和浩特市",
|
|
103
|
-
"value": "1501"
|
|
104
|
-
},
|
|
105
|
-
{
|
|
106
|
-
"label": "包头市",
|
|
107
|
-
"value": "1502"
|
|
108
|
-
},
|
|
109
|
-
{
|
|
110
|
-
"label": "乌海市",
|
|
111
|
-
"value": "1503"
|
|
112
|
-
},
|
|
113
|
-
{
|
|
114
|
-
"label": "赤峰市",
|
|
115
|
-
"value": "1504"
|
|
116
|
-
},
|
|
117
|
-
{
|
|
118
|
-
"label": "通辽市",
|
|
119
|
-
"value": "1505"
|
|
120
|
-
},
|
|
121
|
-
{
|
|
122
|
-
"label": "鄂尔多斯市",
|
|
123
|
-
"value": "1506"
|
|
124
|
-
},
|
|
125
|
-
{
|
|
126
|
-
"label": "呼伦贝尔市",
|
|
127
|
-
"value": "1507"
|
|
128
|
-
},
|
|
129
|
-
{
|
|
130
|
-
"label": "巴彦淖尔市",
|
|
131
|
-
"value": "1508"
|
|
132
|
-
},
|
|
133
|
-
{
|
|
134
|
-
"label": "乌兰察布市",
|
|
135
|
-
"value": "1509"
|
|
136
|
-
},
|
|
137
|
-
{
|
|
138
|
-
"label": "兴安盟",
|
|
139
|
-
"value": "1522"
|
|
140
|
-
},
|
|
141
|
-
{
|
|
142
|
-
"label": "锡林郭勒盟",
|
|
143
|
-
"value": "1525"
|
|
144
|
-
},
|
|
145
|
-
{
|
|
146
|
-
"label": "阿拉善盟",
|
|
147
|
-
"value": "1529"
|
|
148
|
-
}
|
|
149
|
-
],
|
|
150
|
-
[{
|
|
151
|
-
"label": "沈阳市",
|
|
152
|
-
"value": "2101"
|
|
153
|
-
},
|
|
154
|
-
{
|
|
155
|
-
"label": "大连市",
|
|
156
|
-
"value": "2102"
|
|
157
|
-
},
|
|
158
|
-
{
|
|
159
|
-
"label": "鞍山市",
|
|
160
|
-
"value": "2103"
|
|
161
|
-
},
|
|
162
|
-
{
|
|
163
|
-
"label": "抚顺市",
|
|
164
|
-
"value": "2104"
|
|
165
|
-
},
|
|
166
|
-
{
|
|
167
|
-
"label": "本溪市",
|
|
168
|
-
"value": "2105"
|
|
169
|
-
},
|
|
170
|
-
{
|
|
171
|
-
"label": "丹东市",
|
|
172
|
-
"value": "2106"
|
|
173
|
-
},
|
|
174
|
-
{
|
|
175
|
-
"label": "锦州市",
|
|
176
|
-
"value": "2107"
|
|
177
|
-
},
|
|
178
|
-
{
|
|
179
|
-
"label": "营口市",
|
|
180
|
-
"value": "2108"
|
|
181
|
-
},
|
|
182
|
-
{
|
|
183
|
-
"label": "阜新市",
|
|
184
|
-
"value": "2109"
|
|
185
|
-
},
|
|
186
|
-
{
|
|
187
|
-
"label": "辽阳市",
|
|
188
|
-
"value": "2110"
|
|
189
|
-
},
|
|
190
|
-
{
|
|
191
|
-
"label": "盘锦市",
|
|
192
|
-
"value": "2111"
|
|
193
|
-
},
|
|
194
|
-
{
|
|
195
|
-
"label": "铁岭市",
|
|
196
|
-
"value": "2112"
|
|
197
|
-
},
|
|
198
|
-
{
|
|
199
|
-
"label": "朝阳市",
|
|
200
|
-
"value": "2113"
|
|
201
|
-
},
|
|
202
|
-
{
|
|
203
|
-
"label": "葫芦岛市",
|
|
204
|
-
"value": "2114"
|
|
205
|
-
}
|
|
206
|
-
],
|
|
207
|
-
[{
|
|
208
|
-
"label": "长春市",
|
|
209
|
-
"value": "2201"
|
|
210
|
-
},
|
|
211
|
-
{
|
|
212
|
-
"label": "吉林市",
|
|
213
|
-
"value": "2202"
|
|
214
|
-
},
|
|
215
|
-
{
|
|
216
|
-
"label": "四平市",
|
|
217
|
-
"value": "2203"
|
|
218
|
-
},
|
|
219
|
-
{
|
|
220
|
-
"label": "辽源市",
|
|
221
|
-
"value": "2204"
|
|
222
|
-
},
|
|
223
|
-
{
|
|
224
|
-
"label": "通化市",
|
|
225
|
-
"value": "2205"
|
|
226
|
-
},
|
|
227
|
-
{
|
|
228
|
-
"label": "白山市",
|
|
229
|
-
"value": "2206"
|
|
230
|
-
},
|
|
231
|
-
{
|
|
232
|
-
"label": "松原市",
|
|
233
|
-
"value": "2207"
|
|
234
|
-
},
|
|
235
|
-
{
|
|
236
|
-
"label": "白城市",
|
|
237
|
-
"value": "2208"
|
|
238
|
-
},
|
|
239
|
-
{
|
|
240
|
-
"label": "延边朝鲜族自治州",
|
|
241
|
-
"value": "2224"
|
|
242
|
-
}
|
|
243
|
-
],
|
|
244
|
-
[{
|
|
245
|
-
"label": "哈尔滨市",
|
|
246
|
-
"value": "2301"
|
|
247
|
-
},
|
|
248
|
-
{
|
|
249
|
-
"label": "齐齐哈尔市",
|
|
250
|
-
"value": "2302"
|
|
251
|
-
},
|
|
252
|
-
{
|
|
253
|
-
"label": "鸡西市",
|
|
254
|
-
"value": "2303"
|
|
255
|
-
},
|
|
256
|
-
{
|
|
257
|
-
"label": "鹤岗市",
|
|
258
|
-
"value": "2304"
|
|
259
|
-
},
|
|
260
|
-
{
|
|
261
|
-
"label": "双鸭山市",
|
|
262
|
-
"value": "2305"
|
|
263
|
-
},
|
|
264
|
-
{
|
|
265
|
-
"label": "大庆市",
|
|
266
|
-
"value": "2306"
|
|
267
|
-
},
|
|
268
|
-
{
|
|
269
|
-
"label": "伊春市",
|
|
270
|
-
"value": "2307"
|
|
271
|
-
},
|
|
272
|
-
{
|
|
273
|
-
"label": "佳木斯市",
|
|
274
|
-
"value": "2308"
|
|
275
|
-
},
|
|
276
|
-
{
|
|
277
|
-
"label": "七台河市",
|
|
278
|
-
"value": "2309"
|
|
279
|
-
},
|
|
280
|
-
{
|
|
281
|
-
"label": "牡丹江市",
|
|
282
|
-
"value": "2310"
|
|
283
|
-
},
|
|
284
|
-
{
|
|
285
|
-
"label": "黑河市",
|
|
286
|
-
"value": "2311"
|
|
287
|
-
},
|
|
288
|
-
{
|
|
289
|
-
"label": "绥化市",
|
|
290
|
-
"value": "2312"
|
|
291
|
-
},
|
|
292
|
-
{
|
|
293
|
-
"label": "大兴安岭地区",
|
|
294
|
-
"value": "2327"
|
|
295
|
-
}
|
|
296
|
-
],
|
|
297
|
-
[{
|
|
298
|
-
"label": "市辖区",
|
|
299
|
-
"value": "3101"
|
|
300
|
-
}],
|
|
301
|
-
[{
|
|
302
|
-
"label": "南京市",
|
|
303
|
-
"value": "3201"
|
|
304
|
-
},
|
|
305
|
-
{
|
|
306
|
-
"label": "无锡市",
|
|
307
|
-
"value": "3202"
|
|
308
|
-
},
|
|
309
|
-
{
|
|
310
|
-
"label": "徐州市",
|
|
311
|
-
"value": "3203"
|
|
312
|
-
},
|
|
313
|
-
{
|
|
314
|
-
"label": "常州市",
|
|
315
|
-
"value": "3204"
|
|
316
|
-
},
|
|
317
|
-
{
|
|
318
|
-
"label": "苏州市",
|
|
319
|
-
"value": "3205"
|
|
320
|
-
},
|
|
321
|
-
{
|
|
322
|
-
"label": "南通市",
|
|
323
|
-
"value": "3206"
|
|
324
|
-
},
|
|
325
|
-
{
|
|
326
|
-
"label": "连云港市",
|
|
327
|
-
"value": "3207"
|
|
328
|
-
},
|
|
329
|
-
{
|
|
330
|
-
"label": "淮安市",
|
|
331
|
-
"value": "3208"
|
|
332
|
-
},
|
|
333
|
-
{
|
|
334
|
-
"label": "盐城市",
|
|
335
|
-
"value": "3209"
|
|
336
|
-
},
|
|
337
|
-
{
|
|
338
|
-
"label": "扬州市",
|
|
339
|
-
"value": "3210"
|
|
340
|
-
},
|
|
341
|
-
{
|
|
342
|
-
"label": "镇江市",
|
|
343
|
-
"value": "3211"
|
|
344
|
-
},
|
|
345
|
-
{
|
|
346
|
-
"label": "泰州市",
|
|
347
|
-
"value": "3212"
|
|
348
|
-
},
|
|
349
|
-
{
|
|
350
|
-
"label": "宿迁市",
|
|
351
|
-
"value": "3213"
|
|
352
|
-
}
|
|
353
|
-
],
|
|
354
|
-
[{
|
|
355
|
-
"label": "杭州市",
|
|
356
|
-
"value": "3301"
|
|
357
|
-
},
|
|
358
|
-
{
|
|
359
|
-
"label": "宁波市",
|
|
360
|
-
"value": "3302"
|
|
361
|
-
},
|
|
362
|
-
{
|
|
363
|
-
"label": "温州市",
|
|
364
|
-
"value": "3303"
|
|
365
|
-
},
|
|
366
|
-
{
|
|
367
|
-
"label": "嘉兴市",
|
|
368
|
-
"value": "3304"
|
|
369
|
-
},
|
|
370
|
-
{
|
|
371
|
-
"label": "湖州市",
|
|
372
|
-
"value": "3305"
|
|
373
|
-
},
|
|
374
|
-
{
|
|
375
|
-
"label": "绍兴市",
|
|
376
|
-
"value": "3306"
|
|
377
|
-
},
|
|
378
|
-
{
|
|
379
|
-
"label": "金华市",
|
|
380
|
-
"value": "3307"
|
|
381
|
-
},
|
|
382
|
-
{
|
|
383
|
-
"label": "衢州市",
|
|
384
|
-
"value": "3308"
|
|
385
|
-
},
|
|
386
|
-
{
|
|
387
|
-
"label": "舟山市",
|
|
388
|
-
"value": "3309"
|
|
389
|
-
},
|
|
390
|
-
{
|
|
391
|
-
"label": "台州市",
|
|
392
|
-
"value": "3310"
|
|
393
|
-
},
|
|
394
|
-
{
|
|
395
|
-
"label": "丽水市",
|
|
396
|
-
"value": "3311"
|
|
397
|
-
}
|
|
398
|
-
],
|
|
399
|
-
[{
|
|
400
|
-
"label": "合肥市",
|
|
401
|
-
"value": "3401"
|
|
402
|
-
},
|
|
403
|
-
{
|
|
404
|
-
"label": "芜湖市",
|
|
405
|
-
"value": "3402"
|
|
406
|
-
},
|
|
407
|
-
{
|
|
408
|
-
"label": "蚌埠市",
|
|
409
|
-
"value": "3403"
|
|
410
|
-
},
|
|
411
|
-
{
|
|
412
|
-
"label": "淮南市",
|
|
413
|
-
"value": "3404"
|
|
414
|
-
},
|
|
415
|
-
{
|
|
416
|
-
"label": "马鞍山市",
|
|
417
|
-
"value": "3405"
|
|
418
|
-
},
|
|
419
|
-
{
|
|
420
|
-
"label": "淮北市",
|
|
421
|
-
"value": "3406"
|
|
422
|
-
},
|
|
423
|
-
{
|
|
424
|
-
"label": "铜陵市",
|
|
425
|
-
"value": "3407"
|
|
426
|
-
},
|
|
427
|
-
{
|
|
428
|
-
"label": "安庆市",
|
|
429
|
-
"value": "3408"
|
|
430
|
-
},
|
|
431
|
-
{
|
|
432
|
-
"label": "黄山市",
|
|
433
|
-
"value": "3410"
|
|
434
|
-
},
|
|
435
|
-
{
|
|
436
|
-
"label": "滁州市",
|
|
437
|
-
"value": "3411"
|
|
438
|
-
},
|
|
439
|
-
{
|
|
440
|
-
"label": "阜阳市",
|
|
441
|
-
"value": "3412"
|
|
442
|
-
},
|
|
443
|
-
{
|
|
444
|
-
"label": "宿州市",
|
|
445
|
-
"value": "3413"
|
|
446
|
-
},
|
|
447
|
-
{
|
|
448
|
-
"label": "六安市",
|
|
449
|
-
"value": "3415"
|
|
450
|
-
},
|
|
451
|
-
{
|
|
452
|
-
"label": "亳州市",
|
|
453
|
-
"value": "3416"
|
|
454
|
-
},
|
|
455
|
-
{
|
|
456
|
-
"label": "池州市",
|
|
457
|
-
"value": "3417"
|
|
458
|
-
},
|
|
459
|
-
{
|
|
460
|
-
"label": "宣城市",
|
|
461
|
-
"value": "3418"
|
|
462
|
-
}
|
|
463
|
-
],
|
|
464
|
-
[{
|
|
465
|
-
"label": "福州市",
|
|
466
|
-
"value": "3501"
|
|
467
|
-
},
|
|
468
|
-
{
|
|
469
|
-
"label": "厦门市",
|
|
470
|
-
"value": "3502"
|
|
471
|
-
},
|
|
472
|
-
{
|
|
473
|
-
"label": "莆田市",
|
|
474
|
-
"value": "3503"
|
|
475
|
-
},
|
|
476
|
-
{
|
|
477
|
-
"label": "三明市",
|
|
478
|
-
"value": "3504"
|
|
479
|
-
},
|
|
480
|
-
{
|
|
481
|
-
"label": "泉州市",
|
|
482
|
-
"value": "3505"
|
|
483
|
-
},
|
|
484
|
-
{
|
|
485
|
-
"label": "漳州市",
|
|
486
|
-
"value": "3506"
|
|
487
|
-
},
|
|
488
|
-
{
|
|
489
|
-
"label": "南平市",
|
|
490
|
-
"value": "3507"
|
|
491
|
-
},
|
|
492
|
-
{
|
|
493
|
-
"label": "龙岩市",
|
|
494
|
-
"value": "3508"
|
|
495
|
-
},
|
|
496
|
-
{
|
|
497
|
-
"label": "宁德市",
|
|
498
|
-
"value": "3509"
|
|
499
|
-
}
|
|
500
|
-
],
|
|
501
|
-
[{
|
|
502
|
-
"label": "南昌市",
|
|
503
|
-
"value": "3601"
|
|
504
|
-
},
|
|
505
|
-
{
|
|
506
|
-
"label": "景德镇市",
|
|
507
|
-
"value": "3602"
|
|
508
|
-
},
|
|
509
|
-
{
|
|
510
|
-
"label": "萍乡市",
|
|
511
|
-
"value": "3603"
|
|
512
|
-
},
|
|
513
|
-
{
|
|
514
|
-
"label": "九江市",
|
|
515
|
-
"value": "3604"
|
|
516
|
-
},
|
|
517
|
-
{
|
|
518
|
-
"label": "新余市",
|
|
519
|
-
"value": "3605"
|
|
520
|
-
},
|
|
521
|
-
{
|
|
522
|
-
"label": "鹰潭市",
|
|
523
|
-
"value": "3606"
|
|
524
|
-
},
|
|
525
|
-
{
|
|
526
|
-
"label": "赣州市",
|
|
527
|
-
"value": "3607"
|
|
528
|
-
},
|
|
529
|
-
{
|
|
530
|
-
"label": "吉安市",
|
|
531
|
-
"value": "3608"
|
|
532
|
-
},
|
|
533
|
-
{
|
|
534
|
-
"label": "宜春市",
|
|
535
|
-
"value": "3609"
|
|
536
|
-
},
|
|
537
|
-
{
|
|
538
|
-
"label": "抚州市",
|
|
539
|
-
"value": "3610"
|
|
540
|
-
},
|
|
541
|
-
{
|
|
542
|
-
"label": "上饶市",
|
|
543
|
-
"value": "3611"
|
|
544
|
-
}
|
|
545
|
-
],
|
|
546
|
-
[{
|
|
547
|
-
"label": "济南市",
|
|
548
|
-
"value": "3701"
|
|
549
|
-
},
|
|
550
|
-
{
|
|
551
|
-
"label": "青岛市",
|
|
552
|
-
"value": "3702"
|
|
553
|
-
},
|
|
554
|
-
{
|
|
555
|
-
"label": "淄博市",
|
|
556
|
-
"value": "3703"
|
|
557
|
-
},
|
|
558
|
-
{
|
|
559
|
-
"label": "枣庄市",
|
|
560
|
-
"value": "3704"
|
|
561
|
-
},
|
|
562
|
-
{
|
|
563
|
-
"label": "东营市",
|
|
564
|
-
"value": "3705"
|
|
565
|
-
},
|
|
566
|
-
{
|
|
567
|
-
"label": "烟台市",
|
|
568
|
-
"value": "3706"
|
|
569
|
-
},
|
|
570
|
-
{
|
|
571
|
-
"label": "潍坊市",
|
|
572
|
-
"value": "3707"
|
|
573
|
-
},
|
|
574
|
-
{
|
|
575
|
-
"label": "济宁市",
|
|
576
|
-
"value": "3708"
|
|
577
|
-
},
|
|
578
|
-
{
|
|
579
|
-
"label": "泰安市",
|
|
580
|
-
"value": "3709"
|
|
581
|
-
},
|
|
582
|
-
{
|
|
583
|
-
"label": "威海市",
|
|
584
|
-
"value": "3710"
|
|
585
|
-
},
|
|
586
|
-
{
|
|
587
|
-
"label": "日照市",
|
|
588
|
-
"value": "3711"
|
|
589
|
-
},
|
|
590
|
-
{
|
|
591
|
-
"label": "莱芜市",
|
|
592
|
-
"value": "3712"
|
|
593
|
-
},
|
|
594
|
-
{
|
|
595
|
-
"label": "临沂市",
|
|
596
|
-
"value": "3713"
|
|
597
|
-
},
|
|
598
|
-
{
|
|
599
|
-
"label": "德州市",
|
|
600
|
-
"value": "3714"
|
|
601
|
-
},
|
|
602
|
-
{
|
|
603
|
-
"label": "聊城市",
|
|
604
|
-
"value": "3715"
|
|
605
|
-
},
|
|
606
|
-
{
|
|
607
|
-
"label": "滨州市",
|
|
608
|
-
"value": "3716"
|
|
609
|
-
},
|
|
610
|
-
{
|
|
611
|
-
"label": "菏泽市",
|
|
612
|
-
"value": "3717"
|
|
613
|
-
}
|
|
614
|
-
],
|
|
615
|
-
[{
|
|
616
|
-
"label": "郑州市",
|
|
617
|
-
"value": "4101"
|
|
618
|
-
},
|
|
619
|
-
{
|
|
620
|
-
"label": "开封市",
|
|
621
|
-
"value": "4102"
|
|
622
|
-
},
|
|
623
|
-
{
|
|
624
|
-
"label": "洛阳市",
|
|
625
|
-
"value": "4103"
|
|
626
|
-
},
|
|
627
|
-
{
|
|
628
|
-
"label": "平顶山市",
|
|
629
|
-
"value": "4104"
|
|
630
|
-
},
|
|
631
|
-
{
|
|
632
|
-
"label": "安阳市",
|
|
633
|
-
"value": "4105"
|
|
634
|
-
},
|
|
635
|
-
{
|
|
636
|
-
"label": "鹤壁市",
|
|
637
|
-
"value": "4106"
|
|
638
|
-
},
|
|
639
|
-
{
|
|
640
|
-
"label": "新乡市",
|
|
641
|
-
"value": "4107"
|
|
642
|
-
},
|
|
643
|
-
{
|
|
644
|
-
"label": "焦作市",
|
|
645
|
-
"value": "4108"
|
|
646
|
-
},
|
|
647
|
-
{
|
|
648
|
-
"label": "濮阳市",
|
|
649
|
-
"value": "4109"
|
|
650
|
-
},
|
|
651
|
-
{
|
|
652
|
-
"label": "许昌市",
|
|
653
|
-
"value": "4110"
|
|
654
|
-
},
|
|
655
|
-
{
|
|
656
|
-
"label": "漯河市",
|
|
657
|
-
"value": "4111"
|
|
658
|
-
},
|
|
659
|
-
{
|
|
660
|
-
"label": "三门峡市",
|
|
661
|
-
"value": "4112"
|
|
662
|
-
},
|
|
663
|
-
{
|
|
664
|
-
"label": "南阳市",
|
|
665
|
-
"value": "4113"
|
|
666
|
-
},
|
|
667
|
-
{
|
|
668
|
-
"label": "商丘市",
|
|
669
|
-
"value": "4114"
|
|
670
|
-
},
|
|
671
|
-
{
|
|
672
|
-
"label": "信阳市",
|
|
673
|
-
"value": "4115"
|
|
674
|
-
},
|
|
675
|
-
{
|
|
676
|
-
"label": "周口市",
|
|
677
|
-
"value": "4116"
|
|
678
|
-
},
|
|
679
|
-
{
|
|
680
|
-
"label": "驻马店市",
|
|
681
|
-
"value": "4117"
|
|
682
|
-
},
|
|
683
|
-
{
|
|
684
|
-
"label": "省直辖县级行政区划",
|
|
685
|
-
"value": "4190"
|
|
686
|
-
}
|
|
687
|
-
],
|
|
688
|
-
[{
|
|
689
|
-
"label": "武汉市",
|
|
690
|
-
"value": "4201"
|
|
691
|
-
},
|
|
692
|
-
{
|
|
693
|
-
"label": "黄石市",
|
|
694
|
-
"value": "4202"
|
|
695
|
-
},
|
|
696
|
-
{
|
|
697
|
-
"label": "十堰市",
|
|
698
|
-
"value": "4203"
|
|
699
|
-
},
|
|
700
|
-
{
|
|
701
|
-
"label": "宜昌市",
|
|
702
|
-
"value": "4205"
|
|
703
|
-
},
|
|
704
|
-
{
|
|
705
|
-
"label": "襄阳市",
|
|
706
|
-
"value": "4206"
|
|
707
|
-
},
|
|
708
|
-
{
|
|
709
|
-
"label": "鄂州市",
|
|
710
|
-
"value": "4207"
|
|
711
|
-
},
|
|
712
|
-
{
|
|
713
|
-
"label": "荆门市",
|
|
714
|
-
"value": "4208"
|
|
715
|
-
},
|
|
716
|
-
{
|
|
717
|
-
"label": "孝感市",
|
|
718
|
-
"value": "4209"
|
|
719
|
-
},
|
|
720
|
-
{
|
|
721
|
-
"label": "荆州市",
|
|
722
|
-
"value": "4210"
|
|
723
|
-
},
|
|
724
|
-
{
|
|
725
|
-
"label": "黄冈市",
|
|
726
|
-
"value": "4211"
|
|
727
|
-
},
|
|
728
|
-
{
|
|
729
|
-
"label": "咸宁市",
|
|
730
|
-
"value": "4212"
|
|
731
|
-
},
|
|
732
|
-
{
|
|
733
|
-
"label": "随州市",
|
|
734
|
-
"value": "4213"
|
|
735
|
-
},
|
|
736
|
-
{
|
|
737
|
-
"label": "恩施土家族苗族自治州",
|
|
738
|
-
"value": "4228"
|
|
739
|
-
},
|
|
740
|
-
{
|
|
741
|
-
"label": "省直辖县级行政区划",
|
|
742
|
-
"value": "4290"
|
|
743
|
-
}
|
|
744
|
-
],
|
|
745
|
-
[{
|
|
746
|
-
"label": "长沙市",
|
|
747
|
-
"value": "4301"
|
|
748
|
-
},
|
|
749
|
-
{
|
|
750
|
-
"label": "株洲市",
|
|
751
|
-
"value": "4302"
|
|
752
|
-
},
|
|
753
|
-
{
|
|
754
|
-
"label": "湘潭市",
|
|
755
|
-
"value": "4303"
|
|
756
|
-
},
|
|
757
|
-
{
|
|
758
|
-
"label": "衡阳市",
|
|
759
|
-
"value": "4304"
|
|
760
|
-
},
|
|
761
|
-
{
|
|
762
|
-
"label": "邵阳市",
|
|
763
|
-
"value": "4305"
|
|
764
|
-
},
|
|
765
|
-
{
|
|
766
|
-
"label": "岳阳市",
|
|
767
|
-
"value": "4306"
|
|
768
|
-
},
|
|
769
|
-
{
|
|
770
|
-
"label": "常德市",
|
|
771
|
-
"value": "4307"
|
|
772
|
-
},
|
|
773
|
-
{
|
|
774
|
-
"label": "张家界市",
|
|
775
|
-
"value": "4308"
|
|
776
|
-
},
|
|
777
|
-
{
|
|
778
|
-
"label": "益阳市",
|
|
779
|
-
"value": "4309"
|
|
780
|
-
},
|
|
781
|
-
{
|
|
782
|
-
"label": "郴州市",
|
|
783
|
-
"value": "4310"
|
|
784
|
-
},
|
|
785
|
-
{
|
|
786
|
-
"label": "永州市",
|
|
787
|
-
"value": "4311"
|
|
788
|
-
},
|
|
789
|
-
{
|
|
790
|
-
"label": "怀化市",
|
|
791
|
-
"value": "4312"
|
|
792
|
-
},
|
|
793
|
-
{
|
|
794
|
-
"label": "娄底市",
|
|
795
|
-
"value": "4313"
|
|
796
|
-
},
|
|
797
|
-
{
|
|
798
|
-
"label": "湘西土家族苗族自治州",
|
|
799
|
-
"value": "4331"
|
|
800
|
-
}
|
|
801
|
-
],
|
|
802
|
-
[{
|
|
803
|
-
"label": "广州市",
|
|
804
|
-
"value": "4401"
|
|
805
|
-
},
|
|
806
|
-
{
|
|
807
|
-
"label": "韶关市",
|
|
808
|
-
"value": "4402"
|
|
809
|
-
},
|
|
810
|
-
{
|
|
811
|
-
"label": "深圳市",
|
|
812
|
-
"value": "4403"
|
|
813
|
-
},
|
|
814
|
-
{
|
|
815
|
-
"label": "珠海市",
|
|
816
|
-
"value": "4404"
|
|
817
|
-
},
|
|
818
|
-
{
|
|
819
|
-
"label": "汕头市",
|
|
820
|
-
"value": "4405"
|
|
821
|
-
},
|
|
822
|
-
{
|
|
823
|
-
"label": "佛山市",
|
|
824
|
-
"value": "4406"
|
|
825
|
-
},
|
|
826
|
-
{
|
|
827
|
-
"label": "江门市",
|
|
828
|
-
"value": "4407"
|
|
829
|
-
},
|
|
830
|
-
{
|
|
831
|
-
"label": "湛江市",
|
|
832
|
-
"value": "4408"
|
|
833
|
-
},
|
|
834
|
-
{
|
|
835
|
-
"label": "茂名市",
|
|
836
|
-
"value": "4409"
|
|
837
|
-
},
|
|
838
|
-
{
|
|
839
|
-
"label": "肇庆市",
|
|
840
|
-
"value": "4412"
|
|
841
|
-
},
|
|
842
|
-
{
|
|
843
|
-
"label": "惠州市",
|
|
844
|
-
"value": "4413"
|
|
845
|
-
},
|
|
846
|
-
{
|
|
847
|
-
"label": "梅州市",
|
|
848
|
-
"value": "4414"
|
|
849
|
-
},
|
|
850
|
-
{
|
|
851
|
-
"label": "汕尾市",
|
|
852
|
-
"value": "4415"
|
|
853
|
-
},
|
|
854
|
-
{
|
|
855
|
-
"label": "河源市",
|
|
856
|
-
"value": "4416"
|
|
857
|
-
},
|
|
858
|
-
{
|
|
859
|
-
"label": "阳江市",
|
|
860
|
-
"value": "4417"
|
|
861
|
-
},
|
|
862
|
-
{
|
|
863
|
-
"label": "清远市",
|
|
864
|
-
"value": "4418"
|
|
865
|
-
},
|
|
866
|
-
{
|
|
867
|
-
"label": "东莞市",
|
|
868
|
-
"value": "4419"
|
|
869
|
-
},
|
|
870
|
-
{
|
|
871
|
-
"label": "中山市",
|
|
872
|
-
"value": "4420"
|
|
873
|
-
},
|
|
874
|
-
{
|
|
875
|
-
"label": "潮州市",
|
|
876
|
-
"value": "4451"
|
|
877
|
-
},
|
|
878
|
-
{
|
|
879
|
-
"label": "揭阳市",
|
|
880
|
-
"value": "4452"
|
|
881
|
-
},
|
|
882
|
-
{
|
|
883
|
-
"label": "云浮市",
|
|
884
|
-
"value": "4453"
|
|
885
|
-
}
|
|
886
|
-
],
|
|
887
|
-
[{
|
|
888
|
-
"label": "南宁市",
|
|
889
|
-
"value": "4501"
|
|
890
|
-
},
|
|
891
|
-
{
|
|
892
|
-
"label": "柳州市",
|
|
893
|
-
"value": "4502"
|
|
894
|
-
},
|
|
895
|
-
{
|
|
896
|
-
"label": "桂林市",
|
|
897
|
-
"value": "4503"
|
|
898
|
-
},
|
|
899
|
-
{
|
|
900
|
-
"label": "梧州市",
|
|
901
|
-
"value": "4504"
|
|
902
|
-
},
|
|
903
|
-
{
|
|
904
|
-
"label": "北海市",
|
|
905
|
-
"value": "4505"
|
|
906
|
-
},
|
|
907
|
-
{
|
|
908
|
-
"label": "防城港市",
|
|
909
|
-
"value": "4506"
|
|
910
|
-
},
|
|
911
|
-
{
|
|
912
|
-
"label": "钦州市",
|
|
913
|
-
"value": "4507"
|
|
914
|
-
},
|
|
915
|
-
{
|
|
916
|
-
"label": "贵港市",
|
|
917
|
-
"value": "4508"
|
|
918
|
-
},
|
|
919
|
-
{
|
|
920
|
-
"label": "玉林市",
|
|
921
|
-
"value": "4509"
|
|
922
|
-
},
|
|
923
|
-
{
|
|
924
|
-
"label": "百色市",
|
|
925
|
-
"value": "4510"
|
|
926
|
-
},
|
|
927
|
-
{
|
|
928
|
-
"label": "贺州市",
|
|
929
|
-
"value": "4511"
|
|
930
|
-
},
|
|
931
|
-
{
|
|
932
|
-
"label": "河池市",
|
|
933
|
-
"value": "4512"
|
|
934
|
-
},
|
|
935
|
-
{
|
|
936
|
-
"label": "来宾市",
|
|
937
|
-
"value": "4513"
|
|
938
|
-
},
|
|
939
|
-
{
|
|
940
|
-
"label": "崇左市",
|
|
941
|
-
"value": "4514"
|
|
942
|
-
}
|
|
943
|
-
],
|
|
944
|
-
[{
|
|
945
|
-
"label": "海口市",
|
|
946
|
-
"value": "4601"
|
|
947
|
-
},
|
|
948
|
-
{
|
|
949
|
-
"label": "三亚市",
|
|
950
|
-
"value": "4602"
|
|
951
|
-
},
|
|
952
|
-
{
|
|
953
|
-
"label": "三沙市",
|
|
954
|
-
"value": "4603"
|
|
955
|
-
},
|
|
956
|
-
{
|
|
957
|
-
"label": "儋州市",
|
|
958
|
-
"value": "4604"
|
|
959
|
-
},
|
|
960
|
-
{
|
|
961
|
-
"label": "省直辖县级行政区划",
|
|
962
|
-
"value": "4690"
|
|
963
|
-
}
|
|
964
|
-
],
|
|
965
|
-
[{
|
|
966
|
-
"label": "市辖区",
|
|
967
|
-
"value": "5001"
|
|
968
|
-
},
|
|
969
|
-
{
|
|
970
|
-
"label": "县",
|
|
971
|
-
"value": "5002"
|
|
972
|
-
}
|
|
973
|
-
],
|
|
974
|
-
[{
|
|
975
|
-
"label": "成都市",
|
|
976
|
-
"value": "5101"
|
|
977
|
-
},
|
|
978
|
-
{
|
|
979
|
-
"label": "自贡市",
|
|
980
|
-
"value": "5103"
|
|
981
|
-
},
|
|
982
|
-
{
|
|
983
|
-
"label": "攀枝花市",
|
|
984
|
-
"value": "5104"
|
|
985
|
-
},
|
|
986
|
-
{
|
|
987
|
-
"label": "泸州市",
|
|
988
|
-
"value": "5105"
|
|
989
|
-
},
|
|
990
|
-
{
|
|
991
|
-
"label": "德阳市",
|
|
992
|
-
"value": "5106"
|
|
993
|
-
},
|
|
994
|
-
{
|
|
995
|
-
"label": "绵阳市",
|
|
996
|
-
"value": "5107"
|
|
997
|
-
},
|
|
998
|
-
{
|
|
999
|
-
"label": "广元市",
|
|
1000
|
-
"value": "5108"
|
|
1001
|
-
},
|
|
1002
|
-
{
|
|
1003
|
-
"label": "遂宁市",
|
|
1004
|
-
"value": "5109"
|
|
1005
|
-
},
|
|
1006
|
-
{
|
|
1007
|
-
"label": "内江市",
|
|
1008
|
-
"value": "5110"
|
|
1009
|
-
},
|
|
1010
|
-
{
|
|
1011
|
-
"label": "乐山市",
|
|
1012
|
-
"value": "5111"
|
|
1013
|
-
},
|
|
1014
|
-
{
|
|
1015
|
-
"label": "南充市",
|
|
1016
|
-
"value": "5113"
|
|
1017
|
-
},
|
|
1018
|
-
{
|
|
1019
|
-
"label": "眉山市",
|
|
1020
|
-
"value": "5114"
|
|
1021
|
-
},
|
|
1022
|
-
{
|
|
1023
|
-
"label": "宜宾市",
|
|
1024
|
-
"value": "5115"
|
|
1025
|
-
},
|
|
1026
|
-
{
|
|
1027
|
-
"label": "广安市",
|
|
1028
|
-
"value": "5116"
|
|
1029
|
-
},
|
|
1030
|
-
{
|
|
1031
|
-
"label": "达州市",
|
|
1032
|
-
"value": "5117"
|
|
1033
|
-
},
|
|
1034
|
-
{
|
|
1035
|
-
"label": "雅安市",
|
|
1036
|
-
"value": "5118"
|
|
1037
|
-
},
|
|
1038
|
-
{
|
|
1039
|
-
"label": "巴中市",
|
|
1040
|
-
"value": "5119"
|
|
1041
|
-
},
|
|
1042
|
-
{
|
|
1043
|
-
"label": "资阳市",
|
|
1044
|
-
"value": "5120"
|
|
1045
|
-
},
|
|
1046
|
-
{
|
|
1047
|
-
"label": "阿坝藏族羌族自治州",
|
|
1048
|
-
"value": "5132"
|
|
1049
|
-
},
|
|
1050
|
-
{
|
|
1051
|
-
"label": "甘孜藏族自治州",
|
|
1052
|
-
"value": "5133"
|
|
1053
|
-
},
|
|
1054
|
-
{
|
|
1055
|
-
"label": "凉山彝族自治州",
|
|
1056
|
-
"value": "5134"
|
|
1057
|
-
}
|
|
1058
|
-
],
|
|
1059
|
-
[{
|
|
1060
|
-
"label": "贵阳市",
|
|
1061
|
-
"value": "5201"
|
|
1062
|
-
},
|
|
1063
|
-
{
|
|
1064
|
-
"label": "六盘水市",
|
|
1065
|
-
"value": "5202"
|
|
1066
|
-
},
|
|
1067
|
-
{
|
|
1068
|
-
"label": "遵义市",
|
|
1069
|
-
"value": "5203"
|
|
1070
|
-
},
|
|
1071
|
-
{
|
|
1072
|
-
"label": "安顺市",
|
|
1073
|
-
"value": "5204"
|
|
1074
|
-
},
|
|
1075
|
-
{
|
|
1076
|
-
"label": "毕节市",
|
|
1077
|
-
"value": "5205"
|
|
1078
|
-
},
|
|
1079
|
-
{
|
|
1080
|
-
"label": "铜仁市",
|
|
1081
|
-
"value": "5206"
|
|
1082
|
-
},
|
|
1083
|
-
{
|
|
1084
|
-
"label": "黔西南布依族苗族自治州",
|
|
1085
|
-
"value": "5223"
|
|
1086
|
-
},
|
|
1087
|
-
{
|
|
1088
|
-
"label": "黔东南苗族侗族自治州",
|
|
1089
|
-
"value": "5226"
|
|
1090
|
-
},
|
|
1091
|
-
{
|
|
1092
|
-
"label": "黔南布依族苗族自治州",
|
|
1093
|
-
"value": "5227"
|
|
1094
|
-
}
|
|
1095
|
-
],
|
|
1096
|
-
[{
|
|
1097
|
-
"label": "昆明市",
|
|
1098
|
-
"value": "5301"
|
|
1099
|
-
},
|
|
1100
|
-
{
|
|
1101
|
-
"label": "曲靖市",
|
|
1102
|
-
"value": "5303"
|
|
1103
|
-
},
|
|
1104
|
-
{
|
|
1105
|
-
"label": "玉溪市",
|
|
1106
|
-
"value": "5304"
|
|
1107
|
-
},
|
|
1108
|
-
{
|
|
1109
|
-
"label": "保山市",
|
|
1110
|
-
"value": "5305"
|
|
1111
|
-
},
|
|
1112
|
-
{
|
|
1113
|
-
"label": "昭通市",
|
|
1114
|
-
"value": "5306"
|
|
1115
|
-
},
|
|
1116
|
-
{
|
|
1117
|
-
"label": "丽江市",
|
|
1118
|
-
"value": "5307"
|
|
1119
|
-
},
|
|
1120
|
-
{
|
|
1121
|
-
"label": "普洱市",
|
|
1122
|
-
"value": "5308"
|
|
1123
|
-
},
|
|
1124
|
-
{
|
|
1125
|
-
"label": "临沧市",
|
|
1126
|
-
"value": "5309"
|
|
1127
|
-
},
|
|
1128
|
-
{
|
|
1129
|
-
"label": "楚雄彝族自治州",
|
|
1130
|
-
"value": "5323"
|
|
1131
|
-
},
|
|
1132
|
-
{
|
|
1133
|
-
"label": "红河哈尼族彝族自治州",
|
|
1134
|
-
"value": "5325"
|
|
1135
|
-
},
|
|
1136
|
-
{
|
|
1137
|
-
"label": "文山壮族苗族自治州",
|
|
1138
|
-
"value": "5326"
|
|
1139
|
-
},
|
|
1140
|
-
{
|
|
1141
|
-
"label": "西双版纳傣族自治州",
|
|
1142
|
-
"value": "5328"
|
|
1143
|
-
},
|
|
1144
|
-
{
|
|
1145
|
-
"label": "大理白族自治州",
|
|
1146
|
-
"value": "5329"
|
|
1147
|
-
},
|
|
1148
|
-
{
|
|
1149
|
-
"label": "德宏傣族景颇族自治州",
|
|
1150
|
-
"value": "5331"
|
|
1151
|
-
},
|
|
1152
|
-
{
|
|
1153
|
-
"label": "怒江傈僳族自治州",
|
|
1154
|
-
"value": "5333"
|
|
1155
|
-
},
|
|
1156
|
-
{
|
|
1157
|
-
"label": "迪庆藏族自治州",
|
|
1158
|
-
"value": "5334"
|
|
1159
|
-
}
|
|
1160
|
-
],
|
|
1161
|
-
[{
|
|
1162
|
-
"label": "拉萨市",
|
|
1163
|
-
"value": "5401"
|
|
1164
|
-
},
|
|
1165
|
-
{
|
|
1166
|
-
"label": "日喀则市",
|
|
1167
|
-
"value": "5402"
|
|
1168
|
-
},
|
|
1169
|
-
{
|
|
1170
|
-
"label": "昌都市",
|
|
1171
|
-
"value": "5403"
|
|
1172
|
-
},
|
|
1173
|
-
{
|
|
1174
|
-
"label": "林芝市",
|
|
1175
|
-
"value": "5404"
|
|
1176
|
-
},
|
|
1177
|
-
{
|
|
1178
|
-
"label": "山南市",
|
|
1179
|
-
"value": "5405"
|
|
1180
|
-
},
|
|
1181
|
-
{
|
|
1182
|
-
"label": "那曲地区",
|
|
1183
|
-
"value": "5424"
|
|
1184
|
-
},
|
|
1185
|
-
{
|
|
1186
|
-
"label": "阿里地区",
|
|
1187
|
-
"value": "5425"
|
|
1188
|
-
}
|
|
1189
|
-
],
|
|
1190
|
-
[{
|
|
1191
|
-
"label": "西安市",
|
|
1192
|
-
"value": "6101"
|
|
1193
|
-
},
|
|
1194
|
-
{
|
|
1195
|
-
"label": "铜川市",
|
|
1196
|
-
"value": "6102"
|
|
1197
|
-
},
|
|
1198
|
-
{
|
|
1199
|
-
"label": "宝鸡市",
|
|
1200
|
-
"value": "6103"
|
|
1201
|
-
},
|
|
1202
|
-
{
|
|
1203
|
-
"label": "咸阳市",
|
|
1204
|
-
"value": "6104"
|
|
1205
|
-
},
|
|
1206
|
-
{
|
|
1207
|
-
"label": "渭南市",
|
|
1208
|
-
"value": "6105"
|
|
1209
|
-
},
|
|
1210
|
-
{
|
|
1211
|
-
"label": "延安市",
|
|
1212
|
-
"value": "6106"
|
|
1213
|
-
},
|
|
1214
|
-
{
|
|
1215
|
-
"label": "汉中市",
|
|
1216
|
-
"value": "6107"
|
|
1217
|
-
},
|
|
1218
|
-
{
|
|
1219
|
-
"label": "榆林市",
|
|
1220
|
-
"value": "6108"
|
|
1221
|
-
},
|
|
1222
|
-
{
|
|
1223
|
-
"label": "安康市",
|
|
1224
|
-
"value": "6109"
|
|
1225
|
-
},
|
|
1226
|
-
{
|
|
1227
|
-
"label": "商洛市",
|
|
1228
|
-
"value": "6110"
|
|
1229
|
-
}
|
|
1230
|
-
],
|
|
1231
|
-
[{
|
|
1232
|
-
"label": "兰州市",
|
|
1233
|
-
"value": "6201"
|
|
1234
|
-
},
|
|
1235
|
-
{
|
|
1236
|
-
"label": "嘉峪关市",
|
|
1237
|
-
"value": "6202"
|
|
1238
|
-
},
|
|
1239
|
-
{
|
|
1240
|
-
"label": "金昌市",
|
|
1241
|
-
"value": "6203"
|
|
1242
|
-
},
|
|
1243
|
-
{
|
|
1244
|
-
"label": "白银市",
|
|
1245
|
-
"value": "6204"
|
|
1246
|
-
},
|
|
1247
|
-
{
|
|
1248
|
-
"label": "天水市",
|
|
1249
|
-
"value": "6205"
|
|
1250
|
-
},
|
|
1251
|
-
{
|
|
1252
|
-
"label": "武威市",
|
|
1253
|
-
"value": "6206"
|
|
1254
|
-
},
|
|
1255
|
-
{
|
|
1256
|
-
"label": "张掖市",
|
|
1257
|
-
"value": "6207"
|
|
1258
|
-
},
|
|
1259
|
-
{
|
|
1260
|
-
"label": "平凉市",
|
|
1261
|
-
"value": "6208"
|
|
1262
|
-
},
|
|
1263
|
-
{
|
|
1264
|
-
"label": "酒泉市",
|
|
1265
|
-
"value": "6209"
|
|
1266
|
-
},
|
|
1267
|
-
{
|
|
1268
|
-
"label": "庆阳市",
|
|
1269
|
-
"value": "6210"
|
|
1270
|
-
},
|
|
1271
|
-
{
|
|
1272
|
-
"label": "定西市",
|
|
1273
|
-
"value": "6211"
|
|
1274
|
-
},
|
|
1275
|
-
{
|
|
1276
|
-
"label": "陇南市",
|
|
1277
|
-
"value": "6212"
|
|
1278
|
-
},
|
|
1279
|
-
{
|
|
1280
|
-
"label": "临夏回族自治州",
|
|
1281
|
-
"value": "6229"
|
|
1282
|
-
},
|
|
1283
|
-
{
|
|
1284
|
-
"label": "甘南藏族自治州",
|
|
1285
|
-
"value": "6230"
|
|
1286
|
-
}
|
|
1287
|
-
],
|
|
1288
|
-
[{
|
|
1289
|
-
"label": "西宁市",
|
|
1290
|
-
"value": "6301"
|
|
1291
|
-
},
|
|
1292
|
-
{
|
|
1293
|
-
"label": "海东市",
|
|
1294
|
-
"value": "6302"
|
|
1295
|
-
},
|
|
1296
|
-
{
|
|
1297
|
-
"label": "海北藏族自治州",
|
|
1298
|
-
"value": "6322"
|
|
1299
|
-
},
|
|
1300
|
-
{
|
|
1301
|
-
"label": "黄南藏族自治州",
|
|
1302
|
-
"value": "6323"
|
|
1303
|
-
},
|
|
1304
|
-
{
|
|
1305
|
-
"label": "海南藏族自治州",
|
|
1306
|
-
"value": "6325"
|
|
1307
|
-
},
|
|
1308
|
-
{
|
|
1309
|
-
"label": "果洛藏族自治州",
|
|
1310
|
-
"value": "6326"
|
|
1311
|
-
},
|
|
1312
|
-
{
|
|
1313
|
-
"label": "玉树藏族自治州",
|
|
1314
|
-
"value": "6327"
|
|
1315
|
-
},
|
|
1316
|
-
{
|
|
1317
|
-
"label": "海西蒙古族藏族自治州",
|
|
1318
|
-
"value": "6328"
|
|
1319
|
-
}
|
|
1320
|
-
],
|
|
1321
|
-
[{
|
|
1322
|
-
"label": "银川市",
|
|
1323
|
-
"value": "6401"
|
|
1324
|
-
},
|
|
1325
|
-
{
|
|
1326
|
-
"label": "石嘴山市",
|
|
1327
|
-
"value": "6402"
|
|
1328
|
-
},
|
|
1329
|
-
{
|
|
1330
|
-
"label": "吴忠市",
|
|
1331
|
-
"value": "6403"
|
|
1332
|
-
},
|
|
1333
|
-
{
|
|
1334
|
-
"label": "固原市",
|
|
1335
|
-
"value": "6404"
|
|
1336
|
-
},
|
|
1337
|
-
{
|
|
1338
|
-
"label": "中卫市",
|
|
1339
|
-
"value": "6405"
|
|
1340
|
-
}
|
|
1341
|
-
],
|
|
1342
|
-
[{
|
|
1343
|
-
"label": "乌鲁木齐市",
|
|
1344
|
-
"value": "6501"
|
|
1345
|
-
},
|
|
1346
|
-
{
|
|
1347
|
-
"label": "克拉玛依市",
|
|
1348
|
-
"value": "6502"
|
|
1349
|
-
},
|
|
1350
|
-
{
|
|
1351
|
-
"label": "吐鲁番市",
|
|
1352
|
-
"value": "6504"
|
|
1353
|
-
},
|
|
1354
|
-
{
|
|
1355
|
-
"label": "哈密市",
|
|
1356
|
-
"value": "6505"
|
|
1357
|
-
},
|
|
1358
|
-
{
|
|
1359
|
-
"label": "昌吉回族自治州",
|
|
1360
|
-
"value": "6523"
|
|
1361
|
-
},
|
|
1362
|
-
{
|
|
1363
|
-
"label": "博尔塔拉蒙古自治州",
|
|
1364
|
-
"value": "6527"
|
|
1365
|
-
},
|
|
1366
|
-
{
|
|
1367
|
-
"label": "巴音郭楞蒙古自治州",
|
|
1368
|
-
"value": "6528"
|
|
1369
|
-
},
|
|
1370
|
-
{
|
|
1371
|
-
"label": "阿克苏地区",
|
|
1372
|
-
"value": "6529"
|
|
1373
|
-
},
|
|
1374
|
-
{
|
|
1375
|
-
"label": "克孜勒苏柯尔克孜自治州",
|
|
1376
|
-
"value": "6530"
|
|
1377
|
-
},
|
|
1378
|
-
{
|
|
1379
|
-
"label": "喀什地区",
|
|
1380
|
-
"value": "6531"
|
|
1381
|
-
},
|
|
1382
|
-
{
|
|
1383
|
-
"label": "和田地区",
|
|
1384
|
-
"value": "6532"
|
|
1385
|
-
},
|
|
1386
|
-
{
|
|
1387
|
-
"label": "伊犁哈萨克自治州",
|
|
1388
|
-
"value": "6540"
|
|
1389
|
-
},
|
|
1390
|
-
{
|
|
1391
|
-
"label": "塔城地区",
|
|
1392
|
-
"value": "6542"
|
|
1393
|
-
},
|
|
1394
|
-
{
|
|
1395
|
-
"label": "阿勒泰地区",
|
|
1396
|
-
"value": "6543"
|
|
1397
|
-
},
|
|
1398
|
-
{
|
|
1399
|
-
"label": "自治区直辖县级行政区划",
|
|
1400
|
-
"value": "6590"
|
|
1401
|
-
}
|
|
1402
|
-
],
|
|
1403
|
-
[{
|
|
1404
|
-
"label": "台北",
|
|
1405
|
-
"value": "6601"
|
|
1406
|
-
},
|
|
1407
|
-
{
|
|
1408
|
-
"label": "高雄",
|
|
1409
|
-
"value": "6602"
|
|
1410
|
-
},
|
|
1411
|
-
{
|
|
1412
|
-
"label": "基隆",
|
|
1413
|
-
"value": "6603"
|
|
1414
|
-
},
|
|
1415
|
-
{
|
|
1416
|
-
"label": "台中",
|
|
1417
|
-
"value": "6604"
|
|
1418
|
-
},
|
|
1419
|
-
{
|
|
1420
|
-
"label": "台南",
|
|
1421
|
-
"value": "6605"
|
|
1422
|
-
},
|
|
1423
|
-
{
|
|
1424
|
-
"label": "新竹",
|
|
1425
|
-
"value": "6606"
|
|
1426
|
-
},
|
|
1427
|
-
{
|
|
1428
|
-
"label": "嘉义",
|
|
1429
|
-
"value": "6607"
|
|
1430
|
-
},
|
|
1431
|
-
{
|
|
1432
|
-
"label": "宜兰",
|
|
1433
|
-
"value": "6608"
|
|
1434
|
-
},
|
|
1435
|
-
{
|
|
1436
|
-
"label": "桃园",
|
|
1437
|
-
"value": "6609"
|
|
1438
|
-
},
|
|
1439
|
-
{
|
|
1440
|
-
"label": "苗栗",
|
|
1441
|
-
"value": "6610"
|
|
1442
|
-
},
|
|
1443
|
-
{
|
|
1444
|
-
"label": "彰化",
|
|
1445
|
-
"value": "6611"
|
|
1446
|
-
},
|
|
1447
|
-
{
|
|
1448
|
-
"label": "南投",
|
|
1449
|
-
"value": "6612"
|
|
1450
|
-
},
|
|
1451
|
-
{
|
|
1452
|
-
"label": "云林",
|
|
1453
|
-
"value": "6613"
|
|
1454
|
-
},
|
|
1455
|
-
{
|
|
1456
|
-
"label": "屏东",
|
|
1457
|
-
"value": "6614"
|
|
1458
|
-
},
|
|
1459
|
-
{
|
|
1460
|
-
"label": "台东",
|
|
1461
|
-
"value": "6615"
|
|
1462
|
-
},
|
|
1463
|
-
{
|
|
1464
|
-
"label": "花莲",
|
|
1465
|
-
"value": "6616"
|
|
1466
|
-
},
|
|
1467
|
-
{
|
|
1468
|
-
"label": "澎湖",
|
|
1469
|
-
"value": "6617"
|
|
1470
|
-
}
|
|
1471
|
-
],
|
|
1472
|
-
[{
|
|
1473
|
-
"label": "香港岛",
|
|
1474
|
-
"value": "6701"
|
|
1475
|
-
},
|
|
1476
|
-
{
|
|
1477
|
-
"label": "九龙",
|
|
1478
|
-
"value": "6702"
|
|
1479
|
-
},
|
|
1480
|
-
{
|
|
1481
|
-
"label": "新界",
|
|
1482
|
-
"value": "6703"
|
|
1483
|
-
}
|
|
1484
|
-
],
|
|
1485
|
-
[{
|
|
1486
|
-
"label": "澳门半岛",
|
|
1487
|
-
"value": "6801"
|
|
1488
|
-
},
|
|
1489
|
-
{
|
|
1490
|
-
"label": "氹仔岛",
|
|
1491
|
-
"value": "6802"
|
|
1492
|
-
},
|
|
1493
|
-
{
|
|
1494
|
-
"label": "路环岛",
|
|
1495
|
-
"value": "6803"
|
|
1496
|
-
},
|
|
1497
|
-
{
|
|
1498
|
-
"label": "路氹城",
|
|
1499
|
-
"value": "6804"
|
|
1500
|
-
}
|
|
1501
|
-
]
|
|
1502
|
-
]
|
|
1503
|
-
export default cityData;
|