├── .gitattributes ├── .gitignore ├── App.vue ├── LICENSE ├── README.en.md ├── README.md ├── apis ├── api │ └── login.js └── index.js ├── assets └── css │ └── base64-pic-store.scss ├── http ├── config.js └── request.js ├── index.html ├── main.js ├── manifest.json ├── nativeplugins └── Tuoyun-OpenIMSDK │ ├── android │ ├── .idea │ │ ├── .gitignore │ │ ├── android.iml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── vcs.xml │ ├── openIM-release.aar │ └── open_im_sdk.aar │ ├── ios │ ├── OpenIMCore.framework │ │ ├── Headers │ │ ├── Modules │ │ ├── OpenIMCore │ │ ├── Resources │ │ └── Versions │ │ │ ├── A │ │ │ ├── Headers │ │ │ │ ├── OpenIMCore.h │ │ │ │ ├── Open_im_sdk.objc.h │ │ │ │ ├── Open_im_sdk_callback.objc.h │ │ │ │ ├── Universe.objc.h │ │ │ │ └── ref.h │ │ │ ├── Modules │ │ │ │ └── module.modulemap │ │ │ ├── OpenIMCore │ │ │ └── Resources │ │ │ │ └── Info.plist │ │ │ └── Current │ └── OpenIMUniPlugin.framework │ │ ├── Headers │ │ ├── CallbackProxy.h │ │ ├── OpenIMModule.h │ │ ├── OpenIMUniPlugin-umbrella.h │ │ ├── SendMessageCallbackProxy.h │ │ └── UploadFileCallbackProxy.h │ │ ├── Info.plist │ │ ├── Modules │ │ └── module.modulemap │ │ └── OpenIMUniPlugin │ └── package.json ├── pages.json ├── pages ├── 404 │ └── 404.vue ├── guidePage │ └── guidePage.vue ├── home │ ├── components │ │ └── homeSkeleton.vue │ └── home.vue ├── login │ ├── components │ │ ├── loginAccount.vue │ │ └── loginMobile.vue │ └── login.vue ├── mine │ └── mine.vue ├── versionUpdate │ └── versionUpdate.vue └── webView │ └── webView.vue ├── static ├── 2023-02-033338.png ├── 2023-02-08.png ├── 2023-02-08222.png ├── customicons.css ├── customicons.ttf ├── icon │ ├── iconfont.css │ ├── iconfont.ttf │ ├── iconfont.woff │ └── iconfont.woff2 ├── images │ ├── app版本下载.png │ ├── app版本升级.png │ ├── bg1.png │ ├── bg2.png │ ├── close.png │ ├── head.png │ ├── icon_home_checked.png │ ├── icon_home_nochecked.png │ ├── icon_mine_checked.png │ ├── icon_mine_nochecked.png │ ├── icon_shenpi_checked.png │ ├── icon_shenpi_nochecked.png │ ├── img.png │ ├── login_bg.jpg │ ├── qq.png │ ├── round.png │ ├── update-img.png │ ├── wx.png │ ├── 引导页.png │ ├── 手机登录.png │ ├── 登录页.png │ └── 首页骨架屏.png └── uni.png ├── styles └── base64-pic-store.scss ├── subpages └── test.vue ├── uni.scss ├── uni_modules ├── uni-badge │ ├── changelog.md │ ├── components │ │ └── uni-badge │ │ │ └── uni-badge.vue │ ├── package.json │ └── readme.md ├── uni-breadcrumb │ ├── changelog.md │ ├── components │ │ ├── uni-breadcrumb-item │ │ │ └── uni-breadcrumb-item.vue │ │ └── uni-breadcrumb │ │ │ └── uni-breadcrumb.vue │ ├── package.json │ └── readme.md ├── uni-calendar │ ├── changelog.md │ ├── components │ │ └── uni-calendar │ │ │ ├── calendar.js │ │ │ ├── i18n │ │ │ ├── en.json │ │ │ ├── index.js │ │ │ ├── zh-Hans.json │ │ │ └── zh-Hant.json │ │ │ ├── uni-calendar-item.vue │ │ │ ├── uni-calendar.vue │ │ │ └── util.js │ ├── package.json │ └── readme.md ├── uni-card │ ├── changelog.md │ ├── components │ │ └── uni-card │ │ │ └── uni-card.vue │ ├── package.json │ └── readme.md ├── uni-collapse │ ├── changelog.md │ ├── components │ │ ├── uni-collapse-item │ │ │ └── uni-collapse-item.vue │ │ └── uni-collapse │ │ │ └── uni-collapse.vue │ ├── package.json │ └── readme.md ├── uni-combox │ ├── changelog.md │ ├── components │ │ └── uni-combox │ │ │ └── uni-combox.vue │ ├── package.json │ └── readme.md ├── uni-countdown │ ├── changelog.md │ ├── components │ │ └── uni-countdown │ │ │ ├── i18n │ │ │ ├── en.json │ │ │ ├── index.js │ │ │ ├── zh-Hans.json │ │ │ └── zh-Hant.json │ │ │ └── uni-countdown.vue │ ├── package.json │ └── readme.md ├── uni-data-checkbox │ ├── changelog.md │ ├── components │ │ └── uni-data-checkbox │ │ │ └── uni-data-checkbox.vue │ ├── package.json │ └── readme.md ├── uni-data-picker │ ├── changelog.md │ ├── components │ │ ├── uni-data-picker │ │ │ ├── keypress.js │ │ │ └── uni-data-picker.vue │ │ └── uni-data-pickerview │ │ │ ├── uni-data-picker.js │ │ │ └── uni-data-pickerview.vue │ ├── package.json │ └── readme.md ├── uni-data-select │ ├── changelog.md │ ├── components │ │ └── uni-data-select │ │ │ └── uni-data-select.vue │ ├── package.json │ └── readme.md ├── uni-dateformat │ ├── changelog.md │ ├── components │ │ └── uni-dateformat │ │ │ ├── date-format.js │ │ │ └── uni-dateformat.vue │ ├── package.json │ └── readme.md ├── uni-datetime-picker │ ├── changelog.md │ ├── components │ │ └── uni-datetime-picker │ │ │ ├── calendar-item.vue │ │ │ ├── calendar.vue │ │ │ ├── i18n │ │ │ ├── en.json │ │ │ ├── index.js │ │ │ ├── zh-Hans.json │ │ │ └── zh-Hant.json │ │ │ ├── keypress.js │ │ │ ├── time-picker.vue │ │ │ ├── uni-datetime-picker.vue │ │ │ └── util.js │ ├── package.json │ └── readme.md ├── uni-drawer │ ├── changelog.md │ ├── components │ │ └── uni-drawer │ │ │ ├── keypress.js │ │ │ └── uni-drawer.vue │ ├── package.json │ └── readme.md ├── uni-easyinput │ ├── changelog.md │ ├── components │ │ └── uni-easyinput │ │ │ ├── common.js │ │ │ └── uni-easyinput.vue │ ├── package.json │ └── readme.md ├── uni-fab │ ├── changelog.md │ ├── components │ │ └── uni-fab │ │ │ └── uni-fab.vue │ ├── package.json │ └── readme.md ├── uni-fav │ ├── changelog.md │ ├── components │ │ └── uni-fav │ │ │ ├── i18n │ │ │ ├── en.json │ │ │ ├── index.js │ │ │ ├── zh-Hans.json │ │ │ └── zh-Hant.json │ │ │ └── uni-fav.vue │ ├── package.json │ └── readme.md ├── uni-file-picker │ ├── changelog.md │ ├── components │ │ └── uni-file-picker │ │ │ ├── choose-and-upload-file.js │ │ │ ├── uni-file-picker.vue │ │ │ ├── upload-file.vue │ │ │ ├── upload-image.vue │ │ │ └── utils.js │ ├── package.json │ └── readme.md ├── uni-forms │ ├── changelog.md │ ├── components │ │ ├── uni-forms-item │ │ │ └── uni-forms-item.vue │ │ └── uni-forms │ │ │ ├── uni-forms.vue │ │ │ ├── utils.js │ │ │ └── validate.js │ ├── package.json │ └── readme.md ├── uni-goods-nav │ ├── changelog.md │ ├── components │ │ └── uni-goods-nav │ │ │ ├── i18n │ │ │ ├── en.json │ │ │ ├── index.js │ │ │ ├── zh-Hans.json │ │ │ └── zh-Hant.json │ │ │ └── uni-goods-nav.vue │ ├── package.json │ └── readme.md ├── uni-grid │ ├── changelog.md │ ├── components │ │ ├── uni-grid-item │ │ │ └── uni-grid-item.vue │ │ └── uni-grid │ │ │ └── uni-grid.vue │ ├── package.json │ └── readme.md ├── uni-group │ ├── changelog.md │ ├── components │ │ └── uni-group │ │ │ └── uni-group.vue │ ├── package.json │ └── readme.md ├── uni-icons │ ├── changelog.md │ ├── components │ │ └── uni-icons │ │ │ ├── icons.js │ │ │ ├── uni-icons.vue │ │ │ ├── uniicons.css │ │ │ └── uniicons.ttf │ ├── package.json │ └── readme.md ├── uni-indexed-list │ ├── changelog.md │ ├── components │ │ └── uni-indexed-list │ │ │ ├── uni-indexed-list-item.vue │ │ │ └── uni-indexed-list.vue │ ├── package.json │ └── readme.md ├── uni-link │ ├── changelog.md │ ├── components │ │ └── uni-link │ │ │ └── uni-link.vue │ ├── package.json │ └── readme.md ├── uni-list │ ├── changelog.md │ ├── components │ │ ├── uni-list-ad │ │ │ └── uni-list-ad.vue │ │ ├── uni-list-chat │ │ │ ├── uni-list-chat.scss │ │ │ └── uni-list-chat.vue │ │ ├── uni-list-item │ │ │ └── uni-list-item.vue │ │ └── uni-list │ │ │ ├── uni-list.vue │ │ │ ├── uni-refresh.vue │ │ │ └── uni-refresh.wxs │ ├── package.json │ └── readme.md ├── uni-load-more │ ├── changelog.md │ ├── components │ │ └── uni-load-more │ │ │ ├── i18n │ │ │ ├── en.json │ │ │ ├── index.js │ │ │ ├── zh-Hans.json │ │ │ └── zh-Hant.json │ │ │ └── uni-load-more.vue │ ├── package.json │ └── readme.md ├── uni-nav-bar │ ├── changelog.md │ ├── components │ │ └── uni-nav-bar │ │ │ ├── uni-nav-bar.vue │ │ │ └── uni-status-bar.vue │ ├── package.json │ └── readme.md ├── uni-notice-bar │ ├── changelog.md │ ├── components │ │ └── uni-notice-bar │ │ │ └── uni-notice-bar.vue │ ├── package.json │ └── readme.md ├── uni-number-box │ ├── changelog.md │ ├── components │ │ └── uni-number-box │ │ │ └── uni-number-box.vue │ ├── package.json │ └── readme.md ├── uni-pagination │ ├── changelog.md │ ├── components │ │ └── uni-pagination │ │ │ ├── i18n │ │ │ ├── en.json │ │ │ ├── es.json │ │ │ ├── fr.json │ │ │ ├── index.js │ │ │ ├── zh-Hans.json │ │ │ └── zh-Hant.json │ │ │ └── uni-pagination.vue │ ├── package.json │ └── readme.md ├── uni-popup │ ├── changelog.md │ ├── components │ │ ├── uni-popup-dialog │ │ │ ├── keypress.js │ │ │ └── uni-popup-dialog.vue │ │ ├── uni-popup-message │ │ │ └── uni-popup-message.vue │ │ ├── uni-popup-share │ │ │ └── uni-popup-share.vue │ │ └── uni-popup │ │ │ ├── i18n │ │ │ ├── en.json │ │ │ ├── index.js │ │ │ ├── zh-Hans.json │ │ │ └── zh-Hant.json │ │ │ ├── keypress.js │ │ │ ├── popup.js │ │ │ └── uni-popup.vue │ ├── package.json │ └── readme.md ├── uni-rate │ ├── changelog.md │ ├── components │ │ └── uni-rate │ │ │ └── uni-rate.vue │ ├── package.json │ └── readme.md ├── uni-row │ ├── changelog.md │ ├── components │ │ ├── uni-col │ │ │ └── uni-col.vue │ │ └── uni-row │ │ │ └── uni-row.vue │ ├── package.json │ └── readme.md ├── uni-scss │ ├── changelog.md │ ├── index.scss │ ├── package.json │ ├── readme.md │ ├── styles │ │ ├── index.scss │ │ ├── setting │ │ │ ├── _border.scss │ │ │ ├── _color.scss │ │ │ ├── _radius.scss │ │ │ ├── _space.scss │ │ │ ├── _styles.scss │ │ │ ├── _text.scss │ │ │ └── _variables.scss │ │ └── tools │ │ │ └── functions.scss │ ├── theme.scss │ └── variables.scss ├── uni-search-bar │ ├── changelog.md │ ├── components │ │ └── uni-search-bar │ │ │ ├── i18n │ │ │ ├── en.json │ │ │ ├── index.js │ │ │ ├── zh-Hans.json │ │ │ └── zh-Hant.json │ │ │ └── uni-search-bar.vue │ ├── package.json │ └── readme.md ├── uni-section │ ├── changelog.md │ ├── components │ │ └── uni-section │ │ │ └── uni-section.vue │ ├── package.json │ └── readme.md ├── uni-segmented-control │ ├── changelog.md │ ├── components │ │ └── uni-segmented-control │ │ │ └── uni-segmented-control.vue │ ├── package.json │ └── readme.md ├── uni-steps │ ├── changelog.md │ ├── components │ │ └── uni-steps │ │ │ └── uni-steps.vue │ ├── package.json │ └── readme.md ├── uni-swipe-action │ ├── changelog.md │ ├── components │ │ ├── uni-swipe-action-item │ │ │ ├── bindingx.js │ │ │ ├── isPC.js │ │ │ ├── mpalipay.js │ │ │ ├── mpother.js │ │ │ ├── mpwxs.js │ │ │ ├── render.js │ │ │ ├── uni-swipe-action-item.vue │ │ │ └── wx.wxs │ │ └── uni-swipe-action │ │ │ └── uni-swipe-action.vue │ ├── package.json │ └── readme.md ├── uni-swiper-dot │ ├── changelog.md │ ├── components │ │ └── uni-swiper-dot │ │ │ └── uni-swiper-dot.vue │ ├── package.json │ └── readme.md ├── uni-table │ ├── changelog.md │ ├── components │ │ ├── uni-table │ │ │ └── uni-table.vue │ │ ├── uni-tbody │ │ │ └── uni-tbody.vue │ │ ├── uni-td │ │ │ └── uni-td.vue │ │ ├── uni-th │ │ │ ├── filter-dropdown.vue │ │ │ └── uni-th.vue │ │ ├── uni-thead │ │ │ └── uni-thead.vue │ │ └── uni-tr │ │ │ ├── table-checkbox.vue │ │ │ └── uni-tr.vue │ ├── i18n │ │ ├── en.json │ │ ├── es.json │ │ ├── fr.json │ │ ├── index.js │ │ ├── zh-Hans.json │ │ └── zh-Hant.json │ ├── package.json │ └── readme.md ├── uni-tag │ ├── changelog.md │ ├── components │ │ └── uni-tag │ │ │ └── uni-tag.vue │ ├── package.json │ └── readme.md ├── uni-test │ ├── changelog.md │ ├── components │ │ └── uni-test │ │ │ └── uni-test.vue │ ├── package.json │ └── readme.md ├── uni-title │ ├── changelog.md │ ├── components │ │ └── uni-title │ │ │ └── uni-title.vue │ ├── package.json │ └── readme.md ├── uni-tooltip │ ├── changelog.md │ ├── components │ │ └── uni-tooltip │ │ │ └── uni-tooltip.vue │ ├── package.json │ └── readme.md ├── uni-transition │ ├── changelog.md │ ├── components │ │ └── uni-transition │ │ │ ├── createAnimation.js │ │ │ └── uni-transition.vue │ ├── package.json │ └── readme.md ├── uni-ui │ ├── changelog.md │ ├── components │ │ └── uni-ui │ │ │ └── uni-ui.vue │ ├── package.json │ └── readme.md └── uview-ui │ ├── LICENSE │ ├── README.md │ ├── changelog.md │ ├── components │ ├── u--form │ │ └── u--form.vue │ ├── u--image │ │ └── u--image.vue │ ├── u--input │ │ └── u--input.vue │ ├── u--text │ │ └── u--text.vue │ ├── u--textarea │ │ └── u--textarea.vue │ ├── u-action-sheet │ │ ├── props.js │ │ └── u-action-sheet.vue │ ├── u-album │ │ ├── props.js │ │ └── u-album.vue │ ├── u-alert │ │ ├── props.js │ │ └── u-alert.vue │ ├── u-avatar-group │ │ ├── props.js │ │ └── u-avatar-group.vue │ ├── u-avatar │ │ ├── props.js │ │ └── u-avatar.vue │ ├── u-back-top │ │ ├── props.js │ │ └── u-back-top.vue │ ├── u-badge │ │ ├── props.js │ │ └── u-badge.vue │ ├── u-button │ │ ├── nvue.scss │ │ ├── props.js │ │ ├── u-button.vue │ │ └── vue.scss │ ├── u-calendar │ │ ├── header.vue │ │ ├── month.vue │ │ ├── props.js │ │ ├── u-calendar.vue │ │ └── util.js │ ├── u-car-keyboard │ │ ├── props.js │ │ └── u-car-keyboard.vue │ ├── u-cell-group │ │ ├── props.js │ │ └── u-cell-group.vue │ ├── u-cell │ │ ├── props.js │ │ └── u-cell.vue │ ├── u-checkbox-group │ │ ├── props.js │ │ └── u-checkbox-group.vue │ ├── u-checkbox │ │ ├── props.js │ │ └── u-checkbox.vue │ ├── u-circle-progress │ │ ├── props.js │ │ └── u-circle-progress.vue │ ├── u-code-input │ │ ├── props.js │ │ └── u-code-input.vue │ ├── u-code │ │ ├── props.js │ │ └── u-code.vue │ ├── u-col │ │ ├── props.js │ │ └── u-col.vue │ ├── u-collapse-item │ │ ├── props.js │ │ └── u-collapse-item.vue │ ├── u-collapse │ │ ├── props.js │ │ └── u-collapse.vue │ ├── u-column-notice │ │ ├── props.js │ │ └── u-column-notice.vue │ ├── u-count-down │ │ ├── props.js │ │ ├── u-count-down.vue │ │ └── utils.js │ ├── u-count-to │ │ ├── props.js │ │ └── u-count-to.vue │ ├── u-datetime-picker │ │ ├── props.js │ │ └── u-datetime-picker.vue │ ├── u-divider │ │ ├── props.js │ │ └── u-divider.vue │ ├── u-dropdown-item │ │ ├── props.js │ │ └── u-dropdown-item.vue │ ├── u-dropdown │ │ ├── props.js │ │ └── u-dropdown.vue │ ├── u-empty │ │ ├── props.js │ │ └── u-empty.vue │ ├── u-form-item │ │ ├── props.js │ │ └── u-form-item.vue │ ├── u-form │ │ ├── props.js │ │ └── u-form.vue │ ├── u-gap │ │ ├── props.js │ │ └── u-gap.vue │ ├── u-grid-item │ │ ├── props.js │ │ └── u-grid-item.vue │ ├── u-grid │ │ ├── props.js │ │ └── u-grid.vue │ ├── u-icon │ │ ├── icons.js │ │ ├── props.js │ │ └── u-icon.vue │ ├── u-image │ │ ├── props.js │ │ └── u-image.vue │ ├── u-index-anchor │ │ ├── props.js │ │ └── u-index-anchor.vue │ ├── u-index-item │ │ ├── props.js │ │ └── u-index-item.vue │ ├── u-index-list │ │ ├── props.js │ │ └── u-index-list.vue │ ├── u-input │ │ ├── props.js │ │ └── u-input.vue │ ├── u-keyboard │ │ ├── props.js │ │ └── u-keyboard.vue │ ├── u-line-progress │ │ ├── props.js │ │ └── u-line-progress.vue │ ├── u-line │ │ ├── props.js │ │ └── u-line.vue │ ├── u-link │ │ ├── props.js │ │ └── u-link.vue │ ├── u-list-item │ │ ├── props.js │ │ └── u-list-item.vue │ ├── u-list │ │ ├── props.js │ │ └── u-list.vue │ ├── u-loading-icon │ │ ├── props.js │ │ └── u-loading-icon.vue │ ├── u-loading-page │ │ ├── props.js │ │ └── u-loading-page.vue │ ├── u-loadmore │ │ ├── props.js │ │ └── u-loadmore.vue │ ├── u-modal │ │ ├── props.js │ │ └── u-modal.vue │ ├── u-navbar │ │ ├── props.js │ │ └── u-navbar.vue │ ├── u-no-network │ │ ├── props.js │ │ └── u-no-network.vue │ ├── u-notice-bar │ │ ├── props.js │ │ └── u-notice-bar.vue │ ├── u-notify │ │ ├── props.js │ │ └── u-notify.vue │ ├── u-number-box │ │ ├── props.js │ │ └── u-number-box.vue │ ├── u-number-keyboard │ │ ├── props.js │ │ └── u-number-keyboard.vue │ ├── u-overlay │ │ ├── props.js │ │ └── u-overlay.vue │ ├── u-parse │ │ ├── node │ │ │ └── node.vue │ │ ├── parser.js │ │ ├── props.js │ │ └── u-parse.vue │ ├── u-picker-column │ │ ├── props.js │ │ └── u-picker-column.vue │ ├── u-picker │ │ ├── props.js │ │ └── u-picker.vue │ ├── u-popup │ │ ├── props.js │ │ └── u-popup.vue │ ├── u-radio-group │ │ ├── props.js │ │ └── u-radio-group.vue │ ├── u-radio │ │ ├── props.js │ │ └── u-radio.vue │ ├── u-rate │ │ ├── props.js │ │ └── u-rate.vue │ ├── u-read-more │ │ ├── props.js │ │ └── u-read-more.vue │ ├── u-row-notice │ │ ├── props.js │ │ └── u-row-notice.vue │ ├── u-row │ │ ├── props.js │ │ └── u-row.vue │ ├── u-safe-bottom │ │ ├── props.js │ │ └── u-safe-bottom.vue │ ├── u-scroll-list │ │ ├── nvue.js │ │ ├── other.js │ │ ├── props.js │ │ ├── scrollWxs.wxs │ │ └── u-scroll-list.vue │ ├── u-search │ │ ├── props.js │ │ └── u-search.vue │ ├── u-skeleton │ │ ├── props.js │ │ └── u-skeleton.vue │ ├── u-slider │ │ ├── mpother.js │ │ ├── mpwxs.js │ │ ├── mpwxs.wxs │ │ ├── nvue - 副本.js │ │ ├── nvue.js │ │ ├── props.js │ │ └── u-slider.vue │ ├── u-status-bar │ │ ├── props.js │ │ └── u-status-bar.vue │ ├── u-steps-item │ │ ├── props.js │ │ └── u-steps-item.vue │ ├── u-steps │ │ ├── props.js │ │ └── u-steps.vue │ ├── u-sticky │ │ ├── props.js │ │ └── u-sticky.vue │ ├── u-subsection │ │ ├── props.js │ │ └── u-subsection.vue │ ├── u-swipe-action-item │ │ ├── index - backup.wxs │ │ ├── index.wxs │ │ ├── nvue - backup.js │ │ ├── nvue.js │ │ ├── props.js │ │ ├── u-swipe-action-item.vue │ │ └── wxs.js │ ├── u-swipe-action │ │ ├── props.js │ │ └── u-swipe-action.vue │ ├── u-swiper-indicator │ │ ├── props.js │ │ └── u-swiper-indicator.vue │ ├── u-swiper │ │ ├── props.js │ │ └── u-swiper.vue │ ├── u-switch │ │ ├── props.js │ │ └── u-switch.vue │ ├── u-tabbar-item │ │ ├── props.js │ │ └── u-tabbar-item.vue │ ├── u-tabbar │ │ ├── props.js │ │ └── u-tabbar.vue │ ├── u-table │ │ ├── props.js │ │ └── u-table.vue │ ├── u-tabs-item │ │ ├── props.js │ │ └── u-tabs-item.vue │ ├── u-tabs │ │ ├── props.js │ │ └── u-tabs.vue │ ├── u-tag │ │ ├── props.js │ │ └── u-tag.vue │ ├── u-td │ │ ├── props.js │ │ └── u-td.vue │ ├── u-text │ │ ├── props.js │ │ ├── u-text.vue │ │ └── value.js │ ├── u-textarea │ │ ├── props.js │ │ └── u-textarea.vue │ ├── u-toast │ │ └── u-toast.vue │ ├── u-toolbar │ │ ├── props.js │ │ └── u-toolbar.vue │ ├── u-tooltip │ │ ├── clipboard.min.js │ │ ├── props.js │ │ └── u-tooltip.vue │ ├── u-tr │ │ ├── props.js │ │ └── u-tr.vue │ ├── u-transition │ │ ├── nvue.ani-map.js │ │ ├── props.js │ │ ├── transition.js │ │ ├── u-transition.vue │ │ └── vue.ani-style.scss │ ├── u-upload │ │ ├── mixin.js │ │ ├── props.js │ │ ├── u-upload.vue │ │ └── utils.js │ └── uview-ui │ │ └── uview-ui.vue │ ├── index.js │ ├── index.scss │ ├── libs │ ├── config │ │ ├── color.js │ │ ├── config.js │ │ ├── props.js │ │ ├── props │ │ │ ├── actionSheet.js │ │ │ ├── album.js │ │ │ ├── alert.js │ │ │ ├── avatar.js │ │ │ ├── avatarGroup.js │ │ │ ├── backtop.js │ │ │ ├── badge.js │ │ │ ├── button.js │ │ │ ├── calendar.js │ │ │ ├── carKeyboard.js │ │ │ ├── cell.js │ │ │ ├── cellGroup.js │ │ │ ├── checkbox.js │ │ │ ├── checkboxGroup.js │ │ │ ├── circleProgress.js │ │ │ ├── code.js │ │ │ ├── codeInput.js │ │ │ ├── col.js │ │ │ ├── collapse.js │ │ │ ├── collapseItem.js │ │ │ ├── columnNotice.js │ │ │ ├── countDown.js │ │ │ ├── countTo.js │ │ │ ├── datetimePicker.js │ │ │ ├── divider.js │ │ │ ├── empty.js │ │ │ ├── form.js │ │ │ ├── formItem.js │ │ │ ├── gap.js │ │ │ ├── grid.js │ │ │ ├── gridItem.js │ │ │ ├── icon.js │ │ │ ├── image.js │ │ │ ├── indexAnchor.js │ │ │ ├── indexList.js │ │ │ ├── input.js │ │ │ ├── keyboard.js │ │ │ ├── line.js │ │ │ ├── lineProgress.js │ │ │ ├── link.js │ │ │ ├── list.js │ │ │ ├── listItem.js │ │ │ ├── loadingIcon.js │ │ │ ├── loadingPage.js │ │ │ ├── loadmore.js │ │ │ ├── modal.js │ │ │ ├── navbar.js │ │ │ ├── noNetwork.js │ │ │ ├── noticeBar.js │ │ │ ├── notify.js │ │ │ ├── numberBox.js │ │ │ ├── numberKeyboard.js │ │ │ ├── overlay.js │ │ │ ├── parse.js │ │ │ ├── picker.js │ │ │ ├── popup.js │ │ │ ├── radio.js │ │ │ ├── radioGroup.js │ │ │ ├── rate.js │ │ │ ├── readMore.js │ │ │ ├── row.js │ │ │ ├── rowNotice.js │ │ │ ├── scrollList.js │ │ │ ├── search.js │ │ │ ├── section.js │ │ │ ├── skeleton.js │ │ │ ├── slider.js │ │ │ ├── statusBar.js │ │ │ ├── steps.js │ │ │ ├── stepsItem.js │ │ │ ├── sticky.js │ │ │ ├── subsection.js │ │ │ ├── swipeAction.js │ │ │ ├── swipeActionItem.js │ │ │ ├── swiper.js │ │ │ ├── swipterIndicator.js │ │ │ ├── switch.js │ │ │ ├── tabbar.js │ │ │ ├── tabbarItem.js │ │ │ ├── tabs.js │ │ │ ├── tag.js │ │ │ ├── text.js │ │ │ ├── textarea.js │ │ │ ├── toast.js │ │ │ ├── toolbar.js │ │ │ ├── tooltip.js │ │ │ ├── transition.js │ │ │ └── upload.js │ │ └── zIndex.js │ ├── css │ │ ├── color.scss │ │ ├── common.scss │ │ ├── components.scss │ │ ├── flex.scss │ │ ├── h5.scss │ │ ├── mixin.scss │ │ ├── mp.scss │ │ ├── nvue.scss │ │ └── vue.scss │ ├── function │ │ ├── colorGradient.js │ │ ├── debounce.js │ │ ├── digit.js │ │ ├── index.js │ │ ├── platform.js │ │ ├── test.js │ │ └── throttle.js │ ├── luch-request │ │ ├── adapters │ │ │ └── index.js │ │ ├── core │ │ │ ├── InterceptorManager.js │ │ │ ├── Request.js │ │ │ ├── buildFullPath.js │ │ │ ├── defaults.js │ │ │ ├── dispatchRequest.js │ │ │ ├── mergeConfig.js │ │ │ └── settle.js │ │ ├── helpers │ │ │ ├── buildURL.js │ │ │ ├── combineURLs.js │ │ │ └── isAbsoluteURL.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── utils.js │ │ └── utils │ │ │ └── clone.js │ ├── mixin │ │ ├── button.js │ │ ├── mixin.js │ │ ├── mpMixin.js │ │ ├── mpShare.js │ │ ├── openType.js │ │ ├── style.js │ │ └── touch.js │ └── util │ │ ├── async-validator.js │ │ ├── calendar.js │ │ ├── dayjs.js │ │ ├── emitter.js │ │ └── route.js │ ├── package.json │ └── theme.scss ├── unpackage ├── cache │ ├── apk │ │ ├── apkurl │ │ └── cmManifestCache.json │ ├── certdata │ └── wgt │ │ └── __UNI__BF90A6D │ │ ├── __uniappchooselocation.js │ │ ├── __uniapperror.png │ │ ├── __uniappes6.js │ │ ├── __uniappopenlocation.js │ │ ├── __uniapppicker.js │ │ ├── __uniappquill.js │ │ ├── __uniappquillimageresize.js │ │ ├── __uniappscan.js │ │ ├── __uniappsuccess.png │ │ ├── __uniappview.html │ │ ├── app-config-service.js │ │ ├── app-config.js │ │ ├── app-service.js │ │ ├── app-view.js │ │ ├── manifest.json │ │ ├── static │ │ ├── customicons.css │ │ ├── customicons.ttf │ │ ├── icon │ │ │ ├── iconfont.css │ │ │ ├── iconfont.ttf │ │ │ ├── iconfont.woff │ │ │ └── iconfont.woff2 │ │ ├── images │ │ │ ├── close.png │ │ │ ├── head.png │ │ │ ├── icon_home_checked.png │ │ │ ├── icon_home_nochecked.png │ │ │ ├── icon_mine_checked.png │ │ │ ├── icon_mine_nochecked.png │ │ │ ├── icon_shenpi_checked.png │ │ │ ├── icon_shenpi_nochecked.png │ │ │ ├── img.png │ │ │ ├── login_bg.jpg │ │ │ ├── qq.png │ │ │ ├── round.png │ │ │ ├── update-img.png │ │ │ └── wx.png │ │ └── uni.png │ │ ├── uni_modules │ │ └── uni-icons │ │ │ └── components │ │ │ └── uni-icons │ │ │ └── uniicons.ttf │ │ ├── view.css │ │ └── view.umd.min.js ├── debug │ └── .roid.ins └── dist │ ├── build │ ├── .automator │ │ └── app-plus │ │ │ └── .automator.json │ └── app-plus │ │ ├── __uniappchooselocation.js │ │ ├── __uniapperror.png │ │ ├── __uniappes6.js │ │ ├── __uniappopenlocation.js │ │ ├── __uniapppicker.js │ │ ├── __uniappquill.js │ │ ├── __uniappquillimageresize.js │ │ ├── __uniappscan.js │ │ ├── __uniappsuccess.png │ │ ├── __uniappview.html │ │ ├── app-config-service.js │ │ ├── app-config.js │ │ ├── app-service.js │ │ ├── app-view.js │ │ ├── manifest.json │ │ ├── static │ │ ├── customicons.css │ │ ├── customicons.ttf │ │ ├── icon │ │ │ ├── iconfont.css │ │ │ ├── iconfont.ttf │ │ │ ├── iconfont.woff │ │ │ └── iconfont.woff2 │ │ ├── images │ │ │ ├── close.png │ │ │ ├── head.png │ │ │ ├── icon_home_checked.png │ │ │ ├── icon_home_nochecked.png │ │ │ ├── icon_mine_checked.png │ │ │ ├── icon_mine_nochecked.png │ │ │ ├── icon_shenpi_checked.png │ │ │ ├── icon_shenpi_nochecked.png │ │ │ ├── img.png │ │ │ ├── login_bg.jpg │ │ │ ├── qq.png │ │ │ ├── round.png │ │ │ ├── update-img.png │ │ │ └── wx.png │ │ └── uni.png │ │ ├── uni_modules │ │ └── uni-icons │ │ │ └── components │ │ │ └── uni-icons │ │ │ └── uniicons.ttf │ │ ├── view.css │ │ └── view.umd.min.js │ └── dev │ ├── .automator │ ├── app-plus │ │ └── .automator.json │ └── mp-weixin │ │ └── .automator.json │ ├── .sourcemap │ └── mp-weixin │ │ ├── common │ │ ├── main.js.map │ │ ├── runtime.js.map │ │ └── vendor.js.map │ │ ├── pages │ │ ├── 404 │ │ │ └── 404.js.map │ │ ├── home │ │ │ └── home.js.map │ │ ├── login │ │ │ └── login.js.map │ │ ├── mine │ │ │ └── mine.js.map │ │ ├── versionUpdate │ │ │ └── versionUpdate.js.map │ │ └── webView │ │ │ └── webView.js.map │ │ ├── subpages │ │ ├── test.js.map │ │ └── test │ │ │ └── test.js.map │ │ └── uni_modules │ │ ├── uni-icons │ │ └── components │ │ │ └── uni-icons │ │ │ └── uni-icons.js.map │ │ └── uview-ui │ │ └── components │ │ ├── u--form │ │ └── u--form.js.map │ │ ├── u--input │ │ └── u--input.js.map │ │ ├── u--text │ │ └── u--text.js.map │ │ ├── u-album │ │ └── u-album.js.map │ │ ├── u-badge │ │ └── u-badge.js.map │ │ ├── u-button │ │ └── u-button.js.map │ │ ├── u-code │ │ └── u-code.js.map │ │ ├── u-form-item │ │ └── u-form-item.js.map │ │ ├── u-form │ │ └── u-form.js.map │ │ ├── u-icon │ │ └── u-icon.js.map │ │ ├── u-input │ │ └── u-input.js.map │ │ ├── u-line │ │ └── u-line.js.map │ │ ├── u-link │ │ └── u-link.js.map │ │ ├── u-loading-icon │ │ └── u-loading-icon.js.map │ │ ├── u-swiper-indicator │ │ └── u-swiper-indicator.js.map │ │ ├── u-swiper │ │ └── u-swiper.js.map │ │ ├── u-tabs │ │ └── u-tabs.js.map │ │ └── u-text │ │ └── u-text.js.map │ ├── app-plus │ ├── __uniappchooselocation.js │ ├── __uniapperror.png │ ├── __uniappes6.js │ ├── __uniappopenlocation.js │ ├── __uniapppicker.js │ ├── __uniappquill.js │ ├── __uniappquillimageresize.js │ ├── __uniappscan.js │ ├── __uniappsuccess.png │ ├── __uniappview.html │ ├── app-config-service.js │ ├── app-config.js │ ├── app-service.js │ ├── app-view.js │ ├── manifest.json │ ├── static │ │ ├── customicons.css │ │ ├── customicons.ttf │ │ ├── icon │ │ │ ├── iconfont.css │ │ │ ├── iconfont.ttf │ │ │ ├── iconfont.woff │ │ │ └── iconfont.woff2 │ │ ├── images │ │ │ ├── bg1.png │ │ │ ├── bg2.png │ │ │ ├── close.png │ │ │ ├── head.png │ │ │ ├── icon_home_checked.png │ │ │ ├── icon_home_nochecked.png │ │ │ ├── icon_mine_checked.png │ │ │ ├── icon_mine_nochecked.png │ │ │ ├── icon_shenpi_checked.png │ │ │ ├── icon_shenpi_nochecked.png │ │ │ ├── img.png │ │ │ ├── login_bg.jpg │ │ │ ├── qq.png │ │ │ ├── round.png │ │ │ ├── update-img.png │ │ │ └── wx.png │ │ └── uni.png │ ├── uni_modules │ │ └── uni-icons │ │ │ └── components │ │ │ └── uni-icons │ │ │ └── uniicons.ttf │ ├── view.css │ └── view.umd.min.js │ └── mp-weixin │ ├── app.js │ ├── app.json │ ├── app.wxss │ ├── common │ ├── main.js │ ├── main.wxss │ ├── runtime.js │ └── vendor.js │ ├── pages │ ├── 404 │ │ ├── 404.js │ │ ├── 404.json │ │ └── 404.wxml │ ├── home │ │ ├── home.js │ │ ├── home.json │ │ └── home.wxml │ ├── login │ │ ├── login.js │ │ ├── login.json │ │ ├── login.wxml │ │ └── login.wxss │ ├── mine │ │ ├── mine.js │ │ ├── mine.json │ │ ├── mine.wxml │ │ └── mine.wxss │ ├── versionUpdate │ │ ├── versionUpdate.js │ │ ├── versionUpdate.json │ │ ├── versionUpdate.wxml │ │ └── versionUpdate.wxss │ └── webView │ │ ├── webView.js │ │ ├── webView.json │ │ └── webView.wxml │ ├── project.config.json │ ├── project.private.config.json │ ├── static │ ├── customicons.css │ ├── customicons.ttf │ ├── icon │ │ ├── iconfont.css │ │ ├── iconfont.ttf │ │ ├── iconfont.woff │ │ └── iconfont.woff2 │ ├── images │ │ ├── close.png │ │ ├── head.png │ │ ├── icon_home_checked.png │ │ ├── icon_home_nochecked.png │ │ ├── icon_mine_checked.png │ │ ├── icon_mine_nochecked.png │ │ ├── icon_shenpi_checked.png │ │ ├── icon_shenpi_nochecked.png │ │ ├── img.png │ │ ├── login_bg.jpg │ │ ├── qq.png │ │ ├── round.png │ │ ├── update-img.png │ │ └── wx.png │ └── uni.png │ ├── subpages │ ├── test.js │ ├── test.json │ └── test.wxml │ └── uni_modules │ ├── uni-icons │ └── components │ │ └── uni-icons │ │ ├── uni-icons.js │ │ ├── uni-icons.json │ │ ├── uni-icons.wxml │ │ └── uni-icons.wxss │ └── uview-ui │ └── components │ ├── u--form │ ├── u--form.js │ ├── u--form.json │ └── u--form.wxml │ ├── u--input │ ├── u--input.js │ ├── u--input.json │ └── u--input.wxml │ ├── u--text │ ├── u--text.js │ ├── u--text.json │ └── u--text.wxml │ ├── u-album │ ├── u-album.js │ ├── u-album.json │ ├── u-album.wxml │ └── u-album.wxss │ ├── u-badge │ ├── u-badge.js │ ├── u-badge.json │ ├── u-badge.wxml │ └── u-badge.wxss │ ├── u-button │ ├── u-button.js │ ├── u-button.json │ ├── u-button.wxml │ └── u-button.wxss │ ├── u-code │ ├── u-code.js │ ├── u-code.json │ ├── u-code.wxml │ └── u-code.wxss │ ├── u-form-item │ ├── u-form-item.js │ ├── u-form-item.json │ ├── u-form-item.wxml │ └── u-form-item.wxss │ ├── u-form │ ├── u-form.js │ ├── u-form.json │ └── u-form.wxml │ ├── u-icon │ ├── u-icon.js │ ├── u-icon.json │ ├── u-icon.wxml │ └── u-icon.wxss │ ├── u-input │ ├── u-input.js │ ├── u-input.json │ ├── u-input.wxml │ └── u-input.wxss │ ├── u-line │ ├── u-line.js │ ├── u-line.json │ ├── u-line.wxml │ └── u-line.wxss │ ├── u-link │ ├── u-link.js │ ├── u-link.json │ ├── u-link.wxml │ └── u-link.wxss │ ├── u-loading-icon │ ├── u-loading-icon.js │ ├── u-loading-icon.json │ ├── u-loading-icon.wxml │ └── u-loading-icon.wxss │ ├── u-swiper-indicator │ ├── u-swiper-indicator.js │ ├── u-swiper-indicator.json │ ├── u-swiper-indicator.wxml │ └── u-swiper-indicator.wxss │ ├── u-swiper │ ├── u-swiper.js │ ├── u-swiper.json │ ├── u-swiper.wxml │ └── u-swiper.wxss │ ├── u-tabs │ ├── u-tabs.js │ ├── u-tabs.json │ ├── u-tabs.wxml │ └── u-tabs.wxss │ └── u-text │ ├── u-text.js │ ├── u-text.json │ ├── u-text.wxml │ └── u-text.wxss ├── utils ├── app-update-check.js ├── common.js ├── rules.js └── until.js └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- 1 | *.ts linguist-language=Vue 2 | *.vue linguist-language=Vue 3 | *.js linguist-language=Vue 4 | *.css linguist-language=Vue 5 | *.less linguist-language=Vue 6 | *.scss linguist-language=Vue 7 | *.html linguist-language=Vue 8 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Build and Release Folders 2 | bin-debug/ 3 | bin-release/ 4 | [Oo]bj/ 5 | [Bb]in/ 6 | 7 | # Other files and folders 8 | .idea 9 | .settings/ 10 | 11 | # Executables 12 | *.swf 13 | *.air 14 | *.ipa 15 | *.apk 16 | 17 | # Project files, i.e. `.project`, `.actionScriptProperties` and `.flexProperties` 18 | # should NOT be excluded as they contain compiler settings and other important 19 | # information for Eclipse / Flash Builder. 20 | -------------------------------------------------------------------------------- /apis/api/login.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author: Ygm 3 | * @Date: 2022-09-18 21:43:24 4 | * @LastEditors: Ygm 5 | * @LastEditTime: 2023-02-07 10:33:54 6 | * @Description: 登录相关接口 7 | */ 8 | import http from "@/http/request.js" 9 | 10 | // 登录 11 | const login = (data = {}) => { 12 | return http.post('/pet', data, { 13 | isloading: true 14 | }) 15 | } 16 | 17 | export default { 18 | login 19 | } 20 | -------------------------------------------------------------------------------- /apis/index.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author: Ygm 3 | * @Date: 2022-09-18 21:43:24 4 | * @LastEditors: Ygm 5 | * @LastEditTime: 2023-02-07 10:33:54 6 | * @Description: 正则匹配api文件夹下的所有js文件后做的一统一暴露 7 | */ 8 | let api = {}; 9 | const context = require.context("./api", true, /\.js$/); 10 | 11 | context.keys().forEach((e) => { 12 | api = { 13 | ...api, 14 | ...context(e).default 15 | }; 16 | }); 17 | 18 | export default { 19 | ...api 20 | } 21 | -------------------------------------------------------------------------------- /http/config.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author: Ygm 3 | * @Date: 2022-09-18 21:43:24 4 | * @LastEditors: Ygm 5 | * @LastEditTime: 2023-02-07 10:33:54 6 | * @Description: 基本配置 7 | */ 8 | const IS_DEVELOPMENT = process.env.NODE_ENV === 'development' ? true : false; // 判断是否为生成环境 9 | 10 | export default { 11 | isExternalJump: false, // 其他平台跳转 12 | tabList: [{ name: '账号登录' }, { name: '手机号登录' }],// 登录方式 13 | baseURL: IS_DEVELOPMENT ? 'http://127.0.0.1:4523/m1/939424-0-default' : 'XXX', // 请求地址 14 | }; 15 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import App from './App' 3 | 4 | // 引入uview-ui 5 | import uView from '@/uni_modules/uview-ui' 6 | Vue.use(uView) 7 | // 如此配置即可 8 | uni.$u.config.unit = 'rpx' 9 | // 挂载config配置项 10 | import config from "./http/config.js" 11 | Vue.prototype.$config = config; 12 | // 挂载api 13 | import api from "./apis" 14 | Vue.prototype.$api = api; 15 | 16 | Vue.config.productionTip = false 17 | 18 | App.mpType = 'app' 19 | 20 | const app = new Vue({ 21 | ...App 22 | }) 23 | app.$mount() 24 | -------------------------------------------------------------------------------- /nativeplugins/Tuoyun-OpenIMSDK/android/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /nativeplugins/Tuoyun-OpenIMSDK/android/.idea/android.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /nativeplugins/Tuoyun-OpenIMSDK/android/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /nativeplugins/Tuoyun-OpenIMSDK/android/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /nativeplugins/Tuoyun-OpenIMSDK/android/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /nativeplugins/Tuoyun-OpenIMSDK/android/openIM-release.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/nativeplugins/Tuoyun-OpenIMSDK/android/openIM-release.aar -------------------------------------------------------------------------------- /nativeplugins/Tuoyun-OpenIMSDK/android/open_im_sdk.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/nativeplugins/Tuoyun-OpenIMSDK/android/open_im_sdk.aar -------------------------------------------------------------------------------- /nativeplugins/Tuoyun-OpenIMSDK/ios/OpenIMCore.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /nativeplugins/Tuoyun-OpenIMSDK/ios/OpenIMCore.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /nativeplugins/Tuoyun-OpenIMSDK/ios/OpenIMCore.framework/OpenIMCore: -------------------------------------------------------------------------------- 1 | Versions/Current/OpenIMCore -------------------------------------------------------------------------------- /nativeplugins/Tuoyun-OpenIMSDK/ios/OpenIMCore.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /nativeplugins/Tuoyun-OpenIMSDK/ios/OpenIMCore.framework/Versions/A/Headers/OpenIMCore.h: -------------------------------------------------------------------------------- 1 | 2 | // Objective-C API for talking to the following Go packages 3 | // 4 | // open_im_sdk/open_im_sdk 5 | // open_im_sdk/open_im_sdk_callback 6 | // 7 | // File is generated by gomobile bind. Do not edit. 8 | #ifndef __OpenIMCore_FRAMEWORK_H__ 9 | #define __OpenIMCore_FRAMEWORK_H__ 10 | 11 | #include "Open_im_sdk.objc.h" 12 | #include "Open_im_sdk_callback.objc.h" 13 | #include "Universe.objc.h" 14 | 15 | #endif 16 | -------------------------------------------------------------------------------- /nativeplugins/Tuoyun-OpenIMSDK/ios/OpenIMCore.framework/Versions/A/Headers/Universe.objc.h: -------------------------------------------------------------------------------- 1 | // Objective-C API for talking to Go package. 2 | // gobind -lang=objc 3 | // 4 | // File is generated by gobind. Do not edit. 5 | 6 | #ifndef __Universe_H__ 7 | #define __Universe_H__ 8 | 9 | @import Foundation; 10 | #include "ref.h" 11 | 12 | @protocol Universeerror; 13 | @class Universeerror; 14 | 15 | @protocol Universeerror 16 | - (NSString* _Nonnull)error; 17 | @end 18 | 19 | @class Universeerror; 20 | 21 | @interface Universeerror : NSError { 22 | } 23 | @property(strong, readonly) _Nonnull id _ref; 24 | 25 | - (nonnull instancetype)initWithRef:(_Nonnull id)ref; 26 | - (NSString* _Nonnull)error; 27 | @end 28 | 29 | #endif 30 | -------------------------------------------------------------------------------- /nativeplugins/Tuoyun-OpenIMSDK/ios/OpenIMCore.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module "OpenIMCore" { 2 | header "ref.h" 3 | header "Open_im_sdk.objc.h" 4 | header "Open_im_sdk_callback.objc.h" 5 | header "Universe.objc.h" 6 | header "OpenIMCore.h" 7 | 8 | export * 9 | } -------------------------------------------------------------------------------- /nativeplugins/Tuoyun-OpenIMSDK/ios/OpenIMCore.framework/Versions/A/OpenIMCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/nativeplugins/Tuoyun-OpenIMSDK/ios/OpenIMCore.framework/Versions/A/OpenIMCore -------------------------------------------------------------------------------- /nativeplugins/Tuoyun-OpenIMSDK/ios/OpenIMCore.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /nativeplugins/Tuoyun-OpenIMSDK/ios/OpenIMCore.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /nativeplugins/Tuoyun-OpenIMSDK/ios/OpenIMUniPlugin.framework/Headers/CallbackProxy.h: -------------------------------------------------------------------------------- 1 | // 2 | // CallbackProxy.h 3 | // OpenIMUniPlugin 4 | // 5 | // Created by Snow on 2021/6/24. 6 | // 7 | 8 | #import 9 | #import "DCUniModule.h" 10 | @import OpenIMCore; 11 | 12 | NS_ASSUME_NONNULL_BEGIN 13 | 14 | @interface CallbackProxy : NSObject 15 | 16 | - (id)initWithCallback:(UniModuleKeepAliveCallback)callback; 17 | 18 | @end 19 | 20 | NS_ASSUME_NONNULL_END 21 | -------------------------------------------------------------------------------- /nativeplugins/Tuoyun-OpenIMSDK/ios/OpenIMUniPlugin.framework/Headers/OpenIMUniPlugin-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | #import "CallbackProxy.h" 14 | #import "OpenIMModule.h" 15 | #import "SendMessageCallbackProxy.h" 16 | #import "UploadFileCallbackProxy.h" 17 | 18 | FOUNDATION_EXPORT double OpenIMUniPluginVersionNumber; 19 | FOUNDATION_EXPORT const unsigned char OpenIMUniPluginVersionString[]; 20 | 21 | -------------------------------------------------------------------------------- /nativeplugins/Tuoyun-OpenIMSDK/ios/OpenIMUniPlugin.framework/Headers/SendMessageCallbackProxy.h: -------------------------------------------------------------------------------- 1 | // 2 | // SendMessageCallbackProxy.h 3 | // OpenIMUniPlugin 4 | // 5 | // Created by Snow on 2021/6/24. 6 | // 7 | 8 | #import 9 | #import "DCUniModule.h" 10 | #import "OpenIMModule.h" 11 | @import OpenIMCore; 12 | 13 | NS_ASSUME_NONNULL_BEGIN 14 | 15 | @interface SendMessageCallbackProxy : NSObject 16 | 17 | - (id)initWithMessage:(NSString *)msg module:(OpenIMModule *)module; 18 | 19 | @end 20 | 21 | NS_ASSUME_NONNULL_END 22 | -------------------------------------------------------------------------------- /nativeplugins/Tuoyun-OpenIMSDK/ios/OpenIMUniPlugin.framework/Headers/UploadFileCallbackProxy.h: -------------------------------------------------------------------------------- 1 | // 2 | // UploadFileCallbackProxy.h 3 | // OpenIMUniPlugin 4 | // 5 | // Created by Admin on 2022/6/14. 6 | // 7 | 8 | #import 9 | #import "DCUniModule.h" 10 | #import "OpenIMModule.h" 11 | @import OpenIMCore; 12 | 13 | NS_ASSUME_NONNULL_BEGIN 14 | 15 | @interface UploadFileCallbackProxy : NSObject 16 | 17 | - (id)initWithOpid:(NSString *)opid module:(OpenIMModule *)module; 18 | 19 | @end 20 | 21 | NS_ASSUME_NONNULL_END 22 | -------------------------------------------------------------------------------- /nativeplugins/Tuoyun-OpenIMSDK/ios/OpenIMUniPlugin.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/nativeplugins/Tuoyun-OpenIMSDK/ios/OpenIMUniPlugin.framework/Info.plist -------------------------------------------------------------------------------- /nativeplugins/Tuoyun-OpenIMSDK/ios/OpenIMUniPlugin.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OpenIMUniPlugin { 2 | umbrella header "OpenIMUniPlugin-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /nativeplugins/Tuoyun-OpenIMSDK/ios/OpenIMUniPlugin.framework/OpenIMUniPlugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/nativeplugins/Tuoyun-OpenIMSDK/ios/OpenIMUniPlugin.framework/OpenIMUniPlugin -------------------------------------------------------------------------------- /nativeplugins/Tuoyun-OpenIMSDK/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "OpenIMSDK", 3 | "id": "Tuoyun-OpenIMSDK", 4 | "version": "2.3.0", 5 | "description": "IM", 6 | "_dp_type": "nativeplugin", 7 | "_dp_nativeplugin": { 8 | "android": { 9 | "plugins": [ 10 | { 11 | "type": "module", 12 | "name": "Tuoyun-OpenIMSDK", 13 | "class": "com.example.openim.OpenIMSDK" 14 | } 15 | ], 16 | "integrateType": "aar" 17 | }, 18 | "ios": { 19 | "plugins": [ 20 | { 21 | "type": "module", 22 | "name": "Tuoyun-OpenIMSDK", 23 | "class": "OpenIMModule" 24 | } 25 | ], 26 | "integrateType": "framework", 27 | "validArchitectures": [ 28 | "arm64" 29 | ] 30 | } 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /pages/404/404.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 19 | 20 | 23 | -------------------------------------------------------------------------------- /pages/webView/webView.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /static/2023-02-033338.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/static/2023-02-033338.png -------------------------------------------------------------------------------- /static/2023-02-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/static/2023-02-08.png -------------------------------------------------------------------------------- /static/2023-02-08222.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/static/2023-02-08222.png -------------------------------------------------------------------------------- /static/customicons.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: "customicons"; /* Project id 2878519 */ 3 | src:url('/static/customicons.ttf') format('truetype'); 4 | } 5 | 6 | .customicons { 7 | font-family: "customicons" !important; 8 | } 9 | 10 | .youxi:before { 11 | content: "\e60e"; 12 | } 13 | 14 | .wenjian:before { 15 | content: "\e60f"; 16 | } 17 | 18 | .zhuanfa:before { 19 | content: "\e610"; 20 | } 21 | -------------------------------------------------------------------------------- /static/customicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/static/customicons.ttf -------------------------------------------------------------------------------- /static/icon/iconfont.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: "iconfont"; /* Project id 3885034 */ 3 | src: url('/static/icon/iconfont.woff2?t=1675820195472') format('woff2'), 4 | url('/static/icon/iconfont.woff?t=1675820195472') format('woff'), 5 | url('/static/icon/iconfont.ttf?t=1675820195472') format('truetype'); 6 | } 7 | 8 | .iconfont { 9 | font-family: "iconfont" !important; 10 | font-size: 16px; 11 | font-style: normal; 12 | -webkit-font-smoothing: antialiased; 13 | -moz-osx-font-smoothing: grayscale; 14 | } 15 | 16 | .icon-open:before { 17 | content: "\e668"; 18 | } 19 | 20 | .icon-close:before { 21 | content: "\e796"; 22 | } 23 | 24 | -------------------------------------------------------------------------------- /static/icon/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/static/icon/iconfont.ttf -------------------------------------------------------------------------------- /static/icon/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/static/icon/iconfont.woff -------------------------------------------------------------------------------- /static/icon/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/static/icon/iconfont.woff2 -------------------------------------------------------------------------------- /static/images/app版本下载.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/static/images/app版本下载.png -------------------------------------------------------------------------------- /static/images/app版本升级.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/static/images/app版本升级.png -------------------------------------------------------------------------------- /static/images/bg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/static/images/bg1.png -------------------------------------------------------------------------------- /static/images/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/static/images/bg2.png -------------------------------------------------------------------------------- /static/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/static/images/close.png -------------------------------------------------------------------------------- /static/images/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/static/images/head.png -------------------------------------------------------------------------------- /static/images/icon_home_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/static/images/icon_home_checked.png -------------------------------------------------------------------------------- /static/images/icon_home_nochecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/static/images/icon_home_nochecked.png -------------------------------------------------------------------------------- /static/images/icon_mine_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/static/images/icon_mine_checked.png -------------------------------------------------------------------------------- /static/images/icon_mine_nochecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/static/images/icon_mine_nochecked.png -------------------------------------------------------------------------------- /static/images/icon_shenpi_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/static/images/icon_shenpi_checked.png -------------------------------------------------------------------------------- /static/images/icon_shenpi_nochecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/static/images/icon_shenpi_nochecked.png -------------------------------------------------------------------------------- /static/images/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/static/images/img.png -------------------------------------------------------------------------------- /static/images/login_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/static/images/login_bg.jpg -------------------------------------------------------------------------------- /static/images/qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/static/images/qq.png -------------------------------------------------------------------------------- /static/images/round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/static/images/round.png -------------------------------------------------------------------------------- /static/images/update-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/static/images/update-img.png -------------------------------------------------------------------------------- /static/images/wx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/static/images/wx.png -------------------------------------------------------------------------------- /static/images/引导页.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/static/images/引导页.png -------------------------------------------------------------------------------- /static/images/手机登录.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/static/images/手机登录.png -------------------------------------------------------------------------------- /static/images/登录页.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/static/images/登录页.png -------------------------------------------------------------------------------- /static/images/首页骨架屏.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/static/images/首页骨架屏.png -------------------------------------------------------------------------------- /static/uni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/static/uni.png -------------------------------------------------------------------------------- /subpages/test.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /uni.scss: -------------------------------------------------------------------------------- 1 | @import '@/uni_modules/uview-ui/theme.scss'; // uview-ui样式 2 | @import '@/uni_modules/uni-scss/variables.scss'; 3 | -------------------------------------------------------------------------------- /uni_modules/uni-badge/readme.md: -------------------------------------------------------------------------------- 1 | ## Badge 数字角标 2 | > **组件名:uni-badge** 3 | > 代码块: `uBadge` 4 | 5 | 数字角标一般和其它控件(列表、9宫格等)配合使用,用于进行数量提示,默认为实心灰色背景, 6 | 7 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-badge) 8 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 9 | 10 | 11 | -------------------------------------------------------------------------------- /uni_modules/uni-breadcrumb/changelog.md: -------------------------------------------------------------------------------- 1 | ## 0.1.2(2022-06-08) 2 | - 修复 微信小程序 separator 不显示问题 3 | ## 0.1.1(2022-06-02) 4 | - 新增 支持 uni.scss 修改颜色 5 | ## 0.1.0(2022-04-21) 6 | - 初始化 7 | -------------------------------------------------------------------------------- /uni_modules/uni-calendar/changelog.md: -------------------------------------------------------------------------------- 1 | ## 1.4.7(2022-09-16) 2 | - 可以使用 uni-scss 控制主题色 3 | ## 1.4.6(2022-09-08) 4 | - fix: 表头年月切换,导致改变当前日期为选择月1号,且未触发change事件 5 | ## 1.4.5(2022-02-25) 6 | - 修复 条件编译 nvue 不支持的 css 样式 7 | ## 1.4.4(2022-02-25) 8 | - 修复 条件编译 nvue 不支持的 css 样式 9 | ## 1.4.3(2021-09-22) 10 | - 修复 startDate、 endDate 属性失效的 bug 11 | ## 1.4.2(2021-08-24) 12 | - 新增 支持国际化 13 | ## 1.4.1(2021-08-05) 14 | - 修复 弹出层被 tabbar 遮盖 bug 15 | ## 1.4.0(2021-07-30) 16 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834) 17 | ## 1.3.16(2021-05-12) 18 | - 新增 组件示例地址 19 | ## 1.3.15(2021-02-04) 20 | - 调整为uni_modules目录规范 21 | -------------------------------------------------------------------------------- /uni_modules/uni-calendar/components/uni-calendar/i18n/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "uni-calender.ok": "ok", 3 | "uni-calender.cancel": "cancel", 4 | "uni-calender.today": "today", 5 | "uni-calender.MON": "MON", 6 | "uni-calender.TUE": "TUE", 7 | "uni-calender.WED": "WED", 8 | "uni-calender.THU": "THU", 9 | "uni-calender.FRI": "FRI", 10 | "uni-calender.SAT": "SAT", 11 | "uni-calender.SUN": "SUN" 12 | } 13 | -------------------------------------------------------------------------------- /uni_modules/uni-calendar/components/uni-calendar/i18n/index.js: -------------------------------------------------------------------------------- 1 | import en from './en.json' 2 | import zhHans from './zh-Hans.json' 3 | import zhHant from './zh-Hant.json' 4 | export default { 5 | en, 6 | 'zh-Hans': zhHans, 7 | 'zh-Hant': zhHant 8 | } 9 | -------------------------------------------------------------------------------- /uni_modules/uni-calendar/components/uni-calendar/i18n/zh-Hans.json: -------------------------------------------------------------------------------- 1 | { 2 | "uni-calender.ok": "确定", 3 | "uni-calender.cancel": "取消", 4 | "uni-calender.today": "今日", 5 | "uni-calender.SUN": "日", 6 | "uni-calender.MON": "一", 7 | "uni-calender.TUE": "二", 8 | "uni-calender.WED": "三", 9 | "uni-calender.THU": "四", 10 | "uni-calender.FRI": "五", 11 | "uni-calender.SAT": "六" 12 | } 13 | -------------------------------------------------------------------------------- /uni_modules/uni-calendar/components/uni-calendar/i18n/zh-Hant.json: -------------------------------------------------------------------------------- 1 | { 2 | "uni-calender.ok": "確定", 3 | "uni-calender.cancel": "取消", 4 | "uni-calender.today": "今日", 5 | "uni-calender.SUN": "日", 6 | "uni-calender.MON": "一", 7 | "uni-calender.TUE": "二", 8 | "uni-calender.WED": "三", 9 | "uni-calender.THU": "四", 10 | "uni-calender.FRI": "五", 11 | "uni-calender.SAT": "六" 12 | } 13 | -------------------------------------------------------------------------------- /uni_modules/uni-card/readme.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## Card 卡片 4 | > **组件名:uni-card** 5 | > 代码块: `uCard` 6 | 7 | 卡片视图组件。 8 | 9 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-card) 10 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 11 | 12 | 13 | -------------------------------------------------------------------------------- /uni_modules/uni-collapse/readme.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## Collapse 折叠面板 4 | > **组件名:uni-collapse** 5 | > 代码块: `uCollapse` 6 | > 关联组件:`uni-collapse-item`、`uni-icons`。 7 | 8 | 9 | 折叠面板用来折叠/显示过长的内容或者是列表。通常是在多内容分类项使用,折叠不重要的内容,显示重要内容。点击可以展开折叠部分。 10 | 11 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-collapse) 12 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 -------------------------------------------------------------------------------- /uni_modules/uni-combox/changelog.md: -------------------------------------------------------------------------------- 1 | ## 1.0.1(2021-11-23) 2 | - 优化 label、label-width 属性 3 | ## 1.0.0(2021-11-19) 4 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource) 5 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-combox](https://uniapp.dcloud.io/component/uniui/uni-combox) 6 | ## 0.1.0(2021-07-30) 7 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834) 8 | ## 0.0.6(2021-05-12) 9 | - 新增 组件示例地址 10 | ## 0.0.5(2021-04-21) 11 | - 优化 添加依赖 uni-icons, 导入后自动下载依赖 12 | ## 0.0.4(2021-02-05) 13 | - 优化 组件引用关系,通过uni_modules引用组件 14 | ## 0.0.3(2021-02-04) 15 | - 调整为uni_modules目录规范 16 | -------------------------------------------------------------------------------- /uni_modules/uni-combox/readme.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## Combox 组合框 4 | > **组件名:uni-combox** 5 | > 代码块: `uCombox` 6 | 7 | 8 | 组合框组件。 9 | 10 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-combox) 11 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 -------------------------------------------------------------------------------- /uni_modules/uni-countdown/components/uni-countdown/i18n/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "uni-countdown.day": "day", 3 | "uni-countdown.h": "h", 4 | "uni-countdown.m": "m", 5 | "uni-countdown.s": "s" 6 | } 7 | -------------------------------------------------------------------------------- /uni_modules/uni-countdown/components/uni-countdown/i18n/index.js: -------------------------------------------------------------------------------- 1 | import en from './en.json' 2 | import zhHans from './zh-Hans.json' 3 | import zhHant from './zh-Hant.json' 4 | export default { 5 | en, 6 | 'zh-Hans': zhHans, 7 | 'zh-Hant': zhHant 8 | } 9 | -------------------------------------------------------------------------------- /uni_modules/uni-countdown/components/uni-countdown/i18n/zh-Hans.json: -------------------------------------------------------------------------------- 1 | { 2 | "uni-countdown.day": "天", 3 | "uni-countdown.h": "时", 4 | "uni-countdown.m": "分", 5 | "uni-countdown.s": "秒" 6 | } 7 | -------------------------------------------------------------------------------- /uni_modules/uni-countdown/components/uni-countdown/i18n/zh-Hant.json: -------------------------------------------------------------------------------- 1 | { 2 | "uni-countdown.day": "天", 3 | "uni-countdown.h": "時", 4 | "uni-countdown.m": "分", 5 | "uni-countdown.s": "秒" 6 | } 7 | -------------------------------------------------------------------------------- /uni_modules/uni-countdown/readme.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## CountDown 倒计时 4 | > **组件名:uni-countdown** 5 | > 代码块: `uCountDown` 6 | 7 | 倒计时组件。 8 | 9 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-countdown) 10 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 -------------------------------------------------------------------------------- /uni_modules/uni-data-checkbox/readme.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## DataCheckbox 数据驱动的单选复选框 4 | > **组件名:uni-data-checkbox** 5 | > 代码块: `uDataCheckbox` 6 | 7 | 8 | 本组件是基于uni-app基础组件checkbox的封装。本组件要解决问题包括: 9 | 10 | 1. 数据绑定型组件:给本组件绑定一个data,会自动渲染一组候选内容。再以往,开发者需要编写不少代码实现类似功能 11 | 2. 自动的表单校验:组件绑定了data,且符合[uni-forms](https://ext.dcloud.net.cn/plugin?id=2773)组件的表单校验规范,搭配使用会自动实现表单校验 12 | 3. 本组件合并了单选多选 13 | 4. 本组件有若干风格选择,如普通的单选多选框、并列button风格、tag风格。开发者可以快速选择需要的风格。但作为一个封装组件,样式代码虽然不用自己写了,却会牺牲一定的样式自定义性 14 | 15 | 在uniCloud开发中,`DB Schema`中配置了enum枚举等类型后,在web控制台的[自动生成表单](https://uniapp.dcloud.io/uniCloud/schema?id=autocode)功能中,会自动生成``uni-data-checkbox``组件并绑定好data 16 | 17 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-data-checkbox) 18 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 -------------------------------------------------------------------------------- /uni_modules/uni-data-select/changelog.md: -------------------------------------------------------------------------------- 1 | ## 0.1.9(2022-09-05) 2 | - 修复 微信小程序下拉框出现后选择会点击到蒙板后面的输入框 3 | ## 0.1.8(2022-08-29) 4 | - 修复 点击的位置不准确 5 | ## 0.1.7(2022-08-12) 6 | - 新增 支持 disabled 属性 7 | ## 0.1.6(2022-07-06) 8 | - 修复 pc端宽度异常的bug 9 | ## 0.1.5 10 | - 修复 pc端宽度异常的bug 11 | ## 0.1.4(2022-07-05) 12 | - 优化 显示样式 13 | ## 0.1.3(2022-06-02) 14 | - 修复 localdata 赋值不生效的 bug 15 | - 新增 支持 uni.scss 修改颜色 16 | - 新增 支持选项禁用(数据选项设置 disabled: true 即禁用) 17 | ## 0.1.2(2022-05-08) 18 | - 修复 当 value 为 0 时选择不生效的 bug 19 | ## 0.1.1(2022-05-07) 20 | - 新增 记住上次的选项(仅 collection 存在时有效) 21 | ## 0.1.0(2022-04-22) 22 | - 初始化 23 | -------------------------------------------------------------------------------- /uni_modules/uni-data-select/readme.md: -------------------------------------------------------------------------------- 1 | ## DataSelect 下拉框选择器 2 | > **组件名:uni-data-select** 3 | > 代码块: `uDataSelect` 4 | 5 | 当选项过多时,使用下拉菜单展示并选择内容 6 | 7 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-data-select) 8 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 9 | -------------------------------------------------------------------------------- /uni_modules/uni-dateformat/changelog.md: -------------------------------------------------------------------------------- 1 | ## 1.0.0(2021-11-19) 2 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource) 3 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-dateformat](https://uniapp.dcloud.io/component/uniui/uni-dateformat) 4 | ## 0.0.5(2021-07-08) 5 | - 调整 默认时间不再是当前时间,而是显示'-'字符 6 | ## 0.0.4(2021-05-12) 7 | - 新增 组件示例地址 8 | ## 0.0.3(2021-02-04) 9 | - 调整为uni_modules目录规范 10 | - 修复 iOS 平台日期格式化出错的问题 11 | -------------------------------------------------------------------------------- /uni_modules/uni-dateformat/readme.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ### DateFormat 日期格式化 4 | > **组件名:uni-dateformat** 5 | > 代码块: `uDateformat` 6 | 7 | 8 | 日期格式化组件。 9 | 10 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-dateformat) 11 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 -------------------------------------------------------------------------------- /uni_modules/uni-datetime-picker/components/uni-datetime-picker/i18n/index.js: -------------------------------------------------------------------------------- 1 | import en from './en.json' 2 | import zhHans from './zh-Hans.json' 3 | import zhHant from './zh-Hant.json' 4 | export default { 5 | en, 6 | 'zh-Hans': zhHans, 7 | 'zh-Hant': zhHant 8 | } 9 | -------------------------------------------------------------------------------- /uni_modules/uni-datetime-picker/components/uni-datetime-picker/i18n/zh-Hans.json: -------------------------------------------------------------------------------- 1 | { 2 | "uni-datetime-picker.selectDate": "选择日期", 3 | "uni-datetime-picker.selectTime": "选择时间", 4 | "uni-datetime-picker.selectDateTime": "选择日期时间", 5 | "uni-datetime-picker.startDate": "开始日期", 6 | "uni-datetime-picker.endDate": "结束日期", 7 | "uni-datetime-picker.startTime": "开始时间", 8 | "uni-datetime-picker.endTime": "结束时间", 9 | "uni-datetime-picker.ok": "确定", 10 | "uni-datetime-picker.clear": "清除", 11 | "uni-datetime-picker.cancel": "取消", 12 | "uni-datetime-picker.year": "年", 13 | "uni-datetime-picker.month": "月", 14 | "uni-calender.SUN": "日", 15 | "uni-calender.MON": "一", 16 | "uni-calender.TUE": "二", 17 | "uni-calender.WED": "三", 18 | "uni-calender.THU": "四", 19 | "uni-calender.FRI": "五", 20 | "uni-calender.SAT": "六", 21 | "uni-calender.confirm": "确认" 22 | } -------------------------------------------------------------------------------- /uni_modules/uni-datetime-picker/readme.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | > `重要通知:组件升级更新 2.0.0 后,支持日期+时间范围选择,组件 ui 将使用日历选择日期,ui 变化较大,同时支持 PC 和 移动端。此版本不向后兼容,不再支持单独的时间选择(type=time)及相关的 hide-second 属性(时间选可使用内置组件 picker)。若仍需使用旧版本,可在插件市场下载*非uni_modules版本*,旧版本将不再维护` 4 | 5 | ## DatetimePicker 时间选择器 6 | 7 | > **组件名:uni-datetime-picker** 8 | > 代码块: `uDatetimePicker` 9 | 10 | 11 | 该组件的优势是,支持**时间戳**输入和输出(起始时间、终止时间也支持时间戳),可**同时选择**日期和时间。 12 | 13 | 若只是需要单独选择日期和时间,不需要时间戳输入和输出,可使用原生的 picker 组件。 14 | 15 | **_点击 picker 默认值规则:_** 16 | 17 | - 若设置初始值 value, 会显示在 picker 显示框中 18 | - 若无初始值 value,则初始值 value 为当前本地时间 Date.now(), 但不会显示在 picker 显示框中 19 | 20 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-datetime-picker) 21 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 -------------------------------------------------------------------------------- /uni_modules/uni-drawer/changelog.md: -------------------------------------------------------------------------------- 1 | ## 1.2.1(2021-11-22) 2 | - 修复 vue3中个别scss变量无法找到的问题 3 | ## 1.2.0(2021-11-19) 4 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource) 5 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-drawer](https://uniapp.dcloud.io/component/uniui/uni-drawer) 6 | ## 1.1.1(2021-07-30) 7 | - 优化 vue3下事件警告的问题 8 | ## 1.1.0(2021-07-13) 9 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834) 10 | ## 1.0.7(2021-05-12) 11 | - 新增 组件示例地址 12 | ## 1.0.6(2021-02-04) 13 | - 调整为uni_modules目录规范 14 | -------------------------------------------------------------------------------- /uni_modules/uni-drawer/readme.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## Drawer 抽屉 4 | > **组件名:uni-drawer** 5 | > 代码块: `uDrawer` 6 | 7 | 抽屉侧滑菜单。 8 | 9 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-drawer) 10 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 -------------------------------------------------------------------------------- /uni_modules/uni-easyinput/readme.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ### Easyinput 增强输入框 4 | > **组件名:uni-easyinput** 5 | > 代码块: `uEasyinput` 6 | 7 | 8 | easyinput 组件是对原生input组件的增强 ,是专门为配合表单组件[uni-forms](https://ext.dcloud.net.cn/plugin?id=2773)而设计的,easyinput 内置了边框,图标等,同时包含 input 所有功能 9 | 10 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-easyinput) 11 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 -------------------------------------------------------------------------------- /uni_modules/uni-fab/readme.md: -------------------------------------------------------------------------------- 1 | ## Fab 悬浮按钮 2 | > **组件名:uni-fab** 3 | > 代码块: `uFab` 4 | 5 | 6 | 点击可展开一个图形按钮菜单 7 | 8 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-fab) 9 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 -------------------------------------------------------------------------------- /uni_modules/uni-fav/changelog.md: -------------------------------------------------------------------------------- 1 | ## 1.2.1(2022-05-30) 2 | - 新增 stat 属性 ,是否开启uni统计功能 3 | ## 1.2.0(2021-11-19) 4 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource) 5 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-fav](https://uniapp.dcloud.io/component/uniui/uni-fav) 6 | ## 1.1.1(2021-08-24) 7 | - 新增 支持国际化 8 | ## 1.1.0(2021-07-13) 9 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834) 10 | ## 1.0.6(2021-05-12) 11 | - 新增 组件示例地址 12 | ## 1.0.5(2021-04-21) 13 | - 优化 添加依赖 uni-icons, 导入后自动下载依赖 14 | ## 1.0.4(2021-02-05) 15 | - 优化 组件引用关系,通过uni_modules引用组件 16 | ## 1.0.3(2021-02-05) 17 | - 优化 组件引用关系,通过uni_modules引用组件 18 | ## 1.0.2(2021-02-05) 19 | - 调整为uni_modules目录规范 20 | -------------------------------------------------------------------------------- /uni_modules/uni-fav/components/uni-fav/i18n/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "uni-fav.collect": "collect", 3 | "uni-fav.collected": "collected" 4 | } 5 | -------------------------------------------------------------------------------- /uni_modules/uni-fav/components/uni-fav/i18n/index.js: -------------------------------------------------------------------------------- 1 | import en from './en.json' 2 | import zhHans from './zh-Hans.json' 3 | import zhHant from './zh-Hant.json' 4 | export default { 5 | en, 6 | 'zh-Hans': zhHans, 7 | 'zh-Hant': zhHant 8 | } 9 | -------------------------------------------------------------------------------- /uni_modules/uni-fav/components/uni-fav/i18n/zh-Hans.json: -------------------------------------------------------------------------------- 1 | { 2 | "uni-fav.collect": "收藏", 3 | "uni-fav.collected": "已收藏" 4 | } 5 | -------------------------------------------------------------------------------- /uni_modules/uni-fav/components/uni-fav/i18n/zh-Hant.json: -------------------------------------------------------------------------------- 1 | { 2 | "uni-fav.collect": "收藏", 3 | "uni-fav.collected": "已收藏" 4 | } 5 | -------------------------------------------------------------------------------- /uni_modules/uni-fav/readme.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## Fav 收藏按钮 4 | > **组件名:uni-fav** 5 | > 代码块: `uFav` 6 | 7 | 用于收藏功能,可点击切换选中、不选中的状态。 8 | 9 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-fav) 10 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 -------------------------------------------------------------------------------- /uni_modules/uni-file-picker/readme.md: -------------------------------------------------------------------------------- 1 | 2 | ## FilePicker 文件选择上传 3 | 4 | > **组件名:uni-file-picker** 5 | > 代码块: `uFilePicker` 6 | 7 | 8 | 文件选择上传组件,可以选择图片、视频等任意文件并上传到当前绑定的服务空间 9 | 10 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-file-picker) 11 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 -------------------------------------------------------------------------------- /uni_modules/uni-goods-nav/changelog.md: -------------------------------------------------------------------------------- 1 | ## 1.2.1(2022-05-30) 2 | - 新增 stat属性,是否开启uni统计功能 3 | ## 1.2.0(2021-11-19) 4 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource) 5 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-goods-nav](https://uniapp.dcloud.io/component/uniui/uni-goods-nav) 6 | ## 1.1.1(2021-08-24) 7 | - 新增 支持国际化 8 | ## 1.1.0(2021-07-13) 9 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834) 10 | ## 1.0.7(2021-05-12) 11 | - 新增 组件示例地址 12 | ## 1.0.6(2021-04-21) 13 | - 优化 添加依赖 uni-icons, 导入后自动下载依赖 14 | ## 1.0.5(2021-02-05) 15 | - 优化 组件引用关系,通过uni_modules引用组件 16 | 17 | ## 1.0.4(2021-02-05) 18 | - 调整为uni_modules目录规范 19 | -------------------------------------------------------------------------------- /uni_modules/uni-goods-nav/components/uni-goods-nav/i18n/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "uni-goods-nav.options.shop": "shop", 3 | "uni-goods-nav.options.cart": "cart", 4 | "uni-goods-nav.buttonGroup.addToCart": "add to cart", 5 | "uni-goods-nav.buttonGroup.buyNow": "buy now" 6 | } 7 | -------------------------------------------------------------------------------- /uni_modules/uni-goods-nav/components/uni-goods-nav/i18n/index.js: -------------------------------------------------------------------------------- 1 | import en from './en.json' 2 | import zhHans from './zh-Hans.json' 3 | import zhHant from './zh-Hant.json' 4 | export default { 5 | en, 6 | 'zh-Hans': zhHans, 7 | 'zh-Hant': zhHant 8 | } 9 | -------------------------------------------------------------------------------- /uni_modules/uni-goods-nav/components/uni-goods-nav/i18n/zh-Hans.json: -------------------------------------------------------------------------------- 1 | { 2 | "uni-goods-nav.options.shop": "店铺", 3 | "uni-goods-nav.options.cart": "购物车", 4 | "uni-goods-nav.buttonGroup.addToCart": "加入购物车", 5 | "uni-goods-nav.buttonGroup.buyNow": "立即购买" 6 | } 7 | -------------------------------------------------------------------------------- /uni_modules/uni-goods-nav/components/uni-goods-nav/i18n/zh-Hant.json: -------------------------------------------------------------------------------- 1 | { 2 | "uni-goods-nav.options.shop": "店鋪", 3 | "uni-goods-nav.options.cart": "購物車", 4 | "uni-goods-nav.buttonGroup.addToCart": "加入購物車", 5 | "uni-goods-nav.buttonGroup.buyNow": "立即購買" 6 | } 7 | -------------------------------------------------------------------------------- /uni_modules/uni-goods-nav/readme.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## GoodsNav 商品导航 4 | > **组件名:uni-goods-nav** 5 | > 代码块: `uGoodsNav` 6 | 7 | 商品加入购物车,立即购买等。 8 | 9 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-goods-nav) 10 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 -------------------------------------------------------------------------------- /uni_modules/uni-grid/changelog.md: -------------------------------------------------------------------------------- 1 | ## 1.4.0(2021-11-19) 2 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource) 3 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-grid](https://uniapp.dcloud.io/component/uniui/uni-grid) 4 | ## 1.3.2(2021-11-09) 5 | - 新增 提供组件设计资源,组件样式调整 6 | ## 1.3.1(2021-07-30) 7 | - 优化 vue3下事件警告的问题 8 | ## 1.3.0(2021-07-13) 9 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834) 10 | ## 1.2.4(2021-05-12) 11 | - 新增 组件示例地址 12 | ## 1.2.3(2021-02-05) 13 | - 调整为uni_modules目录规范 14 | -------------------------------------------------------------------------------- /uni_modules/uni-grid/readme.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## Grid 宫格 4 | > **组件名:uni-grid** 5 | > 代码块: `uGrid` 6 | 7 | 8 | 宫格组件。 9 | 10 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-grid) 11 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 -------------------------------------------------------------------------------- /uni_modules/uni-group/changelog.md: -------------------------------------------------------------------------------- 1 | ## 1.2.2(2022-05-30) 2 | - 新增 stat属性,是否开启uni统计功能 3 | ## 1.2.1(2021-11-22) 4 | - 修复 vue3中某些scss变量无法找到的问题 5 | ## 1.2.0(2021-11-19) 6 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource) 7 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-group](https://uniapp.dcloud.io/component/uniui/uni-group) 8 | ## 1.1.7(2021-11-08) 9 | ## 1.1.0(2021-07-30) 10 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834) 11 | - 优化 组件文档 12 | ## 1.0.3(2021-05-12) 13 | - 新增 组件示例地址 14 | ## 1.0.2(2021-02-05) 15 | - 调整为uni_modules目录规范 16 | - 优化 兼容 nvue 页面 17 | -------------------------------------------------------------------------------- /uni_modules/uni-group/readme.md: -------------------------------------------------------------------------------- 1 | 2 | ## Group 分组 3 | > **组件名:uni-group** 4 | > 代码块: `uGroup` 5 | 6 | 分组组件可用于将组件分组,添加间隔,以产生明显的区块。 7 | 8 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-group) 9 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 -------------------------------------------------------------------------------- /uni_modules/uni-icons/changelog.md: -------------------------------------------------------------------------------- 1 | ## 1.3.5(2022-01-24) 2 | - 优化 size 属性可以传入不带单位的字符串数值 3 | ## 1.3.4(2022-01-24) 4 | - 优化 size 支持其他单位 5 | ## 1.3.3(2022-01-17) 6 | - 修复 nvue 有些图标不显示的bug,兼容老版本图标 7 | ## 1.3.2(2021-12-01) 8 | - 优化 示例可复制图标名称 9 | ## 1.3.1(2021-11-23) 10 | - 优化 兼容旧组件 type 值 11 | ## 1.3.0(2021-11-19) 12 | - 新增 更多图标 13 | - 优化 自定义图标使用方式 14 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource) 15 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-icons](https://uniapp.dcloud.io/component/uniui/uni-icons) 16 | ## 1.1.7(2021-11-08) 17 | ## 1.2.0(2021-07-30) 18 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834) 19 | ## 1.1.5(2021-05-12) 20 | - 新增 组件示例地址 21 | ## 1.1.4(2021-02-05) 22 | - 调整为uni_modules目录规范 23 | -------------------------------------------------------------------------------- /uni_modules/uni-icons/components/uni-icons/uniicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/uni_modules/uni-icons/components/uni-icons/uniicons.ttf -------------------------------------------------------------------------------- /uni_modules/uni-icons/readme.md: -------------------------------------------------------------------------------- 1 | ## Icons 图标 2 | > **组件名:uni-icons** 3 | > 代码块: `uIcons` 4 | 5 | 用于展示 icons 图标 。 6 | 7 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-icons) 8 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 9 | -------------------------------------------------------------------------------- /uni_modules/uni-indexed-list/changelog.md: -------------------------------------------------------------------------------- 1 | ## 1.2.1(2021-11-22) 2 | - 修复 vue3中某些scss变量无法找到的问题 3 | ## 1.2.0(2021-11-19) 4 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource) 5 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-indexed-list](https://uniapp.dcloud.io/component/uniui/uni-indexed-list) 6 | ## 1.1.0(2021-07-30) 7 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834) 8 | ## 1.0.11(2021-05-12) 9 | - 新增 组件示例地址 10 | ## 1.0.10(2021-04-21) 11 | - 优化 添加依赖 uni-icons, 导入后自动下载依赖 12 | ## 1.0.9(2021-02-05) 13 | - 优化 组件引用关系,通过uni_modules引用组件 14 | 15 | ## 1.0.8(2021-02-05) 16 | - 调整为uni_modules目录规范 17 | - 新增 支持 PC 端 18 | -------------------------------------------------------------------------------- /uni_modules/uni-indexed-list/readme.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## IndexedList 索引列表 4 | > **组件名:uni-indexed-list** 5 | > 代码块: `uIndexedList` 6 | 7 | 8 | 用于展示索引列表。 9 | 10 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-indexed-list) 11 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 12 | -------------------------------------------------------------------------------- /uni_modules/uni-link/changelog.md: -------------------------------------------------------------------------------- 1 | ## 1.0.0(2021-11-19) 2 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource) 3 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-link](https://uniapp.dcloud.io/component/uniui/uni-link) 4 | ## 1.1.7(2021-11-08) 5 | ## 0.0.7(2021-09-03) 6 | - 修复 在 nvue 下不显示的 bug 7 | ## 0.0.6(2021-07-30) 8 | - 新增 支持自定义插槽 9 | ## 0.0.5(2021-06-21) 10 | - 新增 download 属性,H5平台下载文件名 11 | ## 0.0.4(2021-05-12) 12 | - 新增 组件示例地址 13 | ## 0.0.3(2021-03-09) 14 | - 新增 href 属性支持 tel:|mailto: 15 | 16 | ## 0.0.2(2021-02-05) 17 | - 调整为uni_modules目录规范 18 | -------------------------------------------------------------------------------- /uni_modules/uni-link/readme.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## Link 链接 4 | > **组件名:uni-link** 5 | > 代码块: `uLink` 6 | 7 | 8 | uni-link是一个外部网页超链接组件,在小程序内复制url,在app内打开外部浏览器,在h5端打开新网页。 9 | 10 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-link) 11 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 -------------------------------------------------------------------------------- /uni_modules/uni-list/changelog.md: -------------------------------------------------------------------------------- 1 | ## 1.2.1(2022-03-30) 2 | - 删除无用文件 3 | ## 1.2.0(2021-11-23) 4 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource) 5 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-list](https://uniapp.dcloud.io/component/uniui/uni-list) 6 | ## 1.1.3(2021-08-30) 7 | - 修复 在vue3中to属性在发行应用的时候报错的bug 8 | ## 1.1.2(2021-07-30) 9 | - 优化 vue3下事件警告的问题 10 | ## 1.1.1(2021-07-21) 11 | - 修复 与其他组件嵌套使用时,点击失效的Bug 12 | ## 1.1.0(2021-07-13) 13 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834) 14 | ## 1.0.17(2021-05-12) 15 | - 新增 组件示例地址 16 | ## 1.0.16(2021-02-05) 17 | - 优化 组件引用关系,通过uni_modules引用组件 18 | ## 1.0.15(2021-02-05) 19 | - 调整为uni_modules目录规范 20 | - 修复 uni-list-chat 角标显示不正常的问题 21 | -------------------------------------------------------------------------------- /uni_modules/uni-load-more/changelog.md: -------------------------------------------------------------------------------- 1 | ## 1.3.3(2022-01-20) 2 | - 新增 showText属性 ,是否显示文本 3 | ## 1.3.2(2022-01-19) 4 | - 修复 nvue 平台下不显示文本的bug 5 | ## 1.3.1(2022-01-19) 6 | - 修复 微信小程序平台样式选择器报警告的问题 7 | ## 1.3.0(2021-11-19) 8 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource) 9 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-load-more](https://uniapp.dcloud.io/component/uniui/uni-load-more) 10 | ## 1.2.1(2021-08-24) 11 | - 新增 支持国际化 12 | ## 1.2.0(2021-07-30) 13 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834) 14 | ## 1.1.8(2021-05-12) 15 | - 新增 组件示例地址 16 | ## 1.1.7(2021-03-30) 17 | - 修复 uni-load-more 在首页使用时,h5 平台报 'uni is not defined' 的 bug 18 | ## 1.1.6(2021-02-05) 19 | - 调整为uni_modules目录规范 20 | -------------------------------------------------------------------------------- /uni_modules/uni-load-more/components/uni-load-more/i18n/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "uni-load-more.contentdown": "Pull up to show more", 3 | "uni-load-more.contentrefresh": "loading...", 4 | "uni-load-more.contentnomore": "No more data" 5 | } 6 | -------------------------------------------------------------------------------- /uni_modules/uni-load-more/components/uni-load-more/i18n/index.js: -------------------------------------------------------------------------------- 1 | import en from './en.json' 2 | import zhHans from './zh-Hans.json' 3 | import zhHant from './zh-Hant.json' 4 | export default { 5 | en, 6 | 'zh-Hans': zhHans, 7 | 'zh-Hant': zhHant 8 | } 9 | -------------------------------------------------------------------------------- /uni_modules/uni-load-more/components/uni-load-more/i18n/zh-Hans.json: -------------------------------------------------------------------------------- 1 | { 2 | "uni-load-more.contentdown": "上拉显示更多", 3 | "uni-load-more.contentrefresh": "正在加载...", 4 | "uni-load-more.contentnomore": "没有更多数据了" 5 | } 6 | -------------------------------------------------------------------------------- /uni_modules/uni-load-more/components/uni-load-more/i18n/zh-Hant.json: -------------------------------------------------------------------------------- 1 | { 2 | "uni-load-more.contentdown": "上拉顯示更多", 3 | "uni-load-more.contentrefresh": "正在加載...", 4 | "uni-load-more.contentnomore": "沒有更多數據了" 5 | } 6 | -------------------------------------------------------------------------------- /uni_modules/uni-load-more/readme.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ### LoadMore 加载更多 4 | > **组件名:uni-load-more** 5 | > 代码块: `uLoadMore` 6 | 7 | 8 | 用于列表中,做滚动加载使用,展示 loading 的各种状态。 9 | 10 | 11 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-load-more) 12 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 13 | 14 | 15 | -------------------------------------------------------------------------------- /uni_modules/uni-nav-bar/components/uni-nav-bar/uni-status-bar.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 20 | 21 | 28 | -------------------------------------------------------------------------------- /uni_modules/uni-nav-bar/readme.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## NavBar 导航栏 4 | > **组件名:uni-nav-bar** 5 | > 代码块: `uNavBar` 6 | 7 | 导航栏组件,主要用于头部导航。 8 | 9 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-nav-bar) 10 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /uni_modules/uni-notice-bar/changelog.md: -------------------------------------------------------------------------------- 1 | ## 1.2.1(2022-09-05) 2 | - 新增 属性 fontSize,可修改文字大小。 3 | ## 1.2.0(2021-11-19) 4 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource) 5 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-notice-bar](https://uniapp.dcloud.io/component/uniui/uni-notice-bar) 6 | ## 1.1.1(2021-11-09) 7 | - 新增 提供组件设计资源,组件样式调整 8 | ## 1.1.0(2021-07-30) 9 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834) 10 | ## 1.0.9(2021-05-12) 11 | - 新增 组件示例地址 12 | ## 1.0.8(2021-04-21) 13 | - 优化 添加依赖 uni-icons, 导入后自动下载依赖 14 | ## 1.0.7(2021-02-05) 15 | - 优化 组件引用关系,通过uni_modules引用组件 16 | 17 | ## 1.0.6(2021-02-05) 18 | - 调整为uni_modules目录规范 19 | -------------------------------------------------------------------------------- /uni_modules/uni-notice-bar/readme.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## NoticeBar 通告栏 4 | > **组件名:uni-notice-bar** 5 | > 代码块: `uNoticeBar` 6 | 7 | 8 | 通告栏组件 。 9 | 10 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-notice-bar) 11 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 12 | 13 | 14 | -------------------------------------------------------------------------------- /uni_modules/uni-number-box/readme.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## NumberBox 数字输入框 4 | > **组件名:uni-number-box** 5 | > 代码块: `uNumberBox` 6 | 7 | 8 | 带加减按钮的数字输入框。 9 | 10 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-number-box) 11 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 12 | 13 | 14 | -------------------------------------------------------------------------------- /uni_modules/uni-pagination/components/uni-pagination/i18n/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "uni-pagination.prevText": "prev", 3 | "uni-pagination.nextText": "next", 4 | "uni-pagination.piecePerPage": "piece/page" 5 | } 6 | -------------------------------------------------------------------------------- /uni_modules/uni-pagination/components/uni-pagination/i18n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/uni_modules/uni-pagination/components/uni-pagination/i18n/es.json -------------------------------------------------------------------------------- /uni_modules/uni-pagination/components/uni-pagination/i18n/fr.json: -------------------------------------------------------------------------------- 1 | { 2 | "uni-pagination.prevText": "précédente", 3 | "uni-pagination.nextText": "suivante", 4 | "uni-pagination.piecePerPage": "Articles/Pages" 5 | } 6 | -------------------------------------------------------------------------------- /uni_modules/uni-pagination/components/uni-pagination/i18n/index.js: -------------------------------------------------------------------------------- 1 | import en from './en.json' 2 | import es from './es.json' 3 | import fr from './fr.json' 4 | import zhHans from './zh-Hans.json' 5 | import zhHant from './zh-Hant.json' 6 | export default { 7 | en, 8 | es, 9 | fr, 10 | 'zh-Hans': zhHans, 11 | 'zh-Hant': zhHant 12 | } 13 | -------------------------------------------------------------------------------- /uni_modules/uni-pagination/components/uni-pagination/i18n/zh-Hans.json: -------------------------------------------------------------------------------- 1 | { 2 | "uni-pagination.prevText": "上一页", 3 | "uni-pagination.nextText": "下一页", 4 | "uni-pagination.piecePerPage": "条/页" 5 | } 6 | -------------------------------------------------------------------------------- /uni_modules/uni-pagination/components/uni-pagination/i18n/zh-Hant.json: -------------------------------------------------------------------------------- 1 | { 2 | "uni-pagination.prevText": "上一頁", 3 | "uni-pagination.nextText": "下一頁", 4 | "uni-pagination.piecePerPage": "條/頁" 5 | } 6 | -------------------------------------------------------------------------------- /uni_modules/uni-pagination/readme.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## Pagination 分页器 4 | > **组件名:uni-pagination** 5 | > 代码块: `uPagination` 6 | 7 | 8 | 分页器组件,用于展示页码、请求数据等。 9 | 10 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-pagination) 11 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 12 | -------------------------------------------------------------------------------- /uni_modules/uni-popup/components/uni-popup/i18n/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "uni-popup.cancel": "cancel", 3 | "uni-popup.ok": "ok", 4 | "uni-popup.placeholder": "pleace enter", 5 | "uni-popup.title": "Hint", 6 | "uni-popup.shareTitle": "Share to" 7 | } 8 | -------------------------------------------------------------------------------- /uni_modules/uni-popup/components/uni-popup/i18n/index.js: -------------------------------------------------------------------------------- 1 | import en from './en.json' 2 | import zhHans from './zh-Hans.json' 3 | import zhHant from './zh-Hant.json' 4 | export default { 5 | en, 6 | 'zh-Hans': zhHans, 7 | 'zh-Hant': zhHant 8 | } 9 | -------------------------------------------------------------------------------- /uni_modules/uni-popup/components/uni-popup/i18n/zh-Hans.json: -------------------------------------------------------------------------------- 1 | { 2 | "uni-popup.cancel": "取消", 3 | "uni-popup.ok": "确定", 4 | "uni-popup.placeholder": "请输入", 5 | "uni-popup.title": "提示", 6 | "uni-popup.shareTitle": "分享到" 7 | } 8 | -------------------------------------------------------------------------------- /uni_modules/uni-popup/components/uni-popup/i18n/zh-Hant.json: -------------------------------------------------------------------------------- 1 | { 2 | "uni-popup.cancel": "取消", 3 | "uni-popup.ok": "確定", 4 | "uni-popup.placeholder": "請輸入", 5 | "uni-popup.title": "提示", 6 | "uni-popup.shareTitle": "分享到" 7 | } 8 | -------------------------------------------------------------------------------- /uni_modules/uni-popup/components/uni-popup/popup.js: -------------------------------------------------------------------------------- 1 | 2 | export default { 3 | data() { 4 | return { 5 | 6 | } 7 | }, 8 | created(){ 9 | this.popup = this.getParent() 10 | }, 11 | methods:{ 12 | /** 13 | * 获取父元素实例 14 | */ 15 | getParent(name = 'uniPopup') { 16 | let parent = this.$parent; 17 | let parentName = parent.$options.name; 18 | while (parentName !== name) { 19 | parent = parent.$parent; 20 | if (!parent) return false 21 | parentName = parent.$options.name; 22 | } 23 | return parent; 24 | }, 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /uni_modules/uni-popup/readme.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## Popup 弹出层 4 | > **组件名:uni-popup** 5 | > 代码块: `uPopup` 6 | > 关联组件:`uni-transition` 7 | 8 | 9 | 弹出层组件,在应用中弹出一个消息提示窗口、提示框等 10 | 11 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-popup) 12 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /uni_modules/uni-rate/readme.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## Rate 评分 4 | > **组件名:uni-rate** 5 | > 代码块: `uRate` 6 | > 关联组件:`uni-icons` 7 | 8 | 9 | 评分组件,多用于购买商品后,对商品进行评价等场景 10 | 11 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-rate) 12 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 -------------------------------------------------------------------------------- /uni_modules/uni-row/changelog.md: -------------------------------------------------------------------------------- 1 | ## 1.0.0(2021-11-19) 2 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource) 3 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-row](https://uniapp.dcloud.io/component/uniui/uni-row) 4 | ## 0.1.0(2021-07-13) 5 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834) 6 | ## 0.0.4(2021-05-12) 7 | - 新增 组件示例地址 8 | ## 0.0.3(2021-02-05) 9 | - 调整为uni_modules目录规范 10 | - 新增uni-row组件 11 | -------------------------------------------------------------------------------- /uni_modules/uni-row/readme.md: -------------------------------------------------------------------------------- 1 | ## Layout 布局 2 | 3 | > **组件名 uni-row、uni-col** 4 | > 代码块: `uRow`、`uCol` 5 | 6 | 7 | 流式栅格系统,随着屏幕或视口分为 24 份,可以迅速简便地创建布局。 8 | 9 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-row) 10 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 -------------------------------------------------------------------------------- /uni_modules/uni-scss/changelog.md: -------------------------------------------------------------------------------- 1 | ## 1.0.3(2022-01-21) 2 | - 优化 组件示例 3 | ## 1.0.2(2021-11-22) 4 | - 修复 / 符号在 vue 不同版本兼容问题引起的报错问题 5 | ## 1.0.1(2021-11-22) 6 | - 修复 vue3中scss语法兼容问题 7 | ## 1.0.0(2021-11-18) 8 | - init 9 | -------------------------------------------------------------------------------- /uni_modules/uni-scss/index.scss: -------------------------------------------------------------------------------- 1 | @import './styles/index.scss'; 2 | -------------------------------------------------------------------------------- /uni_modules/uni-scss/readme.md: -------------------------------------------------------------------------------- 1 | `uni-sass` 是 `uni-ui`提供的一套全局样式 ,通过一些简单的类名和`sass`变量,实现简单的页面布局操作,比如颜色、边距、圆角等。 2 | 3 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-sass) 4 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 -------------------------------------------------------------------------------- /uni_modules/uni-scss/styles/index.scss: -------------------------------------------------------------------------------- 1 | @import './setting/_variables.scss'; 2 | @import './setting/_border.scss'; 3 | @import './setting/_color.scss'; 4 | @import './setting/_space.scss'; 5 | @import './setting/_radius.scss'; 6 | @import './setting/_text.scss'; 7 | @import './setting/_styles.scss'; 8 | -------------------------------------------------------------------------------- /uni_modules/uni-scss/styles/setting/_border.scss: -------------------------------------------------------------------------------- 1 | .uni-border { 2 | border: 1px $uni-border-1 solid; 3 | } -------------------------------------------------------------------------------- /uni_modules/uni-scss/styles/setting/_text.scss: -------------------------------------------------------------------------------- 1 | @mixin get-styles($k,$c) { 2 | @if $k == size or $k == weight{ 3 | font-#{$k}:#{$c} 4 | }@else{ 5 | #{$k}:#{$c} 6 | } 7 | } 8 | 9 | @each $key, $child in $uni-headings { 10 | /* #ifndef APP-NVUE */ 11 | .uni-#{$key} { 12 | @each $k, $c in $child { 13 | @include get-styles($k,$c) 14 | } 15 | } 16 | /* #endif */ 17 | /* #ifdef APP-NVUE */ 18 | .container .uni-#{$key} { 19 | @each $k, $c in $child { 20 | @include get-styles($k,$c) 21 | } 22 | } 23 | /* #endif */ 24 | } 25 | -------------------------------------------------------------------------------- /uni_modules/uni-scss/styles/tools/functions.scss: -------------------------------------------------------------------------------- 1 | // 合并 map 2 | @function map-deep-merge($parent-map, $child-map){ 3 | $result: $parent-map; 4 | @each $key, $child in $child-map { 5 | $parent-has-key: map-has-key($result, $key); 6 | $parent-value: map-get($result, $key); 7 | $parent-type: type-of($parent-value); 8 | $child-type: type-of($child); 9 | $parent-is-map: $parent-type == map; 10 | $child-is-map: $child-type == map; 11 | 12 | @if (not $parent-has-key) or ($parent-type != $child-type) or (not ($parent-is-map and $child-is-map)){ 13 | $result: map-merge($result, ( $key: $child )); 14 | }@else { 15 | $result: map-merge($result, ( $key: map-deep-merge($parent-value, $child) )); 16 | } 17 | } 18 | @return $result; 19 | }; 20 | -------------------------------------------------------------------------------- /uni_modules/uni-scss/theme.scss: -------------------------------------------------------------------------------- 1 | // 间距基础倍数 2 | $uni-space-root: 2; 3 | // 边框半径默认值 4 | $uni-radius-root:5px; 5 | // 主色 6 | $uni-primary: #2979ff; 7 | // 辅助色 8 | $uni-success: #4cd964; 9 | // 警告色 10 | $uni-warning: #f0ad4e; 11 | // 错误色 12 | $uni-error: #dd524d; 13 | // 描述色 14 | $uni-info: #909399; 15 | // 中性色 16 | $uni-main-color: #303133; 17 | $uni-base-color: #606266; 18 | $uni-secondary-color: #909399; 19 | $uni-extra-color: #C0C4CC; 20 | // 背景色 21 | $uni-bg-color: #f5f5f5; 22 | // 边框颜色 23 | $uni-border-1: #DCDFE6; 24 | $uni-border-2: #E4E7ED; 25 | $uni-border-3: #EBEEF5; 26 | $uni-border-4: #F2F6FC; 27 | 28 | // 常规色 29 | $uni-black: #000000; 30 | $uni-white: #ffffff; 31 | $uni-transparent: rgba($color: #000000, $alpha: 0); 32 | -------------------------------------------------------------------------------- /uni_modules/uni-search-bar/components/uni-search-bar/i18n/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "uni-search-bar.cancel": "cancel", 3 | "uni-search-bar.placeholder": "Search enter content" 4 | } -------------------------------------------------------------------------------- /uni_modules/uni-search-bar/components/uni-search-bar/i18n/index.js: -------------------------------------------------------------------------------- 1 | import en from './en.json' 2 | import zhHans from './zh-Hans.json' 3 | import zhHant from './zh-Hant.json' 4 | export default { 5 | en, 6 | 'zh-Hans': zhHans, 7 | 'zh-Hant': zhHant 8 | } 9 | -------------------------------------------------------------------------------- /uni_modules/uni-search-bar/components/uni-search-bar/i18n/zh-Hans.json: -------------------------------------------------------------------------------- 1 | { 2 | "uni-search-bar.cancel": "cancel", 3 | "uni-search-bar.placeholder": "请输入搜索内容" 4 | } 5 | -------------------------------------------------------------------------------- /uni_modules/uni-search-bar/components/uni-search-bar/i18n/zh-Hant.json: -------------------------------------------------------------------------------- 1 | { 2 | "uni-search-bar.cancel": "cancel", 3 | "uni-search-bar.placeholder": "請輸入搜索內容" 4 | } 5 | -------------------------------------------------------------------------------- /uni_modules/uni-search-bar/readme.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## SearchBar 搜索栏 4 | 5 | > **组件名:uni-search-bar** 6 | > 代码块: `uSearchBar` 7 | 8 | 9 | 搜索栏组件 10 | 11 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-search-bar) 12 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 13 | 14 | 15 | -------------------------------------------------------------------------------- /uni_modules/uni-section/changelog.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1(2022-07-22) 2 | - 初始化 3 | -------------------------------------------------------------------------------- /uni_modules/uni-section/readme.md: -------------------------------------------------------------------------------- 1 | ## Section 标题栏 2 | > **组件名:uni-section** 3 | > 代码块: `uSection` 4 | 5 | uni-section 组件主要用于文章、列表详情等标题展示 6 | 7 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-section) 8 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 9 | -------------------------------------------------------------------------------- /uni_modules/uni-segmented-control/changelog.md: -------------------------------------------------------------------------------- 1 | ## 1.2.0(2021-11-19) 2 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource) 3 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-segmented-control](https://uniapp.dcloud.io/component/uniui/uni-segmented-control) 4 | ## 1.1.0(2021-07-30) 5 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834) 6 | ## 1.0.5(2021-05-12) 7 | - 新增 项目示例地址 8 | ## 1.0.4(2021-02-05) 9 | - 调整为uni_modules目录规范 10 | -------------------------------------------------------------------------------- /uni_modules/uni-segmented-control/readme.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## SegmentedControl 分段器 4 | > **组件名:uni-segmented-control** 5 | > 代码块: `uSegmentedControl` 6 | 7 | 8 | 用作不同视图的显示 9 | 10 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-segmented-control) 11 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 12 | 13 | 14 | -------------------------------------------------------------------------------- /uni_modules/uni-steps/changelog.md: -------------------------------------------------------------------------------- 1 | ## 1.1.1(2021-11-22) 2 | - 修复 vue3中某些scss变量无法找到的问题 3 | ## 1.1.0(2021-11-19) 4 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource) 5 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-steps](https://uniapp.dcloud.io/component/uniui/uni-steps) 6 | ## 1.0.8(2021-05-12) 7 | - 新增 项目示例地址 8 | ## 1.0.7(2021-05-06) 9 | - 修复 uni-steps 横向布局时,多行文字高度不合理的 bug 10 | ## 1.0.6(2021-04-21) 11 | - 优化 添加依赖 uni-icons, 导入后自动下载依赖 12 | ## 1.0.5(2021-02-05) 13 | - 优化 组件引用关系,通过uni_modules引用组件 14 | 15 | ## 1.0.4(2021-02-05) 16 | - 调整为uni_modules目录规范 17 | -------------------------------------------------------------------------------- /uni_modules/uni-steps/readme.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## Steps 步骤条 4 | > **组件名:uni-steps** 5 | > 代码块: `uSteps` 6 | 7 | 8 | 步骤条,常用于显示进度 9 | 10 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-steps) 11 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 12 | 13 | 14 | -------------------------------------------------------------------------------- /uni_modules/uni-swipe-action/components/uni-swipe-action-item/isPC.js: -------------------------------------------------------------------------------- 1 | export function isPC() { 2 | var userAgentInfo = navigator.userAgent; 3 | var Agents = ["Android", "iPhone", "SymbianOS", "Windows Phone", "iPad", "iPod"]; 4 | var flag = true; 5 | for (let v = 0; v < Agents.length - 1; v++) { 6 | if (userAgentInfo.indexOf(Agents[v]) > 0) { 7 | flag = false; 8 | break; 9 | } 10 | } 11 | return flag; 12 | } 13 | -------------------------------------------------------------------------------- /uni_modules/uni-swipe-action/readme.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## SwipeAction 滑动操作 4 | > **组件名:uni-swipe-action** 5 | > 代码块: `uSwipeAction`、`uSwipeActionItem` 6 | 7 | 8 | 通过滑动触发选项的容器 9 | 10 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-swipe-action) 11 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 -------------------------------------------------------------------------------- /uni_modules/uni-swiper-dot/changelog.md: -------------------------------------------------------------------------------- 1 | ## 1.2.0(2021-11-19) 2 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource) 3 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-swiper-dot](https://uniapp.dcloud.io/component/uniui/uni-swiper-dot) 4 | ## 1.1.0(2021-07-30) 5 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834) 6 | ## 1.0.6(2021-05-12) 7 | - 新增 示例地址 8 | - 修复 示例项目缺少组件的Bug 9 | ## 1.0.5(2021-02-05) 10 | - 调整为uni_modules目录规范 11 | - 新增 clickItem 事件,支持指示点控制轮播 12 | - 新增 支持 pc 可用 13 | -------------------------------------------------------------------------------- /uni_modules/uni-swiper-dot/readme.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## SwiperDot 轮播图指示点 4 | > **组件名:uni-swiper-dot** 5 | > 代码块: `uSwiperDot` 6 | 7 | 8 | 自定义轮播图指示点 9 | 10 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-swiper-dot) 11 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 -------------------------------------------------------------------------------- /uni_modules/uni-table/components/uni-tbody/uni-tbody.vue: -------------------------------------------------------------------------------- 1 | 11 | 12 | 27 | 28 | 30 | -------------------------------------------------------------------------------- /uni_modules/uni-table/i18n/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "filter-dropdown.reset": "Reset", 3 | "filter-dropdown.search": "Search", 4 | "filter-dropdown.submit": "Submit", 5 | "filter-dropdown.filter": "Filter", 6 | "filter-dropdown.gt": "Greater or equal to", 7 | "filter-dropdown.lt": "Less than or equal to", 8 | "filter-dropdown.date": "Date" 9 | } 10 | -------------------------------------------------------------------------------- /uni_modules/uni-table/i18n/es.json: -------------------------------------------------------------------------------- 1 | { 2 | "filter-dropdown.reset": "Reiniciar", 3 | "filter-dropdown.search": "Búsqueda", 4 | "filter-dropdown.submit": "Entregar", 5 | "filter-dropdown.filter": "Filtrar", 6 | "filter-dropdown.gt": "Mayor o igual a", 7 | "filter-dropdown.lt": "Menos que o igual a", 8 | "filter-dropdown.date": "Fecha" 9 | } 10 | -------------------------------------------------------------------------------- /uni_modules/uni-table/i18n/fr.json: -------------------------------------------------------------------------------- 1 | { 2 | "filter-dropdown.reset": "Réinitialiser", 3 | "filter-dropdown.search": "Chercher", 4 | "filter-dropdown.submit": "Soumettre", 5 | "filter-dropdown.filter": "Filtre", 6 | "filter-dropdown.gt": "Supérieur ou égal à", 7 | "filter-dropdown.lt": "Inférieur ou égal à", 8 | "filter-dropdown.date": "Date" 9 | } 10 | -------------------------------------------------------------------------------- /uni_modules/uni-table/i18n/index.js: -------------------------------------------------------------------------------- 1 | import en from './en.json' 2 | import es from './es.json' 3 | import fr from './fr.json' 4 | import zhHans from './zh-Hans.json' 5 | import zhHant from './zh-Hant.json' 6 | export default { 7 | en, 8 | es, 9 | fr, 10 | 'zh-Hans': zhHans, 11 | 'zh-Hant': zhHant 12 | } 13 | -------------------------------------------------------------------------------- /uni_modules/uni-table/i18n/zh-Hans.json: -------------------------------------------------------------------------------- 1 | { 2 | "filter-dropdown.reset": "重置", 3 | "filter-dropdown.search": "搜索", 4 | "filter-dropdown.submit": "确定", 5 | "filter-dropdown.filter": "筛选", 6 | "filter-dropdown.gt": "大于等于", 7 | "filter-dropdown.lt": "小于等于", 8 | "filter-dropdown.date": "日期范围" 9 | } 10 | -------------------------------------------------------------------------------- /uni_modules/uni-table/i18n/zh-Hant.json: -------------------------------------------------------------------------------- 1 | { 2 | "filter-dropdown.reset": "重置", 3 | "filter-dropdown.search": "搜索", 4 | "filter-dropdown.submit": "確定", 5 | "filter-dropdown.filter": "篩選", 6 | "filter-dropdown.gt": "大於等於", 7 | "filter-dropdown.lt": "小於等於", 8 | "filter-dropdown.date": "日期範圍" 9 | } 10 | -------------------------------------------------------------------------------- /uni_modules/uni-table/readme.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## Table 表单 4 | > 组件名:``uni-table``,代码块: `uTable`。 5 | 6 | 用于展示多条结构类似的数据 7 | 8 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-table) 9 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /uni_modules/uni-tag/readme.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## Tag 标签 4 | > **组件名:uni-tag** 5 | > 代码块: `uTag` 6 | 7 | 8 | 用于展示1个或多个文字标签,可点击切换选中、不选中的状态 。 9 | 10 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-tag) 11 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 12 | 13 | 14 | -------------------------------------------------------------------------------- /uni_modules/uni-test/changelog.md: -------------------------------------------------------------------------------- 1 | ## 2.0.13(2021-11-18) 2 | 邱 3 | ## 2.0.12(2021-11-18) 4 | 123123 5 | ## 2.0.11(2021-11-18) 6 | 0000 7 | ## 2.0.10(2021-11-18) 8 | 111234 9 | ## 2.0.9(2021-11-18) 10 | 3333 11 | ## 2.0.8(2021-11-18) 12 | === 13 | ## 2.0.7(2021-11-18) 14 | 111 15 | ## 2.0.6(2021-05-26) 16 | - test 17 | ## 0.0.37(2021-03-23) 18 | - uni-forms 更新 校验器 19 | - uni-forms 修复 表单规则设置类型为 number 的情况下,值为0校验失败的Bug 20 | 21 | 22 | ## 0.0.36(2021-03-23) 23 | - uni-forms 更新 校验器 24 | - uni-forms 修复 表单规则设置类型为 number 的情况下,值为0校验失败的Bug 25 | 26 | 27 | ## 0.0.35(2021-03-23) 28 | - uni-forms 更新 校验器 29 | - uni-forms 修复 表单规则设置类型为 number 的情况下,值为0校验失败的Bug 30 | 31 | 32 | ## 0.0.34(2021-03-23) 33 | - 测试新同步插件 34 | ## 0.0.33(2021-03-09) 35 | - test 36 | ## 0.0.32(2021-02-24) 37 | - 更新 read 2 38 | ## 0.0.31(2021-02-24) 39 | - 同步 readme.md 40 | -------------------------------------------------------------------------------- /uni_modules/uni-test/components/uni-test/uni-test.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 23 | 24 | 27 | -------------------------------------------------------------------------------- /uni_modules/uni-test/readme.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## DataCheckbox 数据驱动的单选复选框 4 | > **组件名:uni-data-checkbox** 5 | > 代码块: `uDataCheckbox` 6 | 7 | 8 | 本组件是基于uni-app基础组件checkbox的封装。本组件要解决问题包括: 9 | 10 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-card) -------------------------------------------------------------------------------- /uni_modules/uni-title/changelog.md: -------------------------------------------------------------------------------- 1 | ## 1.1.1(2022-05-19) 2 | - 修改组件描述 3 | ## 1.1.0(2021-11-19) 4 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource) 5 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-title](https://uniapp.dcloud.io/component/uniui/uni-title) 6 | ## 1.0.2(2021-05-12) 7 | - 新增 示例地址 8 | - 修复 示例项目缺少组件的Bug 9 | ## 1.0.1(2021-02-05) 10 | - 调整为uni_modules目录规范 11 | -------------------------------------------------------------------------------- /uni_modules/uni-title/readme.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## Title 标题 4 | > **组件名:uni-title** 5 | > 代码块: `uTitle` 6 | 7 | 8 | 章节标题,通常用于记录页面标题,使用当前组件,uni-app 如果开启统计,将会自动统计页面标题 。 9 | 10 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-title) 11 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /uni_modules/uni-tooltip/changelog.md: -------------------------------------------------------------------------------- 1 | ## 0.2.1(2022-05-09) 2 | - 修复 content 为空时仍然弹出的bug 3 | ## 0.2.0(2022-05-07) 4 | **注意:破坏性更新** 5 | - 更新 text 属性变更为 content 6 | - 更新 移除 width 属性 7 | ## 0.1.1(2022-04-27) 8 | - 修复 组件根 text 嵌套组件 warning 9 | ## 0.1.0(2022-04-21) 10 | - 初始化 11 | -------------------------------------------------------------------------------- /uni_modules/uni-tooltip/readme.md: -------------------------------------------------------------------------------- 1 | ## Badge 数字角标 2 | > **组件名:uni-tooltip** 3 | > 代码块: `uTooltip` 4 | 5 | 数字角标一般和其它控件(列表、9宫格等)配合使用,用于进行数量提示,默认为实心灰色背景, 6 | 7 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-tooltip) 8 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 9 | -------------------------------------------------------------------------------- /uni_modules/uni-transition/changelog.md: -------------------------------------------------------------------------------- 1 | ## 1.3.1(2021-11-23) 2 | - 修复 init 方法初始化问题 3 | ## 1.3.0(2021-11-19) 4 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource) 5 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-transition](https://uniapp.dcloud.io/component/uniui/uni-transition) 6 | ## 1.2.1(2021-09-27) 7 | - 修复 init 方法不生效的 Bug 8 | ## 1.2.0(2021-07-30) 9 | - 组件兼容 vue3,如何创建 vue3 项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834) 10 | ## 1.1.1(2021-05-12) 11 | - 新增 示例地址 12 | - 修复 示例项目缺少组件的 Bug 13 | ## 1.1.0(2021-04-22) 14 | - 新增 通过方法自定义动画 15 | - 新增 custom-class 非 NVUE 平台支持自定义 class 定制样式 16 | - 优化 动画触发逻辑,使动画更流畅 17 | - 优化 支持单独的动画类型 18 | - 优化 文档示例 19 | ## 1.0.2(2021-02-05) 20 | - 调整为 uni_modules 目录规范 21 | -------------------------------------------------------------------------------- /uni_modules/uni-transition/readme.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## Transition 过渡动画 4 | > **组件名:uni-transition** 5 | > 代码块: `uTransition` 6 | 7 | 8 | 元素过渡动画 9 | 10 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-transition) 11 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 -------------------------------------------------------------------------------- /uni_modules/uni-ui/components/uni-ui/uni-ui.vue: -------------------------------------------------------------------------------- 1 | 4 | 6 | 8 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/components/u-car-keyboard/props.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | // 是否打乱键盘按键的顺序 4 | random: { 5 | type: Boolean, 6 | default: false 7 | }, 8 | // 输入一个中文后,是否自动切换到英文 9 | autoChange: { 10 | type: Boolean, 11 | default: false 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/components/u-cell-group/props.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | // 分组标题 4 | title: { 5 | type: String, 6 | default: uni.$u.props.cellGroup.title 7 | }, 8 | // 是否显示外边框 9 | border: { 10 | type: Boolean, 11 | default: uni.$u.props.cellGroup.border 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/components/u-circle-progress/props.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | percentage: { 4 | type: [String, Number], 5 | default: uni.$u.props.circleProgress.percentage 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/components/u-collapse/props.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | // 当前展开面板的name,非手风琴模式:[],手风琴模式:string | number 4 | value: { 5 | type: [String, Number, Array, null], 6 | default: uni.$u.props.collapse.value 7 | }, 8 | // 是否手风琴模式 9 | accordion: { 10 | type: Boolean, 11 | default: uni.$u.props.collapse.accordion 12 | }, 13 | // 是否显示外边框 14 | border: { 15 | type: Boolean, 16 | default: uni.$u.props.collapse.border 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/components/u-count-down/props.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | // 倒计时时长,单位ms 4 | time: { 5 | type: [String, Number], 6 | default: uni.$u.props.countDown.time 7 | }, 8 | // 时间格式,DD-日,HH-时,mm-分,ss-秒,SSS-毫秒 9 | format: { 10 | type: String, 11 | default: uni.$u.props.countDown.format 12 | }, 13 | // 是否自动开始倒计时 14 | autoStart: { 15 | type: Boolean, 16 | default: uni.$u.props.countDown.autoStart 17 | }, 18 | // 是否展示毫秒倒计时 19 | millisecond: { 20 | type: Boolean, 21 | default: uni.$u.props.countDown.millisecond 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/components/u-gap/props.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | // 背景颜色(默认transparent) 4 | bgColor: { 5 | type: String, 6 | default: uni.$u.props.gap.bgColor 7 | }, 8 | // 分割槽高度,单位px(默认30) 9 | height: { 10 | type: [String, Number], 11 | default: uni.$u.props.gap.height 12 | }, 13 | // 与上一个组件的距离 14 | marginTop: { 15 | type: [String, Number], 16 | default: uni.$u.props.gap.marginTop 17 | }, 18 | // 与下一个组件的距离 19 | marginBottom: { 20 | type: [String, Number], 21 | default: uni.$u.props.gap.marginBottom 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/components/u-grid-item/props.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | // 宫格的name 4 | name: { 5 | type: [String, Number, null], 6 | default: uni.$u.props.gridItem.name 7 | }, 8 | // 背景颜色 9 | bgColor: { 10 | type: String, 11 | default: uni.$u.props.gridItem.bgColor 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/components/u-grid/props.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | // 分成几列 4 | col: { 5 | type: [String, Number], 6 | default: uni.$u.props.grid.col 7 | }, 8 | // 是否显示边框 9 | border: { 10 | type: Boolean, 11 | default: uni.$u.props.grid.border 12 | }, 13 | // 宫格对齐方式,表现为数量少的时候,靠左,居中,还是靠右 14 | align: { 15 | type: String, 16 | default: uni.$u.props.grid.align 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/components/u-index-item/props.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/components/u-list-item/props.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | // 用于滚动到指定item 4 | anchor: { 5 | type: [String, Number], 6 | default: uni.$u.props.listItem.anchor 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/components/u-no-network/props.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | // 页面文字提示 4 | tips: { 5 | type: String, 6 | default: uni.$u.props.noNetwork.tips 7 | }, 8 | // 一个z-index值,用于设置没有网络这个组件的层次,因为页面可能会有其他定位的元素层级过高,导致此组件被覆盖 9 | zIndex: { 10 | type: [String, Number], 11 | default: uni.$u.props.noNetwork.zIndex 12 | }, 13 | // image 没有网络的图片提示 14 | image: { 15 | type: String, 16 | default: uni.$u.props.noNetwork.image 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/components/u-number-keyboard/props.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | // 键盘的类型,number-数字键盘,card-身份证键盘 4 | mode: { 5 | type: String, 6 | default: uni.$u.props.numberKeyboard.value 7 | }, 8 | // 是否显示键盘的"."符号 9 | dotDisabled: { 10 | type: Boolean, 11 | default: uni.$u.props.numberKeyboard.dotDisabled 12 | }, 13 | // 是否打乱键盘按键的顺序 14 | random: { 15 | type: Boolean, 16 | default: uni.$u.props.numberKeyboard.random 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/components/u-overlay/props.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | // 是否显示遮罩 4 | show: { 5 | type: Boolean, 6 | default: uni.$u.props.overlay.show 7 | }, 8 | // 层级z-index 9 | zIndex: { 10 | type: [String, Number], 11 | default: uni.$u.props.overlay.zIndex 12 | }, 13 | // 遮罩的过渡时间,单位为ms 14 | duration: { 15 | type: [String, Number], 16 | default: uni.$u.props.overlay.duration 17 | }, 18 | // 不透明度值,当做rgba的第四个参数 19 | opacity: { 20 | type: [String, Number], 21 | default: uni.$u.props.overlay.opacity 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/components/u-picker-column/props.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/components/u-picker-column/u-picker-column.vue: -------------------------------------------------------------------------------- 1 | 8 | 9 | 24 | 25 | 28 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/components/u-row/props.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | // 给col添加间距,左右边距各占一半 4 | gutter: { 5 | type: [String, Number], 6 | default: uni.$u.props.row.gutter 7 | }, 8 | // 水平排列方式,可选值为`start`(或`flex-start`)、`end`(或`flex-end`)、`center`、`around`(或`space-around`)、`between`(或`space-between`) 9 | justify: { 10 | type: String, 11 | default: uni.$u.props.row.justify 12 | }, 13 | // 垂直对齐方式,可选值为top、center、bottom 14 | align: { 15 | type: String, 16 | default: uni.$u.props.row.align 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/components/u-safe-bottom/props.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/components/u-scroll-list/other.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/uni_modules/uview-ui/components/u-scroll-list/other.js -------------------------------------------------------------------------------- /uni_modules/uview-ui/components/u-status-bar/props.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | bgColor: { 4 | type: String, 5 | default: uni.$u.props.statusBar.bgColor 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/components/u-steps-item/props.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | // 标题 4 | title: { 5 | type: [String, Number], 6 | default: uni.$u.props.stepsItem.title 7 | }, 8 | // 描述文本 9 | desc: { 10 | type: [String, Number], 11 | default: uni.$u.props.stepsItem.desc 12 | }, 13 | // 图标大小 14 | iconSize: { 15 | type: [String, Number], 16 | default: uni.$u.props.stepsItem.iconSize 17 | }, 18 | // 当前步骤是否处于失败状态 19 | error: { 20 | type: Boolean, 21 | default: uni.$u.props.stepsItem.error 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/components/u-swipe-action-item/wxs.js: -------------------------------------------------------------------------------- 1 | export default { 2 | methods: { 3 | // 关闭时执行 4 | closeHandler() { 5 | this.status = 'close' 6 | }, 7 | setState(status) { 8 | this.status = status 9 | }, 10 | closeOther() { 11 | // 尝试关闭其他打开的单元格 12 | this.parent && this.parent.closeOther(this) 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/components/u-swipe-action/props.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | // 是否自动关闭其他swipe按钮组 4 | autoClose: { 5 | type: Boolean, 6 | default: uni.$u.props.swipeAction.autoClose 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/components/u-table/props.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/components/u-table/u-table.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 25 | 26 | 30 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/components/u-tabs-item/props.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/components/u-tabs-item/u-tabs-item.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 27 | 28 | 30 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/components/u-td/props.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/components/u-td/u-td.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 27 | 28 | 32 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/components/u-tr/props.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/components/u-tr/u-tr.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 27 | 28 | 32 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/components/u-transition/props.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | // 是否展示组件 4 | show: { 5 | type: Boolean, 6 | default: uni.$u.props.transition.show 7 | }, 8 | // 使用的动画模式 9 | mode: { 10 | type: String, 11 | default: uni.$u.props.transition.mode 12 | }, 13 | // 动画的执行时间,单位ms 14 | duration: { 15 | type: [String, Number], 16 | default: uni.$u.props.transition.duration 17 | }, 18 | // 使用的动画过渡函数 19 | timingFunction: { 20 | type: String, 21 | default: uni.$u.props.transition.timingFunction 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/components/u-upload/mixin.js: -------------------------------------------------------------------------------- 1 | export default { 2 | watch: { 3 | // 监听accept的变化,判断是否符合个平台要求 4 | // 只有微信小程序才支持选择媒体,文件类型,所以这里做一个判断提示 5 | accept: { 6 | immediate: true, 7 | handler(val) { 8 | // #ifndef MP-WEIXIN 9 | if (val === 'all' || val === 'media') { 10 | uni.$u.error('只有微信小程序才支持把accept配置为all、media之一') 11 | } 12 | // #endif 13 | // #ifndef H5 || MP-WEIXIN 14 | if (val === 'file') { 15 | uni.$u.error('只有微信小程序和H5(HX2.9.9)才支持把accept配置为file') 16 | } 17 | // #endif 18 | } 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/components/uview-ui/uview-ui.vue: -------------------------------------------------------------------------------- 1 | 3 | 4 | 7 | 8 | 13 | 14 | 16 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/index.scss: -------------------------------------------------------------------------------- 1 | // 引入公共基础类 2 | @import "./libs/css/common.scss"; 3 | @import "./libs/css/color.scss"; 4 | 5 | // 非nvue的样式 6 | /* #ifndef APP-NVUE */ 7 | @import "./libs/css/vue.scss"; 8 | /* #endif */ 9 | 10 | // nvue的特有样式 11 | /* #ifdef APP-NVUE */ 12 | @import "./libs/css/nvue.scss"; 13 | /* #endif */ 14 | 15 | // 小程序特有的样式 16 | /* #ifdef MP */ 17 | @import "./libs/css/mp.scss"; 18 | /* #endif */ 19 | 20 | // H5特有的样式 21 | /* #ifdef H5 */ 22 | @import "./libs/css/h5.scss"; 23 | /* #endif */ -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/color.js: -------------------------------------------------------------------------------- 1 | // 为了让用户能够自定义主题,会逐步弃用此文件,各颜色通过css提供 2 | // 为了给某些特殊场景使用和向后兼容,无需删除此文件(2020-06-20) 3 | const color = { 4 | primary: '#3c9cff', 5 | info: '#909399', 6 | default: '#909399', 7 | warning: '#f9ae3d', 8 | error: '#f56c6c', 9 | success: '#5ac725', 10 | mainColor: '#303133', 11 | contentColor: '#606266', 12 | tipsColor: '#909399', 13 | lightColor: '#c0c4cc', 14 | borderColor: '#e4e7ed' 15 | } 16 | 17 | export default color 18 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/actionSheet.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 16:44:35 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/actionSheet.js 9 | */ 10 | export default { 11 | // action-sheet组件 12 | actionSheet: { 13 | show: false, 14 | title: '', 15 | description: '', 16 | actions: () => [], 17 | index: '', 18 | cancelText: '', 19 | closeOnClickAction: true, 20 | safeAreaInsetBottom: true, 21 | openType: '', 22 | closeOnClickOverlay: true, 23 | round: 0 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/album.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 16:47:24 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/album.js 9 | */ 10 | export default { 11 | // album 组件 12 | album: { 13 | urls: () => [], 14 | keyName: '', 15 | singleSize: 180, 16 | multipleSize: 70, 17 | space: 6, 18 | singleMode: 'scaleToFill', 19 | multipleMode: 'aspectFill', 20 | maxCount: 9, 21 | previewFullImage: true, 22 | rowCount: 3, 23 | showMore: true 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/alert.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 16:48:53 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/alert.js 9 | */ 10 | export default { 11 | // alert警告组件 12 | alert: { 13 | title: '', 14 | type: 'warning', 15 | description: '', 16 | closable: false, 17 | showIcon: false, 18 | effect: 'light', 19 | center: false, 20 | fontSize: 14 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/avatar.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 16:49:22 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/avatar.js 9 | */ 10 | export default { 11 | // avatar 组件 12 | avatar: { 13 | src: '', 14 | shape: 'circle', 15 | size: 40, 16 | mode: 'scaleToFill', 17 | text: '', 18 | bgColor: '#c0c4cc', 19 | color: '#ffffff', 20 | fontSize: 18, 21 | icon: '', 22 | mpAvatar: false, 23 | randomBgColor: false, 24 | defaultUrl: '', 25 | colorIndex: '', 26 | name: '' 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/avatarGroup.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 16:49:55 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/avatarGroup.js 9 | */ 10 | export default { 11 | // avatarGroup 组件 12 | avatarGroup: { 13 | urls: () => [], 14 | maxCount: 5, 15 | shape: 'circle', 16 | mode: 'scaleToFill', 17 | showMore: true, 18 | size: 40, 19 | keyName: '', 20 | gap: 0.5, 21 | extraValue: 0 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/backtop.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 16:50:18 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/backtop.js 9 | */ 10 | export default { 11 | // backtop组件 12 | backtop: { 13 | mode: 'circle', 14 | icon: 'arrow-upward', 15 | text: '', 16 | duration: 100, 17 | scrollTop: 0, 18 | top: 400, 19 | bottom: 100, 20 | right: 20, 21 | zIndex: 9, 22 | iconStyle: () => ({ 23 | color: '#909399', 24 | fontSize: '19px' 25 | }) 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/badge.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-23 19:51:50 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/badge.js 9 | */ 10 | export default { 11 | // 徽标数组件 12 | badge: { 13 | isDot: false, 14 | value: '', 15 | show: true, 16 | max: 999, 17 | type: 'error', 18 | showZero: false, 19 | bgColor: null, 20 | color: null, 21 | shape: 'circle', 22 | numberType: 'overflow', 23 | offset: () => [], 24 | inverted: false, 25 | absolute: false 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/carKeyboard.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 16:53:20 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/carKeyboard.js 9 | */ 10 | export default { 11 | // 车牌号键盘 12 | carKeyboard: { 13 | random: false 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/cell.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-23 20:53:09 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/cell.js 9 | */ 10 | export default { 11 | // cell组件的props 12 | cell: { 13 | customClass: '', 14 | title: '', 15 | label: '', 16 | value: '', 17 | icon: '', 18 | disabled: false, 19 | border: true, 20 | center: false, 21 | url: '', 22 | linkType: 'navigateTo', 23 | clickable: false, 24 | isLink: false, 25 | required: false, 26 | arrowDirection: '', 27 | iconStyle: {}, 28 | rightIconStyle: {}, 29 | rightIcon: 'arrow-right', 30 | titleStyle: {}, 31 | size: '', 32 | stop: true, 33 | name: '' 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/cellGroup.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 16:54:16 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/cellGroup.js 9 | */ 10 | export default { 11 | // cell-group组件的props 12 | cellGroup: { 13 | title: '', 14 | border: true, 15 | customStyle: {} 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/checkbox.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-23 21:06:59 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/checkbox.js 9 | */ 10 | export default { 11 | // checkbox组件 12 | checkbox: { 13 | name: '', 14 | shape: '', 15 | size: '', 16 | checkbox: false, 17 | disabled: '', 18 | activeColor: '', 19 | inactiveColor: '', 20 | iconSize: '', 21 | iconColor: '', 22 | label: '', 23 | labelSize: '', 24 | labelColor: '', 25 | labelDisabled: '' 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/circleProgress.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 16:55:02 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/circleProgress.js 9 | */ 10 | export default { 11 | // circleProgress 组件 12 | circleProgress: { 13 | percentage: 30 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/code.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 16:55:27 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/code.js 9 | */ 10 | 11 | export default { 12 | // code 组件 13 | code: { 14 | seconds: 60, 15 | startText: '获取验证码', 16 | changeText: 'X秒重新获取', 17 | endText: '重新获取', 18 | keepRunning: false, 19 | uniqueKey: '' 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/codeInput.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 16:55:58 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/codeInput.js 9 | */ 10 | export default { 11 | // codeInput 组件 12 | codeInput: { 13 | adjustPosition: true, 14 | maxlength: 6, 15 | dot: false, 16 | mode: 'box', 17 | hairline: false, 18 | space: 10, 19 | value: '', 20 | focus: false, 21 | bold: false, 22 | color: '#606266', 23 | fontSize: 18, 24 | size: 35, 25 | disabledKeyboard: false, 26 | borderColor: '#c9cacc', 27 | disabledDot: true 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/col.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 16:56:12 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/col.js 9 | */ 10 | export default { 11 | // col 组件 12 | col: { 13 | span: 12, 14 | offset: 0, 15 | justify: 'start', 16 | align: 'stretch', 17 | textAlign: 'left' 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/collapse.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 16:56:30 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/collapse.js 9 | */ 10 | export default { 11 | // collapse 组件 12 | collapse: { 13 | value: null, 14 | accordion: false, 15 | border: true 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/collapseItem.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 16:56:42 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/collapseItem.js 9 | */ 10 | export default { 11 | // collapseItem 组件 12 | collapseItem: { 13 | title: '', 14 | value: '', 15 | label: '', 16 | disabled: false, 17 | isLink: true, 18 | clickable: true, 19 | border: true, 20 | align: 'left', 21 | name: '', 22 | icon: '', 23 | duration: 300 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/columnNotice.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 16:57:16 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/columnNotice.js 9 | */ 10 | export default { 11 | // columnNotice 组件 12 | columnNotice: { 13 | text: '', 14 | icon: 'volume', 15 | mode: '', 16 | color: '#f9ae3d', 17 | bgColor: '#fdf6ec', 18 | fontSize: 14, 19 | speed: 80, 20 | step: false, 21 | duration: 1500, 22 | disableTouch: true 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/countDown.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:11:29 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/countDown.js 9 | */ 10 | export default { 11 | // u-count-down 计时器组件 12 | countDown: { 13 | time: 0, 14 | format: 'HH:mm:ss', 15 | autoStart: true, 16 | millisecond: false 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/countTo.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 16:57:32 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/countTo.js 9 | */ 10 | export default { 11 | // countTo 组件 12 | countTo: { 13 | startVal: 0, 14 | endVal: 0, 15 | duration: 2000, 16 | autoplay: true, 17 | decimals: 0, 18 | useEasing: true, 19 | decimal: '.', 20 | color: '#606266', 21 | fontSize: 22, 22 | bold: false, 23 | separator: '' 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/divider.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 16:58:03 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/divider.js 9 | */ 10 | export default { 11 | // divider组件 12 | divider: { 13 | dashed: false, 14 | hairline: true, 15 | dot: false, 16 | textPosition: 'center', 17 | text: '', 18 | textSize: 14, 19 | textColor: '#909399', 20 | lineColor: '#dcdfe6' 21 | } 22 | 23 | } 24 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/empty.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:03:27 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/empty.js 9 | */ 10 | export default { 11 | // empty组件 12 | empty: { 13 | icon: '', 14 | text: '', 15 | textColor: '#c0c4cc', 16 | textSize: 14, 17 | iconColor: '#c0c4cc', 18 | iconSize: 90, 19 | mode: 'data', 20 | width: 160, 21 | height: 160, 22 | show: true, 23 | marginTop: 0 24 | } 25 | 26 | } 27 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/form.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:03:49 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/form.js 9 | */ 10 | export default { 11 | // form 组件 12 | form: { 13 | model: () => ({}), 14 | rules: () => ({}), 15 | errorType: 'message', 16 | borderBottom: true, 17 | labelPosition: 'left', 18 | labelWidth: 45, 19 | labelAlign: 'left', 20 | labelStyle: () => ({}) 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/formItem.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:04:32 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/formItem.js 9 | */ 10 | export default { 11 | // formItem 组件 12 | formItem: { 13 | label: '', 14 | prop: '', 15 | borderBottom: '', 16 | labelPosition: '', 17 | labelWidth: '', 18 | rightIcon: '', 19 | leftIcon: '', 20 | required: false, 21 | leftIconStyle: '', 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/gap.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:05:25 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/gap.js 9 | */ 10 | export default { 11 | // gap组件 12 | gap: { 13 | bgColor: 'transparent', 14 | height: 20, 15 | marginTop: 0, 16 | marginBottom: 0, 17 | customStyle: {} 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/grid.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:05:57 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/grid.js 9 | */ 10 | export default { 11 | // grid组件 12 | grid: { 13 | col: 3, 14 | border: false, 15 | align: 'left' 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/gridItem.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:06:13 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/gridItem.js 9 | */ 10 | export default { 11 | // grid-item组件 12 | gridItem: { 13 | name: null, 14 | bgColor: 'transparent' 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/indexAnchor.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:13:15 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/indexAnchor.js 9 | */ 10 | export default { 11 | // indexAnchor 组件 12 | indexAnchor: { 13 | text: '', 14 | color: '#606266', 15 | size: 14, 16 | bgColor: '#dedede', 17 | height: 32 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/indexList.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:13:35 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/indexList.js 9 | */ 10 | export default { 11 | // indexList 组件 12 | indexList: { 13 | inactiveColor: '#606266', 14 | activeColor: '#5677fc', 15 | indexList: () => [], 16 | sticky: true, 17 | customNavHeight: 0 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/line.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:04:49 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/line.js 9 | */ 10 | export default { 11 | // line组件 12 | line: { 13 | color: '#d6d7d9', 14 | length: '100%', 15 | direction: 'row', 16 | hairline: true, 17 | margin: 0, 18 | dashed: false 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/lineProgress.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:14:11 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/lineProgress.js 9 | */ 10 | export default { 11 | // lineProgress 组件 12 | lineProgress: { 13 | activeColor: '#19be6b', 14 | inactiveColor: '#ececec', 15 | percentage: 0, 16 | showText: true, 17 | height: 12 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/link.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:45:36 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/link.js 9 | */ 10 | import config from '../config' 11 | 12 | const { 13 | color 14 | } = config 15 | export default { 16 | // link超链接组件props参数 17 | link: { 18 | color: color['u-primary'], 19 | fontSize: 15, 20 | underLine: false, 21 | href: '', 22 | mpTips: '链接已复制,请在浏览器打开', 23 | lineColor: '', 24 | text: '' 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/list.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:14:53 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/list.js 9 | */ 10 | export default { 11 | // list 组件 12 | list: { 13 | showScrollbar: false, 14 | lowerThreshold: 50, 15 | upperThreshold: 0, 16 | scrollTop: 0, 17 | offsetAccuracy: 10, 18 | enableFlex: false, 19 | pagingEnabled: false, 20 | scrollable: true, 21 | scrollIntoView: '', 22 | scrollWithAnimation: false, 23 | enableBackToTop: false, 24 | height: 0, 25 | width: 0, 26 | preLoadScreen: 1 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/listItem.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:15:40 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/listItem.js 9 | */ 10 | export default { 11 | // listItem 组件 12 | listItem: { 13 | anchor: '' 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/loadingIcon.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:45:47 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/loadingIcon.js 9 | */ 10 | import config from '../config' 11 | 12 | const { 13 | color 14 | } = config 15 | export default { 16 | // loading-icon加载中图标组件 17 | loadingIcon: { 18 | show: true, 19 | color: color['u-tips-color'], 20 | textColor: color['u-tips-color'], 21 | vertical: false, 22 | mode: 'spinner', 23 | size: 24, 24 | textSize: 15, 25 | text: '', 26 | timingFunction: 'ease-in-out', 27 | duration: 1200, 28 | inactiveColor: '' 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/loadingPage.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:00:23 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/loadingPage.js 9 | */ 10 | export default { 11 | // loading-page组件 12 | loadingPage: { 13 | loadingText: '正在加载', 14 | image: '', 15 | loadingMode: 'circle', 16 | loading: false, 17 | bgColor: '#ffffff', 18 | color: '#C8C8C8', 19 | fontSize: 19, 20 | iconSize: 28, 21 | loadingColor: '#C8C8C8' 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/noticeBar.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:17:13 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/noticeBar.js 9 | */ 10 | export default { 11 | // noticeBar 12 | noticeBar: { 13 | text: () => [], 14 | direction: 'row', 15 | step: false, 16 | icon: 'volume', 17 | mode: '', 18 | color: '#f9ae3d', 19 | bgColor: '#fdf6ec', 20 | speed: 80, 21 | fontSize: 14, 22 | duration: 2000, 23 | disableTouch: true, 24 | url: '', 25 | linkType: 'navigateTo' 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/notify.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:10:21 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/notify.js 9 | */ 10 | export default { 11 | // notify组件 12 | notify: { 13 | top: 0, 14 | type: 'primary', 15 | color: '#ffffff', 16 | bgColor: '', 17 | message: '', 18 | duration: 3000, 19 | fontSize: 15, 20 | safeAreaInsetTop: false 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/numberKeyboard.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:08:05 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/numberKeyboard.js 9 | */ 10 | export default { 11 | // 数字键盘 12 | numberKeyboard: { 13 | mode: 'number', 14 | dotDisabled: false, 15 | random: false 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/overlay.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:06:50 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/overlay.js 9 | */ 10 | export default { 11 | // overlay组件 12 | overlay: { 13 | show: false, 14 | zIndex: 10070, 15 | duration: 300, 16 | opacity: 0.5 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/parse.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:17:33 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/parse.js 9 | */ 10 | export default { 11 | // parse 12 | parse: { 13 | copyLink: true, 14 | errorImg: '', 15 | lazyLoad: false, 16 | loadingImg: '', 17 | pauseVideo: true, 18 | previewImg: true, 19 | setTitle: true, 20 | showImgMenu: true 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/radio.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:02:34 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/radio.js 9 | */ 10 | export default { 11 | // radio组件 12 | radio: { 13 | name: '', 14 | shape: '', 15 | disabled: '', 16 | labelDisabled: '', 17 | activeColor: '', 18 | inactiveColor: '', 19 | iconSize: '', 20 | labelSize: '', 21 | label: '', 22 | labelColor: '', 23 | size: '', 24 | iconColor: '', 25 | placement: '' 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/rate.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:05:09 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/rate.js 9 | */ 10 | export default { 11 | // rate组件 12 | rate: { 13 | value: 1, 14 | count: 5, 15 | disabled: false, 16 | size: 18, 17 | inactiveColor: '#b2b2b2', 18 | activeColor: '#FA3534', 19 | gutter: 4, 20 | minCount: 1, 21 | allowHalf: false, 22 | activeIcon: 'star-fill', 23 | inactiveIcon: 'star', 24 | touchable: true 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/readMore.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:18:41 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/readMore.js 9 | */ 10 | export default { 11 | // readMore 12 | readMore: { 13 | showHeight: 400, 14 | toggle: false, 15 | closeText: '展开阅读全文', 16 | openText: '收起', 17 | color: '#2979ff', 18 | fontSize: 14, 19 | textIndent: '2em', 20 | name: '' 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/row.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:18:58 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/row.js 9 | */ 10 | export default { 11 | // row 12 | row: { 13 | gutter: 0, 14 | justify: 'start', 15 | align: 'center' 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/rowNotice.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:19:13 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/rowNotice.js 9 | */ 10 | export default { 11 | // rowNotice 12 | rowNotice: { 13 | text: '', 14 | icon: 'volume', 15 | mode: '', 16 | color: '#f9ae3d', 17 | bgColor: '#fdf6ec', 18 | fontSize: 14, 19 | speed: 80 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/scrollList.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:19:28 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/scrollList.js 9 | */ 10 | export default { 11 | // scrollList 12 | scrollList: { 13 | indicatorWidth: 50, 14 | indicatorBarWidth: 20, 15 | indicator: true, 16 | indicatorColor: '#f2f2f2', 17 | indicatorActiveColor: '#3c9cff', 18 | indicatorStyle: '' 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/section.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:07:33 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/section.js 9 | */ 10 | export default { 11 | // u-section组件 12 | section: { 13 | title: '', 14 | subTitle: '更多', 15 | right: true, 16 | fontSize: 15, 17 | bold: true, 18 | color: '#303133', 19 | subColor: '#909399', 20 | showLine: true, 21 | lineColor: '', 22 | arrow: true 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/skeleton.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:20:14 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/skeleton.js 9 | */ 10 | export default { 11 | // skeleton 12 | skeleton: { 13 | loading: true, 14 | animate: true, 15 | rows: 0, 16 | rowsWidth: '100%', 17 | rowsHeight: 18, 18 | title: true, 19 | titleWidth: '50%', 20 | titleHeight: 18, 21 | avatar: false, 22 | avatarSize: 32, 23 | avatarShape: 'circle' 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/slider.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:08:25 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/slider.js 9 | */ 10 | export default { 11 | // slider组件 12 | slider: { 13 | value: 0, 14 | blockSize: 18, 15 | min: 0, 16 | max: 100, 17 | step: 1, 18 | activeColor: '#2979ff', 19 | inactiveColor: '#c0c4cc', 20 | blockColor: '#ffffff', 21 | showValue: false, 22 | disabled:false, 23 | blockStyle: () => {} 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/statusBar.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:20:39 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/statusBar.js 9 | */ 10 | export default { 11 | // statusBar 12 | statusBar: { 13 | bgColor: 'transparent' 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/steps.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:12:37 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/steps.js 9 | */ 10 | export default { 11 | // steps组件 12 | steps: { 13 | direction: 'row', 14 | current: 0, 15 | activeColor: '#3c9cff', 16 | inactiveColor: '#969799', 17 | activeIcon: '', 18 | inactiveIcon: '', 19 | dot: false 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/stepsItem.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:12:55 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/stepsItem.js 9 | */ 10 | export default { 11 | // steps-item组件 12 | stepsItem: { 13 | title: '', 14 | desc: '', 15 | iconSize: 17, 16 | error: false 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/sticky.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:01:30 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/sticky.js 9 | */ 10 | export default { 11 | // sticky组件 12 | sticky: { 13 | offsetTop: 0, 14 | customNavHeight: 0, 15 | disabled: false, 16 | bgColor: 'transparent', 17 | zIndex: '', 18 | index: '' 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/subsection.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:12:20 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/subsection.js 9 | */ 10 | export default { 11 | // subsection组件 12 | subsection: { 13 | list: [], 14 | current: 0, 15 | activeColor: '#3c9cff', 16 | inactiveColor: '#303133', 17 | mode: 'button', 18 | fontSize: 12, 19 | bold: true, 20 | bgColor: '#eeeeef', 21 | keyName: 'name' 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/swipeAction.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:00:42 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/swipeAction.js 9 | */ 10 | export default { 11 | // swipe-action组件 12 | swipeAction: { 13 | autoClose: true 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/swipeActionItem.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:01:13 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/swipeActionItem.js 9 | */ 10 | export default { 11 | // swipeActionItem 组件 12 | swipeActionItem: { 13 | show: false, 14 | name: '', 15 | disabled: false, 16 | threshold: 20, 17 | autoClose: true, 18 | options: [], 19 | duration: 300 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/swipterIndicator.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:22:07 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/swiperIndicator.js 9 | */ 10 | export default { 11 | // swiperIndicator 组件 12 | swiperIndicator: { 13 | length: 0, 14 | current: 0, 15 | indicatorActiveColor: '', 16 | indicatorInactiveColor: '', 17 | indicatorMode: 'line' 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/switch.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:22:24 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/switch.js 9 | */ 10 | export default { 11 | // switch 12 | switch: { 13 | loading: false, 14 | disabled: false, 15 | size: 25, 16 | activeColor: '#2979ff', 17 | inactiveColor: '#ffffff', 18 | value: false, 19 | activeValue: true, 20 | inactiveValue: false, 21 | asyncChange: false, 22 | space: 0 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/tabbar.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:22:40 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/tabbar.js 9 | */ 10 | export default { 11 | // tabbar 12 | tabbar: { 13 | value: null, 14 | safeAreaInsetBottom: true, 15 | border: true, 16 | zIndex: 1, 17 | activeColor: '#1989fa', 18 | inactiveColor: '#7d7e80', 19 | fixed: true, 20 | placeholder: true 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/tabbarItem.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:22:55 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/tabbarItem.js 9 | */ 10 | export default { 11 | // 12 | tabbarItem: { 13 | name: null, 14 | icon: '', 15 | badge: null, 16 | dot: false, 17 | text: '', 18 | badgeStyle: 'top: 6px;right:2px;' 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/tag.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:23:37 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/tag.js 9 | */ 10 | export default { 11 | // tag 组件 12 | tag: { 13 | type: 'primary', 14 | disabled: false, 15 | size: 'medium', 16 | shape: 'square', 17 | text: '', 18 | bgColor: '', 19 | color: '', 20 | borderColor: '', 21 | closeColor: '#C6C7CB', 22 | name: '', 23 | plainFill: false, 24 | plain: false, 25 | closable: false, 26 | show: true, 27 | icon: '' 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/toast.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:07:07 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/toast.js 9 | */ 10 | export default { 11 | // toast组件 12 | toast: { 13 | zIndex: 10090, 14 | loading: false, 15 | text: '', 16 | icon: '', 17 | type: '', 18 | loadingMode: '', 19 | show: '', 20 | overlay: false, 21 | position: 'center', 22 | params: () => {}, 23 | duration: 2000, 24 | isTab: false, 25 | url: '', 26 | callback: null, 27 | back: false 28 | } 29 | 30 | } 31 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/toolbar.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:24:55 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/toolbar.js 9 | */ 10 | export default { 11 | // toolbar 组件 12 | toolbar: { 13 | show: true, 14 | cancelText: '取消', 15 | confirmText: '确认', 16 | cancelColor: '#909193', 17 | confirmColor: '#3c9cff', 18 | title: '' 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/tooltip.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:25:14 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/tooltip.js 9 | */ 10 | export default { 11 | // tooltip 组件 12 | tooltip: { 13 | text: '', 14 | copyText: '', 15 | size: 14, 16 | color: '#606266', 17 | bgColor: 'transparent', 18 | direction: 'top', 19 | zIndex: 10071, 20 | showCopy: true, 21 | buttons: () => [], 22 | overlay: true, 23 | showToast: true 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/transition.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 16:59:00 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/transition.js 9 | */ 10 | export default { 11 | // transition动画组件的props 12 | transition: { 13 | show: false, 14 | mode: 'fade', 15 | duration: '300', 16 | timingFunction: 'ease-out' 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/zIndex.js: -------------------------------------------------------------------------------- 1 | // uniapp在H5中各API的z-index值如下: 2 | /** 3 | * actionsheet: 999 4 | * modal: 999 5 | * navigate: 998 6 | * tabbar: 998 7 | * toast: 999 8 | */ 9 | 10 | export default { 11 | toast: 10090, 12 | noNetwork: 10080, 13 | // popup包含popup,actionsheet,keyboard,picker的值 14 | popup: 10075, 15 | mask: 10070, 16 | navbar: 980, 17 | topTips: 975, 18 | sticky: 970, 19 | indexListSticky: 965 20 | } 21 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/css/components.scss: -------------------------------------------------------------------------------- 1 | @import "./mixin.scss"; 2 | 3 | /* #ifndef APP-NVUE */ 4 | // 由于uView是基于nvue环境进行开发的,此环境中普通元素默认为flex-direction: column; 5 | // 所以在非nvue中,需要对元素进行重置为flex-direction: column; 否则可能会表现异常 6 | view, scroll-view, swiper-item { 7 | display: flex; 8 | flex-direction: column; 9 | flex-shrink: 0; 10 | flex-grow: 0; 11 | flex-basis: auto; 12 | align-items: stretch; 13 | align-content: flex-start; 14 | } 15 | /* #endif */ 16 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/css/h5.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/uni_modules/uview-ui/libs/css/h5.scss -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/css/mixin.scss: -------------------------------------------------------------------------------- 1 | // 通过scss的mixin功能,把原来需要写4行的css,变成一行 2 | // 目的是保持代码干净整洁,不至于在nvue下,到处都要写display:flex的条件编译 3 | @mixin flex($direction: row) { 4 | /* #ifndef APP-NVUE */ 5 | display: flex; 6 | /* #endif */ 7 | flex-direction: $direction; 8 | } 9 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/css/mp.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/uni_modules/uview-ui/libs/css/mp.scss -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/css/nvue.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/uni_modules/uview-ui/libs/css/nvue.scss -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/css/vue.scss: -------------------------------------------------------------------------------- 1 | // 历遍生成4个方向的底部安全区 2 | @each $d in top, right, bottom, left { 3 | .u-safe-area-inset-#{$d} { 4 | padding-#{$d}: 0; 5 | padding-#{$d}: constant(safe-area-inset-#{$d}); 6 | padding-#{$d}: env(safe-area-inset-#{$d}); 7 | } 8 | } 9 | 10 | //提升H5端uni.toast()的层级,避免被uView的modal等遮盖 11 | /* #ifdef H5 */ 12 | uni-toast { 13 | z-index: 10090; 14 | } 15 | uni-toast .uni-toast { 16 | z-index: 10090; 17 | } 18 | /* #endif */ 19 | 20 | // 隐藏scroll-view的滚动条 21 | ::-webkit-scrollbar { 22 | display: none; 23 | width: 0 !important; 24 | height: 0 !important; 25 | -webkit-appearance: none; 26 | background: transparent; 27 | } -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/luch-request/core/buildFullPath.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | import isAbsoluteURL from '../helpers/isAbsoluteURL' 4 | import combineURLs from '../helpers/combineURLs' 5 | 6 | /** 7 | * Creates a new URL by combining the baseURL with the requestedURL, 8 | * only when the requestedURL is not already an absolute URL. 9 | * If the requestURL is absolute, this function returns the requestedURL untouched. 10 | * 11 | * @param {string} baseURL The base URL 12 | * @param {string} requestedURL Absolute or relative URL to combine 13 | * @returns {string} The combined full path 14 | */ 15 | export default function buildFullPath(baseURL, requestedURL) { 16 | if (baseURL && !isAbsoluteURL(requestedURL)) { 17 | return combineURLs(baseURL, requestedURL) 18 | } 19 | return requestedURL 20 | } 21 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/luch-request/core/defaults.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 默认的全局配置 3 | */ 4 | 5 | export default { 6 | baseURL: '', 7 | header: {}, 8 | method: 'GET', 9 | dataType: 'json', 10 | // #ifndef MP-ALIPAY 11 | responseType: 'text', 12 | // #endif 13 | custom: {}, 14 | // #ifdef H5 || APP-PLUS || MP-ALIPAY || MP-WEIXIN 15 | timeout: 60000, 16 | // #endif 17 | // #ifdef APP-PLUS 18 | sslVerify: true, 19 | // #endif 20 | // #ifdef H5 21 | withCredentials: false, 22 | // #endif 23 | // #ifdef APP-PLUS 24 | firstIpv4: false, 25 | // #endif 26 | validateStatus: function validateStatus(status) { 27 | return status >= 200 && status < 300 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/luch-request/core/dispatchRequest.js: -------------------------------------------------------------------------------- 1 | import adapter from '../adapters/index' 2 | 3 | export default (config) => adapter(config) 4 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/luch-request/core/settle.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Resolve or reject a Promise based on response status. 3 | * 4 | * @param {Function} resolve A function that resolves the promise. 5 | * @param {Function} reject A function that rejects the promise. 6 | * @param {object} response The response. 7 | */ 8 | export default function settle(resolve, reject, response) { 9 | const { validateStatus } = response.config 10 | const status = response.statusCode 11 | if (status && (!validateStatus || validateStatus(status))) { 12 | resolve(response) 13 | } else { 14 | reject(response) 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/luch-request/helpers/combineURLs.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | /** 4 | * Creates a new URL by combining the specified URLs 5 | * 6 | * @param {string} baseURL The base URL 7 | * @param {string} relativeURL The relative URL 8 | * @returns {string} The combined URL 9 | */ 10 | export default function combineURLs(baseURL, relativeURL) { 11 | return relativeURL 12 | ? `${baseURL.replace(/\/+$/, '')}/${relativeURL.replace(/^\/+/, '')}` 13 | : baseURL 14 | } 15 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/luch-request/helpers/isAbsoluteURL.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | /** 4 | * Determines whether the specified URL is absolute 5 | * 6 | * @param {string} url The URL to test 7 | * @returns {boolean} True if the specified URL is absolute, otherwise false 8 | */ 9 | export default function isAbsoluteURL(url) { 10 | // A URL is considered absolute if it begins with "://" or "//" (protocol-relative URL). 11 | // RFC 3986 defines scheme name as a sequence of characters beginning with a letter and followed 12 | // by any combination of letters, digits, plus, period, or hyphen. 13 | return /^([a-z][a-z\d+\-.]*:)?\/\//i.test(url) 14 | } 15 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/luch-request/index.js: -------------------------------------------------------------------------------- 1 | import Request from './core/Request' 2 | 3 | export default Request 4 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/mixin/button.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | lang: String, 4 | sessionFrom: String, 5 | sendMessageTitle: String, 6 | sendMessagePath: String, 7 | sendMessageImg: String, 8 | showMessageCard: Boolean, 9 | appParameter: String, 10 | formType: String, 11 | openType: String 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/mixin/mpMixin.js: -------------------------------------------------------------------------------- 1 | export default { 2 | // #ifdef MP-WEIXIN 3 | // 将自定义节点设置成虚拟的,更加接近Vue组件的表现,能更好的使用flex属性 4 | options: { 5 | virtualHost: true 6 | } 7 | // #endif 8 | } 9 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/mixin/mpShare.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | onLoad() { 3 | // 设置默认的转发参数 4 | uni.$u.mpShare = { 5 | title: '', // 默认为小程序名称 6 | path: '', // 默认为当前页面路径 7 | imageUrl: '' // 默认为当前页面的截图 8 | } 9 | }, 10 | onShareAppMessage() { 11 | return uni.$u.mpShare 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/mixin/openType.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | openType: String 4 | }, 5 | methods: { 6 | onGetUserInfo(event) { 7 | this.$emit('getuserinfo', event.detail) 8 | }, 9 | onContact(event) { 10 | this.$emit('contact', event.detail) 11 | }, 12 | onGetPhoneNumber(event) { 13 | this.$emit('getphonenumber', event.detail) 14 | }, 15 | onError(event) { 16 | this.$emit('error', event.detail) 17 | }, 18 | onLaunchApp(event) { 19 | this.$emit('launchapp', event.detail) 20 | }, 21 | onOpenSetting(event) { 22 | this.$emit('opensetting', event.detail) 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /unpackage/cache/apk/apkurl: -------------------------------------------------------------------------------- 1 | https://ide.dcloud.net.cn/build/download/2214e8e0-a913-11ed-90d6-bbe9fac5ce29 -------------------------------------------------------------------------------- /unpackage/cache/certdata: -------------------------------------------------------------------------------- 1 | andrCertfile=D:/HBuilderX.3.6.4.20220922/HBuilderX/plugins/app-safe-pack/Test.keystore 2 | andrCertAlias=android 3 | andrCertPass=ep/Tdjka4Y7WYqDB6/S7dw== 4 | -------------------------------------------------------------------------------- /unpackage/cache/wgt/__UNI__BF90A6D/__uniapperror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/cache/wgt/__UNI__BF90A6D/__uniapperror.png -------------------------------------------------------------------------------- /unpackage/cache/wgt/__UNI__BF90A6D/__uniappsuccess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/cache/wgt/__UNI__BF90A6D/__uniappsuccess.png -------------------------------------------------------------------------------- /unpackage/cache/wgt/__UNI__BF90A6D/static/customicons.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: "customicons"; /* Project id 2878519 */ 3 | src:url('/static/customicons.ttf') format('truetype'); 4 | } 5 | 6 | .customicons { 7 | font-family: "customicons" !important; 8 | } 9 | 10 | .youxi:before { 11 | content: "\e60e"; 12 | } 13 | 14 | .wenjian:before { 15 | content: "\e60f"; 16 | } 17 | 18 | .zhuanfa:before { 19 | content: "\e610"; 20 | } 21 | -------------------------------------------------------------------------------- /unpackage/cache/wgt/__UNI__BF90A6D/static/customicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/cache/wgt/__UNI__BF90A6D/static/customicons.ttf -------------------------------------------------------------------------------- /unpackage/cache/wgt/__UNI__BF90A6D/static/icon/iconfont.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: "iconfont"; /* Project id 3885034 */ 3 | src: url('/static/icon/iconfont.woff2?t=1675820195472') format('woff2'), 4 | url('/static/icon/iconfont.woff?t=1675820195472') format('woff'), 5 | url('/static/icon/iconfont.ttf?t=1675820195472') format('truetype'); 6 | } 7 | 8 | .iconfont { 9 | font-family: "iconfont" !important; 10 | font-size: 16px; 11 | font-style: normal; 12 | -webkit-font-smoothing: antialiased; 13 | -moz-osx-font-smoothing: grayscale; 14 | } 15 | 16 | .icon-open:before { 17 | content: "\e668"; 18 | } 19 | 20 | .icon-close:before { 21 | content: "\e796"; 22 | } 23 | 24 | -------------------------------------------------------------------------------- /unpackage/cache/wgt/__UNI__BF90A6D/static/icon/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/cache/wgt/__UNI__BF90A6D/static/icon/iconfont.ttf -------------------------------------------------------------------------------- /unpackage/cache/wgt/__UNI__BF90A6D/static/icon/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/cache/wgt/__UNI__BF90A6D/static/icon/iconfont.woff -------------------------------------------------------------------------------- /unpackage/cache/wgt/__UNI__BF90A6D/static/icon/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/cache/wgt/__UNI__BF90A6D/static/icon/iconfont.woff2 -------------------------------------------------------------------------------- /unpackage/cache/wgt/__UNI__BF90A6D/static/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/cache/wgt/__UNI__BF90A6D/static/images/close.png -------------------------------------------------------------------------------- /unpackage/cache/wgt/__UNI__BF90A6D/static/images/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/cache/wgt/__UNI__BF90A6D/static/images/head.png -------------------------------------------------------------------------------- /unpackage/cache/wgt/__UNI__BF90A6D/static/images/icon_home_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/cache/wgt/__UNI__BF90A6D/static/images/icon_home_checked.png -------------------------------------------------------------------------------- /unpackage/cache/wgt/__UNI__BF90A6D/static/images/icon_home_nochecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/cache/wgt/__UNI__BF90A6D/static/images/icon_home_nochecked.png -------------------------------------------------------------------------------- /unpackage/cache/wgt/__UNI__BF90A6D/static/images/icon_mine_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/cache/wgt/__UNI__BF90A6D/static/images/icon_mine_checked.png -------------------------------------------------------------------------------- /unpackage/cache/wgt/__UNI__BF90A6D/static/images/icon_mine_nochecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/cache/wgt/__UNI__BF90A6D/static/images/icon_mine_nochecked.png -------------------------------------------------------------------------------- /unpackage/cache/wgt/__UNI__BF90A6D/static/images/icon_shenpi_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/cache/wgt/__UNI__BF90A6D/static/images/icon_shenpi_checked.png -------------------------------------------------------------------------------- /unpackage/cache/wgt/__UNI__BF90A6D/static/images/icon_shenpi_nochecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/cache/wgt/__UNI__BF90A6D/static/images/icon_shenpi_nochecked.png -------------------------------------------------------------------------------- /unpackage/cache/wgt/__UNI__BF90A6D/static/images/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/cache/wgt/__UNI__BF90A6D/static/images/img.png -------------------------------------------------------------------------------- /unpackage/cache/wgt/__UNI__BF90A6D/static/images/login_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/cache/wgt/__UNI__BF90A6D/static/images/login_bg.jpg -------------------------------------------------------------------------------- /unpackage/cache/wgt/__UNI__BF90A6D/static/images/qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/cache/wgt/__UNI__BF90A6D/static/images/qq.png -------------------------------------------------------------------------------- /unpackage/cache/wgt/__UNI__BF90A6D/static/images/round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/cache/wgt/__UNI__BF90A6D/static/images/round.png -------------------------------------------------------------------------------- /unpackage/cache/wgt/__UNI__BF90A6D/static/images/update-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/cache/wgt/__UNI__BF90A6D/static/images/update-img.png -------------------------------------------------------------------------------- /unpackage/cache/wgt/__UNI__BF90A6D/static/images/wx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/cache/wgt/__UNI__BF90A6D/static/images/wx.png -------------------------------------------------------------------------------- /unpackage/cache/wgt/__UNI__BF90A6D/static/uni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/cache/wgt/__UNI__BF90A6D/static/uni.png -------------------------------------------------------------------------------- /unpackage/cache/wgt/__UNI__BF90A6D/uni_modules/uni-icons/components/uni-icons/uniicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/cache/wgt/__UNI__BF90A6D/uni_modules/uni-icons/components/uni-icons/uniicons.ttf -------------------------------------------------------------------------------- /unpackage/debug/.roid.ins: -------------------------------------------------------------------------------- 1 | forceInstall -------------------------------------------------------------------------------- /unpackage/dist/build/.automator/app-plus/.automator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/build/.automator/app-plus/.automator.json -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/__uniapperror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/build/app-plus/__uniapperror.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/__uniappsuccess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/build/app-plus/__uniappsuccess.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/customicons.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: "customicons"; /* Project id 2878519 */ 3 | src:url('/static/customicons.ttf') format('truetype'); 4 | } 5 | 6 | .customicons { 7 | font-family: "customicons" !important; 8 | } 9 | 10 | .youxi:before { 11 | content: "\e60e"; 12 | } 13 | 14 | .wenjian:before { 15 | content: "\e60f"; 16 | } 17 | 18 | .zhuanfa:before { 19 | content: "\e610"; 20 | } 21 | -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/customicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/build/app-plus/static/customicons.ttf -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/icon/iconfont.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: "iconfont"; /* Project id 3885034 */ 3 | src: url('/static/icon/iconfont.woff2?t=1675820195472') format('woff2'), 4 | url('/static/icon/iconfont.woff?t=1675820195472') format('woff'), 5 | url('/static/icon/iconfont.ttf?t=1675820195472') format('truetype'); 6 | } 7 | 8 | .iconfont { 9 | font-family: "iconfont" !important; 10 | font-size: 16px; 11 | font-style: normal; 12 | -webkit-font-smoothing: antialiased; 13 | -moz-osx-font-smoothing: grayscale; 14 | } 15 | 16 | .icon-open:before { 17 | content: "\e668"; 18 | } 19 | 20 | .icon-close:before { 21 | content: "\e796"; 22 | } 23 | 24 | -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/icon/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/build/app-plus/static/icon/iconfont.ttf -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/icon/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/build/app-plus/static/icon/iconfont.woff -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/icon/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/build/app-plus/static/icon/iconfont.woff2 -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/build/app-plus/static/images/close.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/images/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/build/app-plus/static/images/head.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/images/icon_home_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/build/app-plus/static/images/icon_home_checked.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/images/icon_home_nochecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/build/app-plus/static/images/icon_home_nochecked.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/images/icon_mine_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/build/app-plus/static/images/icon_mine_checked.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/images/icon_mine_nochecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/build/app-plus/static/images/icon_mine_nochecked.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/images/icon_shenpi_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/build/app-plus/static/images/icon_shenpi_checked.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/images/icon_shenpi_nochecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/build/app-plus/static/images/icon_shenpi_nochecked.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/images/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/build/app-plus/static/images/img.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/images/login_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/build/app-plus/static/images/login_bg.jpg -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/images/qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/build/app-plus/static/images/qq.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/images/round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/build/app-plus/static/images/round.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/images/update-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/build/app-plus/static/images/update-img.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/images/wx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/build/app-plus/static/images/wx.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/uni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/build/app-plus/static/uni.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/uni_modules/uni-icons/components/uni-icons/uniicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/build/app-plus/uni_modules/uni-icons/components/uni-icons/uniicons.ttf -------------------------------------------------------------------------------- /unpackage/dist/dev/.automator/app-plus/.automator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/.automator/app-plus/.automator.json -------------------------------------------------------------------------------- /unpackage/dist/dev/.automator/mp-weixin/.automator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/.automator/mp-weixin/.automator.json -------------------------------------------------------------------------------- /unpackage/dist/dev/.sourcemap/mp-weixin/subpages/test/test.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":["uni-app:///main.js"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;;;;AAAA;AAGA;AACA;AAHA;AACAA,EAAE,CAACC,iCAAiC,GAAGC,mBAAmB;AAG1DC,UAAU,CAACC,aAAI,CAAC,C","file":"subpages/test/test.js","sourcesContent":["import 'uni-pages';\n// @ts-ignore\nwx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './subpages/test/test.vue'\ncreatePage(Page)"],"sourceRoot":""} -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/__uniapperror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/app-plus/__uniapperror.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/__uniappsuccess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/app-plus/__uniappsuccess.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/customicons.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: "customicons"; /* Project id 2878519 */ 3 | src:url('/static/customicons.ttf') format('truetype'); 4 | } 5 | 6 | .customicons { 7 | font-family: "customicons" !important; 8 | } 9 | 10 | .youxi:before { 11 | content: "\e60e"; 12 | } 13 | 14 | .wenjian:before { 15 | content: "\e60f"; 16 | } 17 | 18 | .zhuanfa:before { 19 | content: "\e610"; 20 | } 21 | -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/customicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/app-plus/static/customicons.ttf -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/icon/iconfont.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: "iconfont"; /* Project id 3885034 */ 3 | src: url('/static/icon/iconfont.woff2?t=1675820195472') format('woff2'), 4 | url('/static/icon/iconfont.woff?t=1675820195472') format('woff'), 5 | url('/static/icon/iconfont.ttf?t=1675820195472') format('truetype'); 6 | } 7 | 8 | .iconfont { 9 | font-family: "iconfont" !important; 10 | font-size: 16px; 11 | font-style: normal; 12 | -webkit-font-smoothing: antialiased; 13 | -moz-osx-font-smoothing: grayscale; 14 | } 15 | 16 | .icon-open:before { 17 | content: "\e668"; 18 | } 19 | 20 | .icon-close:before { 21 | content: "\e796"; 22 | } 23 | 24 | -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/icon/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/app-plus/static/icon/iconfont.ttf -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/icon/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/app-plus/static/icon/iconfont.woff -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/icon/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/app-plus/static/icon/iconfont.woff2 -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/images/bg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/app-plus/static/images/bg1.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/images/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/app-plus/static/images/bg2.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/app-plus/static/images/close.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/images/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/app-plus/static/images/head.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/images/icon_home_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/app-plus/static/images/icon_home_checked.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/images/icon_home_nochecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/app-plus/static/images/icon_home_nochecked.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/images/icon_mine_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/app-plus/static/images/icon_mine_checked.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/images/icon_mine_nochecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/app-plus/static/images/icon_mine_nochecked.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/images/icon_shenpi_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/app-plus/static/images/icon_shenpi_checked.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/images/icon_shenpi_nochecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/app-plus/static/images/icon_shenpi_nochecked.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/images/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/app-plus/static/images/img.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/images/login_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/app-plus/static/images/login_bg.jpg -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/images/qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/app-plus/static/images/qq.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/images/round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/app-plus/static/images/round.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/images/update-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/app-plus/static/images/update-img.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/images/wx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/app-plus/static/images/wx.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/uni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/app-plus/static/uni.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/uni_modules/uni-icons/components/uni-icons/uniicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/app-plus/uni_modules/uni-icons/components/uni-icons/uniicons.ttf -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/app.js: -------------------------------------------------------------------------------- 1 | 2 | require('./common/runtime.js') 3 | require('./common/vendor.js') 4 | require('./common/main.js') -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/app.wxss: -------------------------------------------------------------------------------- 1 | @import './common/main.wxss'; 2 | 3 | [data-custom-hidden="true"],[bind-data-custom-hidden="true"]{display: none !important;} -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/404/404.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "404", 3 | "enablePullDownRefresh": false, 4 | "usingComponents": {} 5 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/404/404.wxml: -------------------------------------------------------------------------------- 1 | 暂无该页面 -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/home/home.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "首页", 3 | "enablePullDownRefresh": true, 4 | "usingComponents": { 5 | "u-button": "/uni_modules/uview-ui/components/u-button/u-button" 6 | } 7 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/home/home.wxml: -------------------------------------------------------------------------------- 1 | {{"当前经度"+count+":"+longitude}}{{"当前纬度"+count+":"+latitude}}跳转分包页面 -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/login/login.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "登录页", 3 | "enablePullDownRefresh": false, 4 | "navigationStyle": "custom", 5 | "usingComponents": {} 6 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/mine/mine.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "个人中心", 3 | "enablePullDownRefresh": false, 4 | "usingComponents": { 5 | "u-button": "/uni_modules/uview-ui/components/u-button/u-button" 6 | } 7 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/mine/mine.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/mine/mine.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /* 水平间距 */ 3 | /* 水平间距 */ 4 | .mine { 5 | width: 100%; 6 | } 7 | 8 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/versionUpdate/versionUpdate.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "APP更新", 3 | "navigationStyle": "custom", 4 | "usingComponents": {} 5 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/webView/webView.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "H5页面", 3 | "navigationStyle": "custom", 4 | "enablePullDownRefresh": false, 5 | "usingComponents": {} 6 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/webView/webView.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/project.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "项目配置文件。", 3 | "packOptions": { 4 | "ignore": [], 5 | "include": [] 6 | }, 7 | "setting": { 8 | "urlCheck": false, 9 | "es6": true, 10 | "postcss": true, 11 | "minified": true, 12 | "newFeature": true, 13 | "bigPackageSizeSupport": true, 14 | "babelSetting": { 15 | "ignore": [], 16 | "disablePlugins": [], 17 | "outputPath": "" 18 | } 19 | }, 20 | "compileType": "miniprogram", 21 | "libVersion": "2.30.0", 22 | "appid": "wx8f1b38205bf8ed59", 23 | "projectname": "uniapp-uivew-template", 24 | "condition": {}, 25 | "editorSetting": { 26 | "tabIndent": "insertSpaces", 27 | "tabSize": 2 28 | } 29 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/project.private.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "项目私有配置文件。此文件中的内容将覆盖 project.config.json 中的相同字段。项目的改动优先同步到此文件中。详见文档:https://developers.weixin.qq.com/miniprogram/dev/devtools/projectconfig.html", 3 | "projectname": "uniapp-uivew-template", 4 | "setting": { 5 | "compileHotReLoad": true 6 | } 7 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/customicons.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: "customicons"; /* Project id 2878519 */ 3 | src:url('/static/customicons.ttf') format('truetype'); 4 | } 5 | 6 | .customicons { 7 | font-family: "customicons" !important; 8 | } 9 | 10 | .youxi:before { 11 | content: "\e60e"; 12 | } 13 | 14 | .wenjian:before { 15 | content: "\e60f"; 16 | } 17 | 18 | .zhuanfa:before { 19 | content: "\e610"; 20 | } 21 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/customicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/mp-weixin/static/customicons.ttf -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/icon/iconfont.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: "iconfont"; /* Project id 3885034 */ 3 | src: url('/static/icon/iconfont.woff2?t=1675820195472') format('woff2'), 4 | url('/static/icon/iconfont.woff?t=1675820195472') format('woff'), 5 | url('/static/icon/iconfont.ttf?t=1675820195472') format('truetype'); 6 | } 7 | 8 | .iconfont { 9 | font-family: "iconfont" !important; 10 | font-size: 16px; 11 | font-style: normal; 12 | -webkit-font-smoothing: antialiased; 13 | -moz-osx-font-smoothing: grayscale; 14 | } 15 | 16 | .icon-open:before { 17 | content: "\e668"; 18 | } 19 | 20 | .icon-close:before { 21 | content: "\e796"; 22 | } 23 | 24 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/icon/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/mp-weixin/static/icon/iconfont.ttf -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/icon/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/mp-weixin/static/icon/iconfont.woff -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/icon/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/mp-weixin/static/icon/iconfont.woff2 -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/mp-weixin/static/images/close.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/images/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/mp-weixin/static/images/head.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/images/icon_home_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/mp-weixin/static/images/icon_home_checked.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/images/icon_home_nochecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/mp-weixin/static/images/icon_home_nochecked.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/images/icon_mine_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/mp-weixin/static/images/icon_mine_checked.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/images/icon_mine_nochecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/mp-weixin/static/images/icon_mine_nochecked.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/images/icon_shenpi_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/mp-weixin/static/images/icon_shenpi_checked.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/images/icon_shenpi_nochecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/mp-weixin/static/images/icon_shenpi_nochecked.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/images/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/mp-weixin/static/images/img.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/images/login_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/mp-weixin/static/images/login_bg.jpg -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/images/qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/mp-weixin/static/images/qq.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/images/round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/mp-weixin/static/images/round.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/images/update-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/mp-weixin/static/images/update-img.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/images/wx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/mp-weixin/static/images/wx.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/uni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w1466818955/uniapp-uview2-template/2f682223ea238ef2931295a9f952deb322d36a2b/unpackage/dist/dev/mp-weixin/static/uni.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/subpages/test.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "分包test页面", 3 | "enablePullDownRefresh": false, 4 | "usingComponents": {} 5 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/subpages/test.wxml: -------------------------------------------------------------------------------- 1 | 小程序分包测试页面 -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uni-icons/components/uni-icons/uni-icons.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uni-icons/components/uni-icons/uni-icons.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u--form/u--form.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "uv-form": "/uni_modules/uview-ui/components/u-form/u-form" 5 | } 6 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u--form/u--form.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u--input/u--input.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "uv-input": "/uni_modules/uview-ui/components/u-input/u-input" 5 | } 6 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u--text/u--text.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "uv-text": "/uni_modules/uview-ui/components/u-text/u-text" 5 | } 6 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u--text/u--text.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-album/u-album.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "u--text": "/uni_modules/uview-ui/components/u--text/u--text" 5 | } 6 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-badge/u-badge.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-badge/u-badge.wxml: -------------------------------------------------------------------------------- 1 | {{isDot?'':showValue}} -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-button/u-button.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "u-loading-icon": "/uni_modules/uview-ui/components/u-loading-icon/u-loading-icon", 5 | "u-icon": "/uni_modules/uview-ui/components/u-icon/u-icon" 6 | } 7 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-code/u-code.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-code/u-code.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-code/u-code.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /* 水平间距 */ 3 | /* 水平间距 */ 4 | view.data-v-1d88f349, scroll-view.data-v-1d88f349, swiper-item.data-v-1d88f349 { 5 | display: flex; 6 | flex-direction: column; 7 | flex-shrink: 0; 8 | flex-grow: 0; 9 | flex-basis: auto; 10 | align-items: stretch; 11 | align-content: flex-start; 12 | } 13 | 14 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-form-item/u-form-item.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "u-icon": "/uni_modules/uview-ui/components/u-icon/u-icon", 5 | "u-line": "/uni_modules/uview-ui/components/u-line/u-line" 6 | } 7 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-form/u-form.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-form/u-form.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-icon/u-icon.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-input/u-input.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "u-icon": "/uni_modules/uview-ui/components/u-icon/u-icon" 5 | } 6 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-line/u-line.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-line/u-line.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-line/u-line.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /* 水平间距 */ 3 | /* 水平间距 */ 4 | view.data-v-727e452e, scroll-view.data-v-727e452e, swiper-item.data-v-727e452e { 5 | display: flex; 6 | flex-direction: column; 7 | flex-shrink: 0; 8 | flex-grow: 0; 9 | flex-basis: auto; 10 | align-items: stretch; 11 | align-content: flex-start; 12 | } 13 | .u-line.data-v-727e452e { 14 | vertical-align: middle; 15 | } 16 | 17 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-link/u-link.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-link/u-link.wxml: -------------------------------------------------------------------------------- 1 | {{text}} -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-link/u-link.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /* 水平间距 */ 3 | /* 水平间距 */ 4 | view.data-v-15816aae, scroll-view.data-v-15816aae, swiper-item.data-v-15816aae { 5 | display: flex; 6 | flex-direction: column; 7 | flex-shrink: 0; 8 | flex-grow: 0; 9 | flex-basis: auto; 10 | align-items: stretch; 11 | align-content: flex-start; 12 | } 13 | .u-link.data-v-15816aae { 14 | line-height: 1; 15 | display: flex; 16 | flex-direction: row; 17 | flex-wrap: wrap; 18 | flex: 1; 19 | } 20 | 21 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-loading-icon/u-loading-icon.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-swiper-indicator/u-swiper-indicator.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-swiper/u-swiper.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "u-loading-icon": "/uni_modules/uview-ui/components/u-loading-icon/u-loading-icon", 5 | "u-swiper-indicator": "/uni_modules/uview-ui/components/u-swiper-indicator/u-swiper-indicator" 6 | } 7 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-tabs/u-tabs.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "u-badge": "/uni_modules/uview-ui/components/u-badge/u-badge" 5 | } 6 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-text/u-text.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "u-icon": "/uni_modules/uview-ui/components/u-icon/u-icon", 5 | "u-link": "/uni_modules/uview-ui/components/u-link/u-link" 6 | } 7 | } -------------------------------------------------------------------------------- /utils/common.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author: Ygm 3 | * @Date: 2022-09-18 21:43:24 4 | * @LastEditors: Ygm 5 | * @LastEditTime: 2023-02-07 10:33:54 6 | * @Description: 工具函数 7 | */ 8 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | --------------------------------------------------------------------------------