├── .eslintignore ├── .hbuilderx └── launch.json ├── .idea ├── .gitignore ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml ├── uni-hmanage.iml └── vcs.xml ├── App.vue ├── common ├── http.api.js ├── http.interceptor.js └── utils.js ├── components ├── bbh-shopcar │ └── bbh-shopcar.vue ├── food-manage │ └── food-manage.vue ├── hm-news-detail │ ├── index.css │ ├── index.response.css │ └── index.vue ├── oss-upload │ └── oss-upload.vue ├── ss-calendar │ └── ss-calendar.vue ├── subject-list.vue ├── uni-goods-nav │ └── uni-goods-nav.vue ├── uni-icons │ ├── icons.js │ └── uni-icons.vue ├── uni-swipe-action-item │ ├── bindingx.js │ ├── index.wxs │ ├── mp.js │ ├── mpalipay.js │ ├── mpother.js │ ├── mpwxs.js │ └── uni-swipe-action-item.vue └── uni-swipe-action │ └── uni-swipe-action.vue ├── main.js ├── manifest.json ├── pages.json ├── pages ├── auth │ └── login.vue ├── center │ ├── ManagerAndSuggest.vue │ ├── baseInfo.vue │ ├── food │ │ └── foodManage.vue │ ├── index.vue │ └── planHistory │ │ ├── all_orders.js │ │ ├── all_orders.scss │ │ └── planHistory.vue ├── clock │ ├── clock.scss │ └── clock.vue ├── food-detail │ ├── food-detail.vue │ └── sf-detail.scss ├── food │ └── food.vue ├── index │ ├── index.scss │ └── index.vue ├── our │ ├── our.scss │ └── our.vue ├── plan │ └── plan.vue ├── prescription_label │ ├── prescription_label.js │ ├── prescription_label.scss │ ├── prescription_label.vue │ └── prescription_label2.vue ├── sf-detail │ ├── sf-detail.scss │ └── sf-detail.vue ├── sport │ └── sport.vue ├── subject-detail │ ├── reply.vue │ └── subject-detail.vue ├── subject │ ├── subject.scss │ └── subject.vue └── waiting_for_restaurant_order │ ├── waiting_for_restaurant_order.js │ ├── waiting_for_restaurant_order.scss │ └── waiting_for_restaurant_order.vue ├── project.config.json ├── static ├── all_orders │ └── images │ │ ├── all_orders_10_10.jpg │ │ ├── all_orders_12_12.jpg │ │ ├── all_orders_6_6.jpg │ │ └── all_orders_8_8.jpg ├── bbh-shopcar │ └── icon │ │ ├── adde.png │ │ ├── addf.png │ │ ├── circleCachee.png │ │ ├── circleCacheef.png │ │ ├── signe.png │ │ └── signf.png ├── center-selected.png ├── center.png ├── didian.png ├── favicon.ico ├── hm-news-detail │ └── images │ │ ├── img_22946_0_0.png │ │ ├── img_22946_0_1.png │ │ ├── img_22946_0_2.png │ │ └── img_22946_0_3.png ├── icon │ ├── cart-active.png │ ├── cart.png │ ├── daka.png │ ├── food-active.png │ ├── food.png │ ├── home-active.png │ ├── home.png │ ├── huati.png │ ├── jihu-active.png │ ├── jihua.png │ ├── lianxi.png │ ├── member-active.png │ ├── member.png │ ├── news-active.png │ ├── news.png │ ├── sport-active.png │ └── sport.png ├── index-selected.png ├── index.png ├── logo.png └── waiting_for_restaurant_order │ └── images │ └── waiting_for_restaurant_order_3_3.jpg ├── store ├── $u.mixin.js ├── index.js └── plan.js ├── template.h5.html ├── uni.scss ├── uni_modules ├── 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 └── 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 └── dist │ ├── build │ ├── .automator │ │ └── mp-weixin │ │ │ └── .automator.json │ └── mp-weixin │ │ ├── app.js │ │ ├── app.json │ │ ├── app.wxss │ │ ├── common │ │ ├── main.js │ │ ├── main.wxss │ │ ├── runtime.js │ │ └── vendor.js │ │ ├── components │ │ ├── bbh-shopcar │ │ │ ├── bbh-shopcar.js │ │ │ ├── bbh-shopcar.json │ │ │ ├── bbh-shopcar.wxml │ │ │ └── bbh-shopcar.wxss │ │ ├── hm-news-detail │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── oss-upload │ │ │ ├── oss-upload.js │ │ │ ├── oss-upload.json │ │ │ └── oss-upload.wxml │ │ ├── ss-calendar │ │ │ ├── ss-calendar.js │ │ │ ├── ss-calendar.json │ │ │ ├── ss-calendar.wxml │ │ │ └── ss-calendar.wxss │ │ ├── subject-list.js │ │ ├── subject-list.json │ │ ├── subject-list.wxml │ │ ├── subject-list.wxss │ │ ├── uni-goods-nav │ │ │ ├── uni-goods-nav.js │ │ │ ├── uni-goods-nav.json │ │ │ ├── uni-goods-nav.wxml │ │ │ └── uni-goods-nav.wxss │ │ ├── uni-icons │ │ │ ├── uni-icons.js │ │ │ ├── uni-icons.json │ │ │ ├── uni-icons.wxml │ │ │ └── uni-icons.wxss │ │ ├── uni-swipe-action-item │ │ │ ├── index.wxs │ │ │ ├── uni-swipe-action-item.js │ │ │ ├── uni-swipe-action-item.json │ │ │ ├── uni-swipe-action-item.wxml │ │ │ └── uni-swipe-action-item.wxss │ │ └── uni-swipe-action │ │ │ ├── uni-swipe-action.js │ │ │ ├── uni-swipe-action.json │ │ │ └── uni-swipe-action.wxml │ │ ├── pages │ │ ├── auth │ │ │ ├── login.js │ │ │ ├── login.json │ │ │ ├── login.wxml │ │ │ └── login.wxss │ │ ├── center │ │ │ ├── baseInfo.js │ │ │ ├── baseInfo.json │ │ │ ├── baseInfo.wxml │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ ├── index.wxss │ │ │ └── planHistory │ │ │ │ ├── planHistory.js │ │ │ │ ├── planHistory.json │ │ │ │ ├── planHistory.wxml │ │ │ │ └── planHistory.wxss │ │ ├── clock │ │ │ ├── clock.js │ │ │ ├── clock.json │ │ │ ├── clock.wxml │ │ │ └── clock.wxss │ │ ├── food-detail │ │ │ ├── food-detail.js │ │ │ ├── food-detail.json │ │ │ ├── food-detail.wxml │ │ │ └── food-detail.wxss │ │ ├── food │ │ │ ├── food.js │ │ │ ├── food.json │ │ │ ├── food.wxml │ │ │ └── food.wxss │ │ ├── index │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── our │ │ │ ├── our.js │ │ │ ├── our.json │ │ │ ├── our.wxml │ │ │ └── our.wxss │ │ ├── plan │ │ │ ├── plan.js │ │ │ ├── plan.json │ │ │ ├── plan.wxml │ │ │ └── plan.wxss │ │ ├── prescription_label │ │ │ ├── prescription_label.js │ │ │ ├── prescription_label.json │ │ │ ├── prescription_label.wxml │ │ │ └── prescription_label.wxss │ │ ├── sf-detail │ │ │ ├── sf-detail.js │ │ │ ├── sf-detail.json │ │ │ ├── sf-detail.wxml │ │ │ └── sf-detail.wxss │ │ ├── sport │ │ │ ├── sport.js │ │ │ ├── sport.json │ │ │ ├── sport.wxml │ │ │ └── sport.wxss │ │ ├── subject-detail │ │ │ ├── reply.js │ │ │ ├── reply.json │ │ │ ├── reply.wxml │ │ │ ├── reply.wxss │ │ │ ├── subject-detail.js │ │ │ ├── subject-detail.json │ │ │ ├── subject-detail.wxml │ │ │ └── subject-detail.wxss │ │ ├── subject │ │ │ ├── subject.js │ │ │ ├── subject.json │ │ │ ├── subject.wxml │ │ │ └── subject.wxss │ │ └── waiting_for_restaurant_order │ │ │ ├── waiting_for_restaurant_order.js │ │ │ ├── waiting_for_restaurant_order.json │ │ │ ├── waiting_for_restaurant_order.wxml │ │ │ └── waiting_for_restaurant_order.wxss │ │ ├── project.config.json │ │ ├── sitemap.json │ │ ├── static │ │ ├── all_orders │ │ │ └── images │ │ │ │ ├── all_orders_10_10.jpg │ │ │ │ ├── all_orders_12_12.jpg │ │ │ │ ├── all_orders_6_6.jpg │ │ │ │ └── all_orders_8_8.jpg │ │ ├── bbh-shopcar │ │ │ └── icon │ │ │ │ ├── adde.png │ │ │ │ ├── addf.png │ │ │ │ ├── circleCachee.png │ │ │ │ ├── circleCacheef.png │ │ │ │ ├── signe.png │ │ │ │ └── signf.png │ │ ├── center-selected.png │ │ ├── center.png │ │ ├── didian.png │ │ ├── favicon.ico │ │ ├── hm-news-detail │ │ │ └── images │ │ │ │ ├── img_22946_0_0.png │ │ │ │ ├── img_22946_0_1.png │ │ │ │ ├── img_22946_0_2.png │ │ │ │ └── img_22946_0_3.png │ │ ├── icon │ │ │ ├── cart-active.png │ │ │ ├── cart.png │ │ │ ├── daka.png │ │ │ ├── food-active.png │ │ │ ├── food.png │ │ │ ├── home-active.png │ │ │ ├── home.png │ │ │ ├── huati.png │ │ │ ├── jihu-active.png │ │ │ ├── jihua.png │ │ │ ├── lianxi.png │ │ │ ├── member-active.png │ │ │ ├── member.png │ │ │ ├── news-active.png │ │ │ ├── news.png │ │ │ ├── sport-active.png │ │ │ └── sport.png │ │ ├── index-selected.png │ │ ├── index.png │ │ ├── logo.png │ │ └── waiting_for_restaurant_order │ │ │ └── images │ │ │ └── waiting_for_restaurant_order_3_3.jpg │ │ ├── uni_modules │ │ └── uni-countdown │ │ │ └── components │ │ │ └── uni-countdown │ │ │ ├── uni-countdown.js │ │ │ ├── uni-countdown.json │ │ │ ├── uni-countdown.wxml │ │ │ └── uni-countdown.wxss │ │ └── uview-ui │ │ └── components │ │ ├── u-avatar │ │ ├── u-avatar.js │ │ ├── u-avatar.json │ │ ├── u-avatar.wxml │ │ └── u-avatar.wxss │ │ ├── u-button │ │ ├── u-button.js │ │ ├── u-button.json │ │ ├── u-button.wxml │ │ └── u-button.wxss │ │ ├── u-cell-group │ │ ├── u-cell-group.js │ │ ├── u-cell-group.json │ │ ├── u-cell-group.wxml │ │ └── u-cell-group.wxss │ │ ├── u-cell-item │ │ ├── u-cell-item.js │ │ ├── u-cell-item.json │ │ ├── u-cell-item.wxml │ │ └── u-cell-item.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-form.wxss │ │ ├── u-icon │ │ ├── u-icon.js │ │ ├── u-icon.json │ │ ├── u-icon.wxml │ │ └── u-icon.wxss │ │ ├── u-image │ │ ├── u-image.js │ │ ├── u-image.json │ │ ├── u-image.wxml │ │ └── u-image.wxss │ │ ├── u-input │ │ ├── u-input.js │ │ ├── u-input.json │ │ ├── u-input.wxml │ │ └── u-input.wxss │ │ ├── u-line-progress │ │ ├── u-line-progress.js │ │ ├── u-line-progress.json │ │ ├── u-line-progress.wxml │ │ └── u-line-progress.wxss │ │ ├── u-mask │ │ ├── u-mask.js │ │ ├── u-mask.json │ │ ├── u-mask.wxml │ │ └── u-mask.wxss │ │ ├── u-popup │ │ ├── u-popup.js │ │ ├── u-popup.json │ │ ├── u-popup.wxml │ │ └── u-popup.wxss │ │ ├── u-search │ │ ├── u-search.js │ │ ├── u-search.json │ │ ├── u-search.wxml │ │ └── u-search.wxss │ │ ├── u-swiper │ │ ├── u-swiper.js │ │ ├── u-swiper.json │ │ ├── u-swiper.wxml │ │ └── u-swiper.wxss │ │ └── u-upload │ │ ├── u-upload.js │ │ ├── u-upload.json │ │ ├── u-upload.wxml │ │ └── u-upload.wxss │ └── dev │ ├── .automator │ └── mp-weixin │ │ └── .automator.json │ ├── .sourcemap │ └── mp-weixin │ │ ├── common │ │ ├── main.js.map │ │ ├── runtime.js.map │ │ └── vendor.js.map │ │ ├── components │ │ ├── bbh-shopcar │ │ │ └── bbh-shopcar.js.map │ │ ├── hm-news-detail │ │ │ └── index.js.map │ │ ├── oss-upload │ │ │ └── oss-upload.js.map │ │ ├── ss-calendar │ │ │ └── ss-calendar.js.map │ │ ├── subject-list.js.map │ │ ├── uni-goods-nav │ │ │ └── uni-goods-nav.js.map │ │ ├── uni-icons │ │ │ └── uni-icons.js.map │ │ ├── uni-swipe-action-item │ │ │ └── uni-swipe-action-item.js.map │ │ └── uni-swipe-action │ │ │ └── uni-swipe-action.js.map │ │ ├── pages │ │ ├── auth │ │ │ └── login.js.map │ │ ├── center │ │ │ ├── baseInfo.js.map │ │ │ ├── index.js.map │ │ │ └── planHistory │ │ │ │ └── planHistory.js.map │ │ ├── clock │ │ │ └── clock.js.map │ │ ├── food-detail │ │ │ └── food-detail.js.map │ │ ├── food │ │ │ └── food.js.map │ │ ├── index │ │ │ └── index.js.map │ │ ├── our │ │ │ └── our.js.map │ │ ├── plan │ │ │ └── plan.js.map │ │ ├── prescription_label │ │ │ └── prescription_label.js.map │ │ ├── sf-detail │ │ │ └── sf-detail.js.map │ │ ├── sport │ │ │ └── sport.js.map │ │ ├── subject-detail │ │ │ ├── reply.js.map │ │ │ └── subject-detail.js.map │ │ ├── subject │ │ │ ├── sub.js.map │ │ │ └── subject.js.map │ │ └── waiting_for_restaurant_order │ │ │ └── waiting_for_restaurant_order.js.map │ │ ├── uni_modules │ │ └── uni-countdown │ │ │ └── components │ │ │ └── uni-countdown │ │ │ └── uni-countdown.js.map │ │ └── uview-ui │ │ └── components │ │ ├── u-avatar │ │ └── u-avatar.js.map │ │ ├── u-badge │ │ └── u-badge.js.map │ │ ├── u-button │ │ └── u-button.js.map │ │ ├── u-cell-group │ │ └── u-cell-group.js.map │ │ ├── u-cell-item │ │ └── u-cell-item.js.map │ │ ├── u-form-item │ │ └── u-form-item.js.map │ │ ├── u-form │ │ └── u-form.js.map │ │ ├── u-icon │ │ └── u-icon.js.map │ │ ├── u-image │ │ └── u-image.js.map │ │ ├── u-input │ │ └── u-input.js.map │ │ ├── u-line-progress │ │ └── u-line-progress.js.map │ │ ├── u-link │ │ └── u-link.js.map │ │ ├── u-mask │ │ └── u-mask.js.map │ │ ├── u-popup │ │ └── u-popup.js.map │ │ ├── u-search │ │ └── u-search.js.map │ │ ├── u-swiper │ │ └── u-swiper.js.map │ │ ├── u-tabs │ │ └── u-tabs.js.map │ │ └── u-upload │ │ └── u-upload.js.map │ └── mp-weixin │ ├── app.js │ ├── app.json │ ├── app.wxss │ ├── common │ ├── main.js │ ├── main.wxss │ ├── runtime.js │ └── vendor.js │ ├── components │ ├── bbh-shopcar │ │ ├── bbh-shopcar.js │ │ ├── bbh-shopcar.json │ │ ├── bbh-shopcar.wxml │ │ └── bbh-shopcar.wxss │ ├── hm-news-detail │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ ├── oss-upload │ │ ├── oss-upload.js │ │ ├── oss-upload.json │ │ └── oss-upload.wxml │ ├── ss-calendar │ │ ├── ss-calendar.js │ │ ├── ss-calendar.json │ │ ├── ss-calendar.wxml │ │ └── ss-calendar.wxss │ ├── subject-list.js │ ├── subject-list.json │ ├── subject-list.wxml │ ├── subject-list.wxss │ ├── uni-goods-nav │ │ ├── uni-goods-nav.js │ │ ├── uni-goods-nav.json │ │ ├── uni-goods-nav.wxml │ │ └── uni-goods-nav.wxss │ ├── uni-icons │ │ ├── uni-icons.js │ │ ├── uni-icons.json │ │ ├── uni-icons.wxml │ │ └── uni-icons.wxss │ ├── uni-swipe-action-item │ │ ├── index.wxs │ │ ├── uni-swipe-action-item.js │ │ ├── uni-swipe-action-item.json │ │ ├── uni-swipe-action-item.wxml │ │ └── uni-swipe-action-item.wxss │ └── uni-swipe-action │ │ ├── uni-swipe-action.js │ │ ├── uni-swipe-action.json │ │ └── uni-swipe-action.wxml │ ├── pages │ ├── auth │ │ ├── login.js │ │ ├── login.json │ │ ├── login.wxml │ │ └── login.wxss │ ├── center │ │ ├── baseInfo.js │ │ ├── baseInfo.json │ │ ├── baseInfo.wxml │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxss │ │ └── planHistory │ │ │ ├── planHistory.js │ │ │ ├── planHistory.json │ │ │ ├── planHistory.wxml │ │ │ └── planHistory.wxss │ ├── clock │ │ ├── clock.js │ │ ├── clock.json │ │ ├── clock.wxml │ │ └── clock.wxss │ ├── food-detail │ │ ├── food-detail.js │ │ ├── food-detail.json │ │ ├── food-detail.wxml │ │ └── food-detail.wxss │ ├── food │ │ ├── food.js │ │ ├── food.json │ │ ├── food.wxml │ │ └── food.wxss │ ├── index │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ ├── our │ │ ├── our.js │ │ ├── our.json │ │ ├── our.wxml │ │ └── our.wxss │ ├── plan │ │ ├── plan.js │ │ ├── plan.json │ │ ├── plan.wxml │ │ └── plan.wxss │ ├── prescription_label │ │ ├── prescription_label.js │ │ ├── prescription_label.json │ │ ├── prescription_label.wxml │ │ └── prescription_label.wxss │ ├── sf-detail │ │ ├── sf-detail.js │ │ ├── sf-detail.json │ │ ├── sf-detail.wxml │ │ └── sf-detail.wxss │ ├── sport │ │ ├── sport.js │ │ ├── sport.json │ │ ├── sport.wxml │ │ └── sport.wxss │ ├── subject-detail │ │ ├── reply.js │ │ ├── reply.json │ │ ├── reply.wxml │ │ ├── reply.wxss │ │ ├── subject-detail.js │ │ ├── subject-detail.json │ │ ├── subject-detail.wxml │ │ └── subject-detail.wxss │ ├── subject │ │ ├── subject.js │ │ ├── subject.json │ │ ├── subject.wxml │ │ └── subject.wxss │ └── waiting_for_restaurant_order │ │ ├── waiting_for_restaurant_order.js │ │ ├── waiting_for_restaurant_order.json │ │ ├── waiting_for_restaurant_order.wxml │ │ └── waiting_for_restaurant_order.wxss │ ├── project.config.json │ ├── sitemap.json │ ├── static │ ├── all_orders │ │ └── images │ │ │ ├── all_orders_10_10.jpg │ │ │ ├── all_orders_12_12.jpg │ │ │ ├── all_orders_6_6.jpg │ │ │ └── all_orders_8_8.jpg │ ├── bbh-shopcar │ │ └── icon │ │ │ ├── adde.png │ │ │ ├── addf.png │ │ │ ├── circleCachee.png │ │ │ ├── circleCacheef.png │ │ │ ├── signe.png │ │ │ └── signf.png │ ├── center-selected.png │ ├── center.png │ ├── didian.png │ ├── favicon.ico │ ├── hm-news-detail │ │ └── images │ │ │ ├── img_22946_0_0.png │ │ │ ├── img_22946_0_1.png │ │ │ ├── img_22946_0_2.png │ │ │ └── img_22946_0_3.png │ ├── icon │ │ ├── cart-active.png │ │ ├── cart.png │ │ ├── daka.png │ │ ├── food-active.png │ │ ├── food.png │ │ ├── home-active.png │ │ ├── home.png │ │ ├── huati.png │ │ ├── jihu-active.png │ │ ├── jihua.png │ │ ├── lianxi.png │ │ ├── member-active.png │ │ ├── member.png │ │ ├── news-active.png │ │ ├── news.png │ │ ├── sport-active.png │ │ └── sport.png │ ├── index-selected.png │ ├── index.png │ ├── logo.png │ └── waiting_for_restaurant_order │ │ └── images │ │ └── waiting_for_restaurant_order_3_3.jpg │ ├── uni_modules │ └── uni-countdown │ │ └── components │ │ └── uni-countdown │ │ ├── uni-countdown.js │ │ ├── uni-countdown.json │ │ ├── uni-countdown.wxml │ │ └── uni-countdown.wxss │ └── uview-ui │ └── components │ ├── u-avatar │ ├── u-avatar.js │ ├── u-avatar.json │ ├── u-avatar.wxml │ └── u-avatar.wxss │ ├── u-button │ ├── u-button.js │ ├── u-button.json │ ├── u-button.wxml │ └── u-button.wxss │ ├── u-cell-group │ ├── u-cell-group.js │ ├── u-cell-group.json │ ├── u-cell-group.wxml │ └── u-cell-group.wxss │ ├── u-cell-item │ ├── u-cell-item.js │ ├── u-cell-item.json │ ├── u-cell-item.wxml │ └── u-cell-item.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-form.wxss │ ├── u-icon │ ├── u-icon.js │ ├── u-icon.json │ ├── u-icon.wxml │ └── u-icon.wxss │ ├── u-image │ ├── u-image.js │ ├── u-image.json │ ├── u-image.wxml │ └── u-image.wxss │ ├── u-input │ ├── u-input.js │ ├── u-input.json │ ├── u-input.wxml │ └── u-input.wxss │ ├── u-line-progress │ ├── u-line-progress.js │ ├── u-line-progress.json │ ├── u-line-progress.wxml │ └── u-line-progress.wxss │ ├── u-mask │ ├── u-mask.js │ ├── u-mask.json │ ├── u-mask.wxml │ └── u-mask.wxss │ ├── u-popup │ ├── u-popup.js │ ├── u-popup.json │ ├── u-popup.wxml │ └── u-popup.wxss │ ├── u-search │ ├── u-search.js │ ├── u-search.json │ ├── u-search.wxml │ └── u-search.wxss │ ├── u-swiper │ ├── u-swiper.js │ ├── u-swiper.json │ ├── u-swiper.wxml │ └── u-swiper.wxss │ └── u-upload │ ├── u-upload.js │ ├── u-upload.json │ ├── u-upload.wxml │ └── u-upload.wxss ├── uview-ui ├── LICENSE ├── README.md ├── components │ ├── u-action-sheet │ │ └── u-action-sheet.vue │ ├── u-alert-tips │ │ └── u-alert-tips.vue │ ├── u-avatar-cropper │ │ ├── u-avatar-cropper.vue │ │ └── weCropper.js │ ├── u-avatar │ │ └── u-avatar.vue │ ├── u-back-top │ │ └── u-back-top.vue │ ├── u-badge │ │ └── u-badge.vue │ ├── u-button │ │ └── u-button.vue │ ├── u-calendar │ │ └── u-calendar.vue │ ├── u-car-keyboard │ │ └── u-car-keyboard.vue │ ├── u-card │ │ └── u-card.vue │ ├── u-cell-group │ │ └── u-cell-group.vue │ ├── u-cell-item │ │ └── u-cell-item.vue │ ├── u-checkbox-group │ │ └── u-checkbox-group.vue │ ├── u-checkbox │ │ └── u-checkbox.vue │ ├── u-circle-progress │ │ └── u-circle-progress.vue │ ├── u-col │ │ └── u-col.vue │ ├── u-collapse-item │ │ └── u-collapse-item.vue │ ├── u-collapse │ │ └── u-collapse.vue │ ├── u-column-notice │ │ └── u-column-notice.vue │ ├── u-count-down │ │ └── u-count-down.vue │ ├── u-count-to │ │ └── u-count-to.vue │ ├── u-divider │ │ └── u-divider.vue │ ├── u-dropdown-item │ │ └── u-dropdown-item.vue │ ├── u-dropdown │ │ └── u-dropdown.vue │ ├── u-empty │ │ └── u-empty.vue │ ├── u-field │ │ └── u-field.vue │ ├── u-form-item │ │ └── u-form-item.vue │ ├── u-form │ │ └── u-form.vue │ ├── u-full-screen │ │ └── u-full-screen.vue │ ├── u-gap │ │ └── u-gap.vue │ ├── u-grid-item │ │ └── u-grid-item.vue │ ├── u-grid │ │ └── u-grid.vue │ ├── u-icon │ │ └── u-icon.vue │ ├── u-image │ │ └── u-image.vue │ ├── u-index-anchor │ │ └── u-index-anchor.vue │ ├── u-index-list │ │ └── u-index-list.vue │ ├── u-input │ │ └── u-input.vue │ ├── u-keyboard │ │ └── u-keyboard.vue │ ├── u-lazy-load │ │ └── u-lazy-load.vue │ ├── u-line-progress │ │ └── u-line-progress.vue │ ├── u-line │ │ └── u-line.vue │ ├── u-link │ │ └── u-link.vue │ ├── u-loading-page │ │ └── u-loading-page.vue │ ├── u-loading │ │ └── u-loading.vue │ ├── u-loadmore │ │ └── u-loadmore.vue │ ├── u-mask │ │ └── u-mask.vue │ ├── u-message-input │ │ └── u-message-input.vue │ ├── u-modal │ │ └── u-modal.vue │ ├── u-navbar │ │ └── u-navbar.vue │ ├── u-no-network │ │ └── u-no-network.vue │ ├── u-notice-bar │ │ └── u-notice-bar.vue │ ├── u-number-box │ │ └── u-number-box.vue │ ├── u-number-keyboard │ │ └── u-number-keyboard.vue │ ├── u-parse │ │ ├── libs │ │ │ ├── CssHandler.js │ │ │ ├── MpHtmlParser.js │ │ │ ├── config.js │ │ │ ├── handler.wxs │ │ │ └── trees.vue │ │ └── u-parse.vue │ ├── u-picker │ │ └── u-picker.vue │ ├── u-popup │ │ └── u-popup.vue │ ├── u-radio-group │ │ └── u-radio-group.vue │ ├── u-radio │ │ └── u-radio.vue │ ├── u-rate │ │ └── u-rate.vue │ ├── u-read-more │ │ └── u-read-more.vue │ ├── u-row-notice │ │ └── u-row-notice.vue │ ├── u-row │ │ └── u-row.vue │ ├── u-search │ │ └── u-search.vue │ ├── u-section │ │ └── u-section.vue │ ├── u-select │ │ └── u-select.vue │ ├── u-skeleton │ │ └── u-skeleton.vue │ ├── u-slider │ │ └── u-slider.vue │ ├── u-steps │ │ └── u-steps.vue │ ├── u-sticky │ │ └── u-sticky.vue │ ├── u-subsection │ │ └── u-subsection.vue │ ├── u-swipe-action │ │ └── u-swipe-action.vue │ ├── u-swiper │ │ └── u-swiper.vue │ ├── u-switch │ │ └── u-switch.vue │ ├── u-tabbar │ │ └── u-tabbar.vue │ ├── u-table │ │ └── u-table.vue │ ├── u-tabs-swiper │ │ └── u-tabs-swiper.vue │ ├── u-tabs │ │ └── u-tabs.vue │ ├── u-tag │ │ └── u-tag.vue │ ├── u-td │ │ └── u-td.vue │ ├── u-th │ │ └── u-th.vue │ ├── u-time-line-item │ │ └── u-time-line-item.vue │ ├── u-time-line │ │ └── u-time-line.vue │ ├── u-toast │ │ └── u-toast.vue │ ├── u-top-tips │ │ └── u-top-tips.vue │ ├── u-tr │ │ └── u-tr.vue │ ├── u-upload │ │ └── u-upload.vue │ ├── u-verification-code │ │ └── u-verification-code.vue │ └── u-waterfall │ │ └── u-waterfall.vue ├── iconfont.css ├── index.js ├── index.scss ├── libs │ ├── config │ │ ├── config.js │ │ └── zIndex.js │ ├── css │ │ ├── color.scss │ │ ├── common.scss │ │ ├── style.components.scss │ │ ├── style.h5.scss │ │ ├── style.mp.scss │ │ ├── style.nvue.scss │ │ └── style.vue.scss │ ├── function │ │ ├── $parent.js │ │ ├── addUnit.js │ │ ├── bem.js │ │ ├── color.js │ │ ├── colorGradient.js │ │ ├── debounce.js │ │ ├── deepClone.js │ │ ├── deepMerge.js │ │ ├── getParent.js │ │ ├── guid.js │ │ ├── md5.js │ │ ├── queryParams.js │ │ ├── random.js │ │ ├── randomArray.js │ │ ├── route.js │ │ ├── sys.js │ │ ├── test.js │ │ ├── throttle.js │ │ ├── timeFormat.js │ │ ├── timeFrom.js │ │ ├── toast.js │ │ ├── trim.js │ │ └── type2icon.js │ ├── mixin │ │ ├── mixin.js │ │ └── mpShare.js │ ├── request │ │ └── index.js │ ├── store │ │ └── index.js │ └── util │ │ ├── area.js │ │ ├── async-validator.js │ │ ├── city.js │ │ ├── emitter.js │ │ └── province.js ├── package.json └── theme.scss └── vue.config.js /.eslintignore: -------------------------------------------------------------------------------- 1 | unpackage 2 | node_modules 3 | uview-ui 4 | -------------------------------------------------------------------------------- /.hbuilderx/launch.json: -------------------------------------------------------------------------------- 1 | { // launch.json 配置了启动调试时相关设置,configurations下节点名称可为 app-plus/h5/mp-weixin/mp-baidu/mp-alipay/mp-qq/mp-toutiao/mp-360/ 2 | // launchtype项可配置值为local或remote, local代表前端连本地云函数,remote代表前端连云端云函数 3 | "version": "0.0", 4 | "configurations": [{ 5 | "default" : 6 | { 7 | "launchtype" : "local" 8 | }, 9 | "h5" : 10 | { 11 | "launchtype" : "local" 12 | }, 13 | "mp-weixin" : 14 | { 15 | "launchtype" : "local" 16 | }, 17 | "type" : "uniCloud" 18 | } 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Datasource local storage ignored files 5 | /../../../../../../../:\Users\99405\Desktop\uni-hmanage\uni-hmanage\.idea/dataSources/ 6 | /dataSources.local.xml 7 | # Editor-based HTTP Client requests 8 | /httpRequests/ 9 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/uni-hmanage.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /App.vue: -------------------------------------------------------------------------------- 1 | h 14 | 15 | 20 | -------------------------------------------------------------------------------- /pages/clock/clock.scss: -------------------------------------------------------------------------------- 1 | .home{ 2 | .popup{ 3 | width:"500rpx"; 4 | height:"380rpx"; 5 | .content{ 6 | padding: 20rpx; 7 | text-align: center; 8 | .title{ 9 | margin-top: 60rpx; 10 | line-height: 46rpx; 11 | font-size: 32rpx; 12 | font-weight: bolder 13 | } 14 | .con{ 15 | line-height: 46rpx 16 | } 17 | .icon{ 18 | margin: 30rpx 19 | } 20 | } 21 | } 22 | .setbtncolor{ 23 | background-color: #2B85E4; 24 | margin-top:20px; 25 | } 26 | } -------------------------------------------------------------------------------- /pages/food-detail/sf-detail.scss: -------------------------------------------------------------------------------- 1 | .detail{ 2 | .show{ 3 | .box1{ 4 | padding: 10px; 5 | .price{ 6 | font-size: 35rpx; 7 | color: #aa0000; 8 | } 9 | .name{ 10 | font-size: 32rpx; 11 | line-height: 60rpx; 12 | } 13 | } 14 | .line{ 15 | height: 10rpx; 16 | width: 750rpx; 17 | background: #EEEEEE; 18 | } 19 | .box2{ 20 | padding: 0 10rpx; 21 | font-size: 32rpx; 22 | line-height: 70rpx; 23 | } 24 | .box3{ 25 | .tit{ 26 | font-size: 32rpx; 27 | padding-left: 10px; 28 | border-bottom: 1px solid #EEEEEE; 29 | line-height: 70rpx; 30 | } 31 | .content{ 32 | padding: 10px; 33 | font-size: 28rpx; 34 | color: #333333; 35 | line-height: 50rpx; 36 | } 37 | } 38 | .nav{ 39 | position: fixed; 40 | bottom: 0; 41 | width:100%; 42 | } 43 | } 44 | } -------------------------------------------------------------------------------- /pages/our/our.scss: -------------------------------------------------------------------------------- 1 | .contact{ 2 | .img{ 3 | width: 750rpx; 4 | height: 320rpx; 5 | } 6 | .info{ 7 | padding: 10rpx 20rpx; 8 | font-size: 30rpx; 9 | view{ 10 | line-height: 80rpx; 11 | border-bottom:1px solid #EEEEEE ; 12 | } 13 | } 14 | .map{ 15 | width: 750rpx; 16 | height: 750rpx; 17 | } 18 | } -------------------------------------------------------------------------------- /pages/sf-detail/sf-detail.scss: -------------------------------------------------------------------------------- 1 | .detail{ 2 | .show{ 3 | .box1{ 4 | padding: 10px; 5 | .price{ 6 | font-size: 35rpx; 7 | color: #aa0000; 8 | } 9 | .name{ 10 | font-size: 32rpx; 11 | line-height: 60rpx; 12 | } 13 | } 14 | .line{ 15 | height: 10rpx; 16 | width: 750rpx; 17 | background: #EEEEEE; 18 | } 19 | .box2{ 20 | padding: 0 10rpx; 21 | font-size: 32rpx; 22 | line-height: 70rpx; 23 | } 24 | .box3{ 25 | .tit{ 26 | font-size: 32rpx; 27 | padding-left: 10px; 28 | border-bottom: 1px solid #EEEEEE; 29 | line-height: 70rpx; 30 | } 31 | .content{ 32 | padding: 10px; 33 | font-size: 28rpx; 34 | color: #333333; 35 | line-height: 50rpx; 36 | } 37 | } 38 | .nav{ 39 | position: fixed; 40 | bottom: 0; 41 | width:100%; 42 | } 43 | } 44 | } -------------------------------------------------------------------------------- /pages/subject/subject.scss: -------------------------------------------------------------------------------- 1 | .content{ 2 | background: #EEEEEE; 3 | .isOver{ 4 | width: 100%; 5 | height: 50px; 6 | line-height: 50px; 7 | text-align: center; 8 | font-size: 28rpx; 9 | } 10 | } -------------------------------------------------------------------------------- /static/all_orders/images/all_orders_10_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/static/all_orders/images/all_orders_10_10.jpg -------------------------------------------------------------------------------- /static/all_orders/images/all_orders_12_12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/static/all_orders/images/all_orders_12_12.jpg -------------------------------------------------------------------------------- /static/all_orders/images/all_orders_6_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/static/all_orders/images/all_orders_6_6.jpg -------------------------------------------------------------------------------- /static/all_orders/images/all_orders_8_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/static/all_orders/images/all_orders_8_8.jpg -------------------------------------------------------------------------------- /static/bbh-shopcar/icon/adde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/static/bbh-shopcar/icon/adde.png -------------------------------------------------------------------------------- /static/bbh-shopcar/icon/addf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/static/bbh-shopcar/icon/addf.png -------------------------------------------------------------------------------- /static/bbh-shopcar/icon/circleCachee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/static/bbh-shopcar/icon/circleCachee.png -------------------------------------------------------------------------------- /static/bbh-shopcar/icon/circleCacheef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/static/bbh-shopcar/icon/circleCacheef.png -------------------------------------------------------------------------------- /static/bbh-shopcar/icon/signe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/static/bbh-shopcar/icon/signe.png -------------------------------------------------------------------------------- /static/bbh-shopcar/icon/signf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/static/bbh-shopcar/icon/signf.png -------------------------------------------------------------------------------- /static/center-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/static/center-selected.png -------------------------------------------------------------------------------- /static/center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/static/center.png -------------------------------------------------------------------------------- /static/didian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/static/didian.png -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/static/favicon.ico -------------------------------------------------------------------------------- /static/hm-news-detail/images/img_22946_0_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/static/hm-news-detail/images/img_22946_0_0.png -------------------------------------------------------------------------------- /static/hm-news-detail/images/img_22946_0_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/static/hm-news-detail/images/img_22946_0_1.png -------------------------------------------------------------------------------- /static/hm-news-detail/images/img_22946_0_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/static/hm-news-detail/images/img_22946_0_2.png -------------------------------------------------------------------------------- /static/hm-news-detail/images/img_22946_0_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/static/hm-news-detail/images/img_22946_0_3.png -------------------------------------------------------------------------------- /static/icon/cart-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/static/icon/cart-active.png -------------------------------------------------------------------------------- /static/icon/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/static/icon/cart.png -------------------------------------------------------------------------------- /static/icon/daka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/static/icon/daka.png -------------------------------------------------------------------------------- /static/icon/food-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/static/icon/food-active.png -------------------------------------------------------------------------------- /static/icon/food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/static/icon/food.png -------------------------------------------------------------------------------- /static/icon/home-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/static/icon/home-active.png -------------------------------------------------------------------------------- /static/icon/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/static/icon/home.png -------------------------------------------------------------------------------- /static/icon/huati.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/static/icon/huati.png -------------------------------------------------------------------------------- /static/icon/jihu-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/static/icon/jihu-active.png -------------------------------------------------------------------------------- /static/icon/jihua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/static/icon/jihua.png -------------------------------------------------------------------------------- /static/icon/lianxi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/static/icon/lianxi.png -------------------------------------------------------------------------------- /static/icon/member-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/static/icon/member-active.png -------------------------------------------------------------------------------- /static/icon/member.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/static/icon/member.png -------------------------------------------------------------------------------- /static/icon/news-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/static/icon/news-active.png -------------------------------------------------------------------------------- /static/icon/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/static/icon/news.png -------------------------------------------------------------------------------- /static/icon/sport-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/static/icon/sport-active.png -------------------------------------------------------------------------------- /static/icon/sport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/static/icon/sport.png -------------------------------------------------------------------------------- /static/index-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/static/index-selected.png -------------------------------------------------------------------------------- /static/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/static/index.png -------------------------------------------------------------------------------- /static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/static/logo.png -------------------------------------------------------------------------------- /static/waiting_for_restaurant_order/images/waiting_for_restaurant_order_3_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/static/waiting_for_restaurant_order/images/waiting_for_restaurant_order_3_3.jpg -------------------------------------------------------------------------------- /store/$u.mixin.js: -------------------------------------------------------------------------------- 1 | import { mapState } from 'vuex' 2 | import store from "@/store" 3 | 4 | // 尝试将用户在根目录中的store/index.js的vuex的state变量,全部加载到全局变量中 5 | let $uStoreKey = []; 6 | try{ 7 | $uStoreKey = store.state ? Object.keys(store.state) : []; 8 | }catch(e){ 9 | 10 | } 11 | 12 | module.exports = { 13 | created() { 14 | // 将vuex方法挂在到$u中 15 | // 使用方法为:如果要修改vuex的state中的user.name变量为"史诗" => this.$u.vuex('user.name', '史诗') 16 | // 如果要修改vuex的state的version变量为1.0.1 => this.$u.vuex('version', '1.0.1') 17 | this.$u.vuex = (name, value) => { 18 | this.$store.commit('$uStore', { 19 | name,value 20 | }) 21 | } 22 | }, 23 | computed: { 24 | // 将vuex的state中的所有变量,解构到全局混入的mixin中 25 | ...mapState($uStoreKey) 26 | }, 27 | } -------------------------------------------------------------------------------- /store/plan.js: -------------------------------------------------------------------------------- 1 | const state = { 2 | // 是否加载新的计划列表 3 | updatePlan:true 4 | } 5 | const getters = { 6 | getUpdatePlan(state){ 7 | return state.updatePlan 8 | } 9 | } 10 | const mutations = { 11 | setUpdatePlan(state,flag){ 12 | state.updatePlan = Boolean(flag); 13 | } 14 | } 15 | const actions = {} 16 | export default{ 17 | namespaced:true, 18 | state, 19 | getters, 20 | mutations, 21 | actions 22 | } 23 | -------------------------------------------------------------------------------- /template.h5.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | <%= htmlWebpackPlugin.options.title %> 10 | 11 | 16 | 17 | 18 | 19 | 22 |
23 | 24 | 25 | -------------------------------------------------------------------------------- /uni.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * 下方引入的为uView UI的集成样式文件,为scss预处理器,其中包含了一些"u-"开头的自定义变量 3 | * uView自定义的css类名和scss变量,均以"u-"开头,不会造成冲突,请放心使用 4 | */ 5 | @import 'uview-ui/theme.scss'; 6 | //@import "uni_modules/uview-ui/theme.scss" -------------------------------------------------------------------------------- /uni_modules/uni-countdown/changelog.md: -------------------------------------------------------------------------------- 1 | ## 1.1.2(2021-08-24) 2 | - 新增 支持国际化 3 | ## 1.1.1(2021-07-30) 4 | - 优化 vue3下小程序事件警告的问题 5 | ## 1.1.0(2021-07-30) 6 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834) 7 | ## 1.0.5(2021-06-18) 8 | - 修复 uni-countdown 重复赋值跳两秒的 bug 9 | ## 1.0.4(2021-05-12) 10 | - 新增 组件示例地址 11 | ## 1.0.3(2021-05-08) 12 | - 修复 uni-countdown 不能控制倒计时的 bug 13 | ## 1.0.2(2021-02-04) 14 | - 调整为uni_modules目录规范 15 | -------------------------------------------------------------------------------- /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/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-dropdown/u-dropdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/uni_modules/uview-ui/components/u-dropdown/u-dropdown.vue -------------------------------------------------------------------------------- /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-anchor/props.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | // 列表锚点文本内容 4 | text: { 5 | type: [String, Number], 6 | default: uni.$u.props.indexAnchor.text 7 | }, 8 | // 列表锚点文字颜色 9 | color: { 10 | type: String, 11 | default: uni.$u.props.indexAnchor.color 12 | }, 13 | // 列表锚点文字大小,单位默认px 14 | size: { 15 | type: [String, Number], 16 | default: uni.$u.props.indexAnchor.size 17 | }, 18 | // 列表锚点背景颜色 19 | bgColor: { 20 | type: String, 21 | default: uni.$u.props.indexAnchor.bgColor 22 | }, 23 | // 列表锚点高度,单位默认px 24 | height: { 25 | type: [String, Number], 26 | default: uni.$u.props.indexAnchor.height 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /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-index-list/props.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | // 右边锚点非激活的颜色 4 | inactiveColor: { 5 | type: String, 6 | default: uni.$u.props.indexList.inactiveColor 7 | }, 8 | // 右边锚点激活的颜色 9 | activeColor: { 10 | type: String, 11 | default: uni.$u.props.indexList.activeColor 12 | }, 13 | // 索引字符列表,数组形式 14 | indexList: { 15 | type: Array, 16 | default: uni.$u.props.indexList.indexList 17 | }, 18 | // 是否开启锚点自动吸顶 19 | sticky: { 20 | type: Boolean, 21 | default: uni.$u.props.indexList.sticky 22 | }, 23 | // 自定义导航栏的高度 24 | customNavHeight: { 25 | type: [String, Number], 26 | default: uni.$u.props.indexList.customNavHeight 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/components/u-line-progress/props.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | // 激活部分的颜色 4 | activeColor: { 5 | type: String, 6 | default: uni.$u.props.lineProgress.activeColor 7 | }, 8 | inactiveColor: { 9 | type: String, 10 | default: uni.$u.props.lineProgress.color 11 | }, 12 | // 进度百分比,数值 13 | percentage: { 14 | type: [String, Number], 15 | default: uni.$u.props.lineProgress.inactiveColor 16 | }, 17 | // 是否在进度条内部显示百分比的值 18 | showText: { 19 | type: Boolean, 20 | default: uni.$u.props.lineProgress.showText 21 | }, 22 | // 进度条的高度,单位px 23 | height: { 24 | type: [String, Number], 25 | default: uni.$u.props.lineProgress.height 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /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/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/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/checkboxGroup.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:47 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/checkboxGroup.js 9 | */ 10 | export default { 11 | // checkbox-group组件 12 | checkboxGroup: { 13 | name: '', 14 | value: () => [], 15 | shape: 'square', 16 | disabled: false, 17 | activeColor: '#2979ff', 18 | inactiveColor: '#c8c9cc', 19 | size: 18, 20 | placement: 'row', 21 | labelSize: 14, 22 | labelColor: '#303133', 23 | labelDisabled: false, 24 | iconColor: '#ffffff', 25 | iconSize: 12, 26 | iconPlacement: 'left', 27 | borderBottom: false 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /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 | maxlength: 6, 14 | dot: false, 15 | mode: 'box', 16 | hairline: false, 17 | space: 10, 18 | value: '', 19 | focus: false, 20 | bold: false, 21 | color: '#606266', 22 | fontSize: 18, 23 | size: 35, 24 | disabledKeyboard: false, 25 | borderColor: '#c9cacc', 26 | disabledDot: true 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /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 | labelWidth: '', 17 | rightIcon: '', 18 | leftIcon: '', 19 | required: false, 20 | leftIconStyle: '', 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /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/image.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:51 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/image.js 9 | */ 10 | export default { 11 | // image组件 12 | image: { 13 | src: '', 14 | mode: 'aspectFill', 15 | width: '300', 16 | height: '225', 17 | shape: 'square', 18 | radius: 0, 19 | lazyLoad: true, 20 | showMenuByLongpress: true, 21 | loadingIcon: 'photo', 22 | errorIcon: 'error-circle', 23 | showLoading: true, 24 | showError: true, 25 | fade: true, 26 | webp: false, 27 | duration: 500, 28 | bgColor: '#f3f4f6' 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /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/keyboard.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:49 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/keyboard.js 9 | */ 10 | export default { 11 | // 键盘组件 12 | keyboard: { 13 | mode: 'number', 14 | dotDisabled: false, 15 | tooltip: true, 16 | showTips: true, 17 | tips: '', 18 | showCancel: true, 19 | showConfirm: true, 20 | random: false, 21 | safeAreaInsetBottom: true, 22 | closeOnClickOverlay: true, 23 | show: false, 24 | overlay: true, 25 | zIndex: 10075, 26 | cancelText: '取消', 27 | confirmText: '确定', 28 | autoChange: false 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /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 | loadingColor: '#C8C8C8' 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/loadmore.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:26 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/loadmore.js 9 | */ 10 | export default { 11 | // loadmore 组件 12 | loadmore: { 13 | status: 'loadmore', 14 | bgColor: 'transparent', 15 | icon: true, 16 | fontSize: 14, 17 | color: '#606266', 18 | loadingIcon: 'spinner', 19 | loadmoreText: '加载更多', 20 | loadingText: '正在加载...', 21 | nomoreText: '没有更多了', 22 | isDot: false, 23 | iconColor: '#b7b7b7', 24 | marginTop: 10, 25 | marginBottom: 10, 26 | height: 'auto', 27 | line: false 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/modal.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:59 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/modal.js 9 | */ 10 | export default { 11 | // modal 组件 12 | modal: { 13 | show: false, 14 | title: '', 15 | content: '', 16 | confirmText: '确认', 17 | cancelText: '取消', 18 | showConfirmButton: true, 19 | showCancelButton: false, 20 | confirmColor: '#2979ff', 21 | cancelColor: '#606266', 22 | buttonReverse: false, 23 | zoom: true, 24 | asyncClose: false, 25 | closeOnClickOverlay: false, 26 | negativeTop: 0, 27 | width: '650rpx', 28 | confirmButtonShape: '' 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/navbar.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:16:18 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/navbar.js 9 | */ 10 | import color from '../color' 11 | export default { 12 | // navbar 组件 13 | navbar: { 14 | safeAreaInsetTop: true, 15 | placeholder: false, 16 | fixed: true, 17 | border: false, 18 | leftIcon: 'arrow-left', 19 | leftText: '', 20 | rightText: '', 21 | rightIcon: '', 22 | title: '', 23 | bgColor: '#ffffff', 24 | titleWidth: '400rpx', 25 | height: '44px', 26 | leftIconSize: 20, 27 | leftIconColor: color.mainColor, 28 | autoBack: false, 29 | titleStyle: '' 30 | } 31 | 32 | } 33 | -------------------------------------------------------------------------------- /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/picker.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:20 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/picker.js 9 | */ 10 | export default { 11 | // picker 12 | picker: { 13 | show: false, 14 | showToolbar: true, 15 | title: '', 16 | columns: () => [], 17 | loading: false, 18 | itemHeight: 44, 19 | cancelText: '取消', 20 | confirmText: '确定', 21 | cancelColor: '#909193', 22 | confirmColor: '#3c9cff', 23 | singleIndex: 0, 24 | visibleItemCount: 5, 25 | keyName: 'text', 26 | closeOnClickOverlay: false, 27 | defaultIndex: () => [], 28 | immediateChange: false 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/popup.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:33 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/popup.js 9 | */ 10 | export default { 11 | // popup组件 12 | popup: { 13 | show: false, 14 | overlay: true, 15 | mode: 'bottom', 16 | duration: 300, 17 | closeable: false, 18 | overlayStyle: () => {}, 19 | closeOnClickOverlay: true, 20 | zIndex: 10075, 21 | safeAreaInsetBottom: true, 22 | safeAreaInsetTop: false, 23 | closeIconPos: 'top-right', 24 | round: 0, 25 | zoom: true, 26 | bgColor: '', 27 | overlayOpacity: 0.5 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /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/radioGroup.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:12 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/radioGroup.js 9 | */ 10 | export default { 11 | // radio-group组件 12 | radioGroup: { 13 | value: '', 14 | disabled: false, 15 | shape: 'circle', 16 | activeColor: '#2979ff', 17 | inactiveColor: '#c8c9cc', 18 | name: '', 19 | size: 18, 20 | placement: 'row', 21 | label: '', 22 | labelColor: '#303133', 23 | labelSize: 14, 24 | labelDisabled: false, 25 | iconColor: '#ffffff', 26 | iconSize: 12, 27 | borderBottom: false, 28 | iconPlacement: 'left' 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /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/tabs.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:14 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/tabs.js 9 | */ 10 | export default { 11 | // 12 | tabs: { 13 | duration: 300, 14 | list: () => [], 15 | lineColor: '#3c9cff', 16 | activeStyle: () => ({ 17 | color: '#303133' 18 | }), 19 | inactiveStyle: () => ({ 20 | color: '#606266' 21 | }), 22 | lineWidth: 20, 23 | lineHeight: 3, 24 | lineBgSize: 'cover', 25 | itemStyle: () => ({ 26 | height: '44px' 27 | }), 28 | scrollable: true, 29 | current: 0, 30 | keyName: 'name' 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /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/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/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/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/uni_modules/uview-ui/libs/css/mp.scss -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/css/nvue.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/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/function/debounce.js: -------------------------------------------------------------------------------- 1 | let timeout = null 2 | 3 | /** 4 | * 防抖原理:一定时间内,只有最后一次操作,再过wait毫秒后才执行函数 5 | * 6 | * @param {Function} func 要执行的回调函数 7 | * @param {Number} wait 延时的时间 8 | * @param {Boolean} immediate 是否立即执行 9 | * @return null 10 | */ 11 | function debounce(func, wait = 500, immediate = false) { 12 | // 清除定时器 13 | if (timeout !== null) clearTimeout(timeout) 14 | // 立即执行,此类情况一般用不到 15 | if (immediate) { 16 | const callNow = !timeout 17 | timeout = setTimeout(() => { 18 | timeout = null 19 | }, wait) 20 | if (callNow) typeof func === 'function' && func() 21 | } else { 22 | // 设置定时器,当最后一次操作后,timeout不会再被清除,所以在延时wait毫秒后执行func回调方法 23 | timeout = setTimeout(() => { 24 | typeof func === 'function' && func() 25 | }, wait) 26 | } 27 | } 28 | 29 | export default debounce 30 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/function/throttle.js: -------------------------------------------------------------------------------- 1 | let timer; let 2 | flag 3 | /** 4 | * 节流原理:在一定时间内,只能触发一次 5 | * 6 | * @param {Function} func 要执行的回调函数 7 | * @param {Number} wait 延时的时间 8 | * @param {Boolean} immediate 是否立即执行 9 | * @return null 10 | */ 11 | function throttle(func, wait = 500, immediate = true) { 12 | if (immediate) { 13 | if (!flag) { 14 | flag = true 15 | // 如果是立即执行,则在wait毫秒内开始时执行 16 | typeof func === 'function' && func() 17 | timer = setTimeout(() => { 18 | flag = false 19 | }, wait) 20 | } 21 | } else if (!flag) { 22 | flag = true 23 | // 如果是非立即执行,则在wait毫秒内的结束处执行 24 | timer = setTimeout(() => { 25 | flag = false 26 | typeof func === 'function' && func() 27 | }, wait) 28 | } 29 | } 30 | export default throttle 31 | -------------------------------------------------------------------------------- /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/dist/build/.automator/mp-weixin/.automator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/build/.automator/mp-weixin/.automator.json -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/app.js: -------------------------------------------------------------------------------- 1 | 2 | require('./common/runtime.js') 3 | require('./common/vendor.js') 4 | require('./common/main.js') -------------------------------------------------------------------------------- /unpackage/dist/build/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/build/mp-weixin/components/bbh-shopcar/bbh-shopcar.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "uni-swipe-action": "/components/uni-swipe-action/uni-swipe-action", 4 | "uni-swipe-action-item": "/components/uni-swipe-action-item/uni-swipe-action-item" 5 | }, 6 | "component": true 7 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/components/hm-news-detail/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/components/hm-news-detail/index.wxml: -------------------------------------------------------------------------------- 1 | {{options.time}} -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/components/oss-upload/oss-upload.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "u-upload": "/uview-ui/components/u-upload/u-upload", 4 | "u-avatar": "/uview-ui/components/u-avatar/u-avatar" 5 | }, 6 | "component": true 7 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/components/oss-upload/oss-upload.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/components/ss-calendar/ss-calendar.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/components/subject-list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/components/subject-list.wxml: -------------------------------------------------------------------------------- 1 | {{item.categoryName}}{{item.title}} -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/components/subject-list.wxss: -------------------------------------------------------------------------------- 1 | .list{padding:0 15rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.list .list_item{background:#fff;width:720rpx;margin:10rpx 0;padding:15rpx;box-sizing:border-box}.list .list_item image{width:100%;height:150px}.list .list_item .name{font-size:40rpx;color:red;font-weight:bolder}.list .list_item .title{font-size:35rpx;padding-top:20rpx} -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/components/uni-goods-nav/uni-goods-nav.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "uni-icons": "/components/uni-icons/uni-icons" 5 | } 6 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/components/uni-icons/uni-icons.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/components/uni-icons/uni-icons.wxml: -------------------------------------------------------------------------------- 1 | {{icons[type]}} -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/components/uni-swipe-action-item/uni-swipe-action-item.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/components/uni-swipe-action/uni-swipe-action.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/components/uni-swipe-action/uni-swipe-action.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/auth/login.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "登录", 3 | "enablePullDownRefresh": false, 4 | "usingComponents": {} 5 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/auth/login.wxml: -------------------------------------------------------------------------------- 1 | 欢迎登录健康平台找回密码注册 -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/auth/login.wxss: -------------------------------------------------------------------------------- 1 | .u-border-bottom.data-v-304c049a{margin-bottom:40rpx!important}.wrap.data-v-304c049a{font-size:28rpx}.wrap .content.data-v-304c049a{width:600rpx;margin:80rpx auto 0}.wrap .content .title.data-v-304c049a{text-align:left;font-size:60rpx;font-weight:500;margin-bottom:100rpx}.wrap .content input.data-v-304c049a{text-align:left;margin-bottom:10rpx;padding-bottom:6rpx}.wrap .content .tips.data-v-304c049a{color:#909399;margin-bottom:60rpx;margin-top:8rpx}.wrap .content .getCaptcha.data-v-304c049a{background-color:#fdf3d0;color:#909399;border:none;font-size:30rpx;padding:12rpx 0}.wrap .content .getCaptcha.data-v-304c049a::after{border:none}.wrap .content .alternative.data-v-304c049a{color:#909399;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;margin-top:30rpx} -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/center/baseInfo.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "修改个人信息", 3 | "enablePullDownRefresh": false, 4 | "usingComponents": { 5 | "u-form": "/uview-ui/components/u-form/u-form", 6 | "u-form-item": "/uview-ui/components/u-form-item/u-form-item", 7 | "u-input": "/uview-ui/components/u-input/u-input", 8 | "u-button": "/uview-ui/components/u-button/u-button" 9 | } 10 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/center/baseInfo.wxml: -------------------------------------------------------------------------------- 1 | 提交 -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/center/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "个人中心", 3 | "usingComponents": { 4 | "oss-upload": "/components/oss-upload/oss-upload", 5 | "u-cell-group": "/uview-ui/components/u-cell-group/u-cell-group", 6 | "u-cell-item": "/uview-ui/components/u-cell-item/u-cell-item" 7 | } 8 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/center/index.wxss: -------------------------------------------------------------------------------- 1 | page{background-color:#ededed}.camera{width:54px;height:44px}.camera:active{background-color:#ededed}.user-box{background-color:#fff}.avatar-body{height:70px;width:70px} -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/center/planHistory/planHistory.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "历史", 3 | "enablePullDownRefresh": false, 4 | "usingComponents": {} 5 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/clock/clock.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "每日打卡", 3 | "enablePullDownRefresh": false, 4 | "usingComponents": { 5 | "ss-calendar": "/components/ss-calendar/ss-calendar", 6 | "u-popup": "/uview-ui/components/u-popup/u-popup", 7 | "u-icon": "/uview-ui/components/u-icon/u-icon" 8 | } 9 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/clock/clock.wxss: -------------------------------------------------------------------------------- 1 | .home .popup{width:"500rpx";height:"380rpx"}.home .popup .content{padding:20rpx;text-align:center}.home .popup .content .title{margin-top:60rpx;line-height:46rpx;font-size:32rpx;font-weight:bolder}.home .popup .content .con{line-height:46rpx}.home .popup .content .icon{margin:30rpx}.home .setbtncolor{background-color:#2b85e4;margin-top:20px} -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/food-detail/food-detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "", 3 | "enablePullDownRefresh": false, 4 | "usingComponents": { 5 | "u-image": "/uview-ui/components/u-image/u-image" 6 | } 7 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/food-detail/food-detail.wxml: -------------------------------------------------------------------------------- 1 | 暂无数据{{"卡路里:"+message.calorie}}{{message.unit}}{{''+message.name+''}}{{"运动号:"+message.foodSn}}{{message.keywords}} -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/food-detail/food-detail.wxss: -------------------------------------------------------------------------------- 1 | .detail .show .box1{padding:10px}.detail .show .box1 .price{font-size:35rpx;color:#a00}.detail .show .box1 .name{font-size:32rpx;line-height:60rpx}.detail .show .line{height:10rpx;width:750rpx;background:#eee}.detail .show .box2{padding:0 10rpx;font-size:32rpx;line-height:70rpx}.detail .show .box3 .tit{font-size:32rpx;padding-left:10px;border-bottom:1px solid #eee;line-height:70rpx}.detail .show .box3 .content{padding:10px;font-size:28rpx;color:#333;line-height:50rpx}.detail .show .nav{position:fixed;bottom:0;width:100%} -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/food/food.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "食品分类", 3 | "enablePullDownRefresh": false, 4 | "usingComponents": { 5 | "u-search": "/uview-ui/components/u-search/u-search" 6 | } 7 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "首页", 3 | "usingComponents": { 4 | "u-swiper": "/uview-ui/components/u-swiper/u-swiper", 5 | "subject-list": "/components/subject-list" 6 | } 7 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/index/index.wxml: -------------------------------------------------------------------------------- 1 | {{item.title}}推荐专题-----没有更多了----- -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/our/our.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "联系我们", 3 | "enablePullDownRefresh": false, 4 | "usingComponents": {} 5 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/our/our.wxml: -------------------------------------------------------------------------------- 1 | 联系电话 : 000-000-000 ( 点击拨打 )联系地址 : 江苏省南京市淳化街道南京工程学院 -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/our/our.wxss: -------------------------------------------------------------------------------- 1 | .contact .img{width:750rpx;height:320rpx}.contact .info{padding:10rpx 20rpx;font-size:30rpx}.contact .info view{line-height:80rpx;border-bottom:1px solid #eee}.contact .map{width:750rpx;height:750rpx} -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/plan/plan.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "计划", 3 | "enablePullDownRefresh": false, 4 | "usingComponents": { 5 | "bbh-shopcar": "/components/bbh-shopcar/bbh-shopcar" 6 | } 7 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/plan/plan.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/plan/plan.wxss: -------------------------------------------------------------------------------- 1 | .shopBox.data-v-3f53786e .uni-swipe_button{border-radius:16rpx 0 0 16rpx!important;background-color:#ff3a31!important} -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/prescription_label/prescription_label.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "详情", 3 | "enablePullDownRefresh": true, 4 | "backgroundTextStyle": "dark", 5 | "usingComponents": {} 6 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/sf-detail/sf-detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "详情展示", 3 | "enablePullDownRefresh": false, 4 | "usingComponents": { 5 | "u-image": "/uview-ui/components/u-image/u-image", 6 | "uni-goods-nav": "/components/uni-goods-nav/uni-goods-nav" 7 | } 8 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/sf-detail/sf-detail.wxss: -------------------------------------------------------------------------------- 1 | .detail .show .box1{padding:10px}.detail .show .box1 .price{font-size:35rpx;color:#a00}.detail .show .box1 .name{font-size:32rpx;line-height:60rpx}.detail .show .line{height:10rpx;width:750rpx;background:#eee}.detail .show .box2{padding:0 10rpx;font-size:32rpx;line-height:70rpx}.detail .show .box3 .tit{font-size:32rpx;padding-left:10px;border-bottom:1px solid #eee;line-height:70rpx}.detail .show .box3 .content{padding:10px;font-size:28rpx;color:#333;line-height:50rpx}.detail .show .nav{position:fixed;bottom:0;width:100%} -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/sport/sport.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "运动分类", 3 | "enablePullDownRefresh": false, 4 | "usingComponents": { 5 | "u-search": "/uview-ui/components/u-search/u-search" 6 | } 7 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/subject-detail/reply.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "回复", 3 | "enablePullDownRefresh": false, 4 | "usingComponents": { 5 | "u-icon": "/uview-ui/components/u-icon/u-icon" 6 | } 7 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/subject-detail/subject-detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "专题详情", 3 | "enablePullDownRefresh": false, 4 | "usingComponents": { 5 | "u-icon": "/uview-ui/components/u-icon/u-icon", 6 | "hm-news-detail": "/components/hm-news-detail/index" 7 | } 8 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/subject/subject.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "专题", 3 | "enablePullDownRefresh": false, 4 | "usingComponents": { 5 | "subject": "/components/subject-list" 6 | } 7 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/subject/subject.wxml: -------------------------------------------------------------------------------- 1 | -----没有更多了----- -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/subject/subject.wxss: -------------------------------------------------------------------------------- 1 | .content{background:#eee}.content .isOver{width:100%;height:50px;line-height:50px;text-align:center;font-size:28rpx} -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/waiting_for_restaurant_order/waiting_for_restaurant_order.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "正在进行", 3 | "enablePullDownRefresh": false, 4 | "backgroundTextStyle": "dark", 5 | "usingComponents": { 6 | "uni-countdown": "/uni_modules/uni-countdown/components/uni-countdown/uni-countdown" 7 | } 8 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/sitemap.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/all_orders/images/all_orders_10_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/build/mp-weixin/static/all_orders/images/all_orders_10_10.jpg -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/all_orders/images/all_orders_12_12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/build/mp-weixin/static/all_orders/images/all_orders_12_12.jpg -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/all_orders/images/all_orders_6_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/build/mp-weixin/static/all_orders/images/all_orders_6_6.jpg -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/all_orders/images/all_orders_8_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/build/mp-weixin/static/all_orders/images/all_orders_8_8.jpg -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/bbh-shopcar/icon/adde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/build/mp-weixin/static/bbh-shopcar/icon/adde.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/bbh-shopcar/icon/addf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/build/mp-weixin/static/bbh-shopcar/icon/addf.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/bbh-shopcar/icon/circleCachee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/build/mp-weixin/static/bbh-shopcar/icon/circleCachee.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/bbh-shopcar/icon/circleCacheef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/build/mp-weixin/static/bbh-shopcar/icon/circleCacheef.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/bbh-shopcar/icon/signe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/build/mp-weixin/static/bbh-shopcar/icon/signe.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/bbh-shopcar/icon/signf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/build/mp-weixin/static/bbh-shopcar/icon/signf.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/center-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/build/mp-weixin/static/center-selected.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/build/mp-weixin/static/center.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/didian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/build/mp-weixin/static/didian.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/build/mp-weixin/static/favicon.ico -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/hm-news-detail/images/img_22946_0_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/build/mp-weixin/static/hm-news-detail/images/img_22946_0_0.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/hm-news-detail/images/img_22946_0_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/build/mp-weixin/static/hm-news-detail/images/img_22946_0_1.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/hm-news-detail/images/img_22946_0_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/build/mp-weixin/static/hm-news-detail/images/img_22946_0_2.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/hm-news-detail/images/img_22946_0_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/build/mp-weixin/static/hm-news-detail/images/img_22946_0_3.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/icon/cart-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/build/mp-weixin/static/icon/cart-active.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/icon/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/build/mp-weixin/static/icon/cart.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/icon/daka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/build/mp-weixin/static/icon/daka.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/icon/food-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/build/mp-weixin/static/icon/food-active.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/icon/food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/build/mp-weixin/static/icon/food.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/icon/home-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/build/mp-weixin/static/icon/home-active.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/icon/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/build/mp-weixin/static/icon/home.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/icon/huati.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/build/mp-weixin/static/icon/huati.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/icon/jihu-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/build/mp-weixin/static/icon/jihu-active.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/icon/jihua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/build/mp-weixin/static/icon/jihua.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/icon/lianxi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/build/mp-weixin/static/icon/lianxi.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/icon/member-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/build/mp-weixin/static/icon/member-active.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/icon/member.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/build/mp-weixin/static/icon/member.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/icon/news-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/build/mp-weixin/static/icon/news-active.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/icon/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/build/mp-weixin/static/icon/news.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/icon/sport-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/build/mp-weixin/static/icon/sport-active.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/icon/sport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/build/mp-weixin/static/icon/sport.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/index-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/build/mp-weixin/static/index-selected.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/build/mp-weixin/static/index.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/build/mp-weixin/static/logo.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/waiting_for_restaurant_order/images/waiting_for_restaurant_order_3_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/build/mp-weixin/static/waiting_for_restaurant_order/images/waiting_for_restaurant_order_3_3.jpg -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/uni_modules/uni-countdown/components/uni-countdown/uni-countdown.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/uni_modules/uni-countdown/components/uni-countdown/uni-countdown.wxss: -------------------------------------------------------------------------------- 1 | .uni-countdown.data-v-0a5a2b64{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;flex-direction:row;-webkit-box-pack:start;-webkit-justify-content:flex-start;justify-content:flex-start;padding:2rpx 0}.uni-countdown__splitor.data-v-0a5a2b64{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;line-height:48rpx;padding:5rpx;font-size:24rpx}.uni-countdown__number.data-v-0a5a2b64{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;align-items:center;width:52rpx;height:48rpx;line-height:48rpx;margin:5rpx;text-align:center;font-size:24rpx} -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/uview-ui/components/u-avatar/u-avatar.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "u-icon": "/uview-ui/components/u-icon/u-icon" 4 | }, 5 | "component": true 6 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/uview-ui/components/u-button/u-button.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/uview-ui/components/u-cell-group/u-cell-group.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/uview-ui/components/u-cell-group/u-cell-group.wxml: -------------------------------------------------------------------------------- 1 | {{''+title+''}} -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/uview-ui/components/u-cell-group/u-cell-group.wxss: -------------------------------------------------------------------------------- 1 | .u-cell-box.data-v-4c7dafca{width:100%}.u-cell-title.data-v-4c7dafca{padding:30rpx 32rpx 10rpx 32rpx;font-size:30rpx;text-align:left;color:#909399}.u-cell-item-box.data-v-4c7dafca{background-color:#fff;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;flex-direction:row} -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/uview-ui/components/u-cell-item/u-cell-item.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "u-icon": "/uview-ui/components/u-icon/u-icon" 4 | }, 5 | "component": true 6 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/uview-ui/components/u-form-item/u-form-item.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "u-icon": "/uview-ui/components/u-icon/u-icon" 4 | }, 5 | "component": true 6 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/uview-ui/components/u-form/u-form.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/uview-ui/components/u-form/u-form.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/uview-ui/components/u-form/u-form.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/build/mp-weixin/uview-ui/components/u-form/u-form.wxss -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/uview-ui/components/u-icon/u-icon.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/uview-ui/components/u-image/u-image.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "u-icon": "/uview-ui/components/u-icon/u-icon" 4 | }, 5 | "component": true 6 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/uview-ui/components/u-image/u-image.wxss: -------------------------------------------------------------------------------- 1 | .u-image.data-v-1f15ab5c{position:relative;-webkit-transition:opacity .5s ease-in-out;transition:opacity .5s ease-in-out}.u-image__image.data-v-1f15ab5c{width:100%;height:100%}.u-image__loading.data-v-1f15ab5c, .u-image__error.data-v-1f15ab5c{position:absolute;top:0;left:0;width:100%;height:100%;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;flex-direction:row;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;background-color:#f3f4f6;color:#909399;font-size:46rpx} -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/uview-ui/components/u-input/u-input.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "u-icon": "/uview-ui/components/u-icon/u-icon" 4 | }, 5 | "component": true 6 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/uview-ui/components/u-line-progress/u-line-progress.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/uview-ui/components/u-line-progress/u-line-progress.wxml: -------------------------------------------------------------------------------- 1 | {{''+(percent+'%')+''}} -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/uview-ui/components/u-mask/u-mask.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/uview-ui/components/u-mask/u-mask.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/uview-ui/components/u-mask/u-mask.wxss: -------------------------------------------------------------------------------- 1 | .u-mask.data-v-0d4c8696{position:fixed;top:0;left:0;right:0;bottom:0;opacity:0;-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s}.u-mask-show.data-v-0d4c8696{opacity:1}.u-mask-zoom.data-v-0d4c8696{-webkit-transform:scale(1.2);transform:scale(1.2)} -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/uview-ui/components/u-popup/u-popup.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "u-mask": "/uview-ui/components/u-mask/u-mask", 4 | "u-icon": "/uview-ui/components/u-icon/u-icon" 5 | }, 6 | "component": true 7 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/uview-ui/components/u-search/u-search.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "u-icon": "/uview-ui/components/u-icon/u-icon" 4 | }, 5 | "component": true 6 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/uview-ui/components/u-swiper/u-swiper.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/uview-ui/components/u-upload/u-upload.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "u-icon": "/uview-ui/components/u-icon/u-icon", 4 | "u-line-progress": "/uview-ui/components/u-line-progress/u-line-progress" 5 | }, 6 | "component": true, 7 | "componentGenerics": { 8 | "scoped-slots-file": true 9 | } 10 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/.automator/mp-weixin/.automator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/dev/.automator/mp-weixin/.automator.json -------------------------------------------------------------------------------- /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/components/bbh-shopcar/bbh-shopcar.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "uni-swipe-action": "/components/uni-swipe-action/uni-swipe-action", 4 | "uni-swipe-action-item": "/components/uni-swipe-action-item/uni-swipe-action-item" 5 | }, 6 | "component": true 7 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/hm-news-detail/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/hm-news-detail/index.wxml: -------------------------------------------------------------------------------- 1 | {{options.time}} -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/oss-upload/oss-upload.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "u-upload": "/uview-ui/components/u-upload/u-upload", 4 | "u-avatar": "/uview-ui/components/u-avatar/u-avatar" 5 | }, 6 | "component": true 7 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/oss-upload/oss-upload.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/ss-calendar/ss-calendar.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/subject-list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/subject-list.wxml: -------------------------------------------------------------------------------- 1 | {{item.categoryName}}{{item.title}} -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/uni-goods-nav/uni-goods-nav.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "uni-icons": "/components/uni-icons/uni-icons" 5 | } 6 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/uni-icons/uni-icons.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/uni-icons/uni-icons.wxml: -------------------------------------------------------------------------------- 1 | {{icons[type]}} -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/uni-swipe-action-item/uni-swipe-action-item.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/uni-swipe-action/uni-swipe-action.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/uni-swipe-action/uni-swipe-action.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/auth/login.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "登录", 3 | "enablePullDownRefresh": false, 4 | "usingComponents": {} 5 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/auth/login.wxml: -------------------------------------------------------------------------------- 1 | 欢迎登录健康平台找回密码注册 -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/center/baseInfo.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "修改个人信息", 3 | "enablePullDownRefresh": false, 4 | "usingComponents": { 5 | "u-form": "/uview-ui/components/u-form/u-form", 6 | "u-form-item": "/uview-ui/components/u-form-item/u-form-item", 7 | "u-input": "/uview-ui/components/u-input/u-input", 8 | "u-button": "/uview-ui/components/u-button/u-button" 9 | } 10 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/center/baseInfo.wxml: -------------------------------------------------------------------------------- 1 | 提交 -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/center/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "个人中心", 3 | "usingComponents": { 4 | "oss-upload": "/components/oss-upload/oss-upload", 5 | "u-cell-group": "/uview-ui/components/u-cell-group/u-cell-group", 6 | "u-cell-item": "/uview-ui/components/u-cell-item/u-cell-item" 7 | } 8 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/center/index.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /** 3 | * 下方引入的为uView UI的集成样式文件,为scss预处理器,其中包含了一些"u-"开头的自定义变量 4 | * uView自定义的css类名和scss变量,均以"u-"开头,不会造成冲突,请放心使用 5 | */ 6 | page { 7 | background-color: #ededed; 8 | } 9 | .camera { 10 | width: 54px; 11 | height: 44px; 12 | } 13 | .camera:active { 14 | background-color: #ededed; 15 | } 16 | .user-box { 17 | background-color: #fff; 18 | } 19 | .avatar-body { 20 | height: 70px; 21 | width: 70px; 22 | } 23 | 24 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/center/planHistory/planHistory.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "历史", 3 | "enablePullDownRefresh": false, 4 | "usingComponents": {} 5 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/clock/clock.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "每日打卡", 3 | "enablePullDownRefresh": false, 4 | "usingComponents": { 5 | "ss-calendar": "/components/ss-calendar/ss-calendar", 6 | "u-popup": "/uview-ui/components/u-popup/u-popup", 7 | "u-icon": "/uview-ui/components/u-icon/u-icon" 8 | } 9 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/clock/clock.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /** 3 | * 下方引入的为uView UI的集成样式文件,为scss预处理器,其中包含了一些"u-"开头的自定义变量 4 | * uView自定义的css类名和scss变量,均以"u-"开头,不会造成冲突,请放心使用 5 | */ 6 | .home .popup { 7 | width: "500rpx"; 8 | height: "380rpx"; 9 | } 10 | .home .popup .content { 11 | padding: 20rpx; 12 | text-align: center; 13 | } 14 | .home .popup .content .title { 15 | margin-top: 60rpx; 16 | line-height: 46rpx; 17 | font-size: 32rpx; 18 | font-weight: bolder; 19 | } 20 | .home .popup .content .con { 21 | line-height: 46rpx; 22 | } 23 | .home .popup .content .icon { 24 | margin: 30rpx; 25 | } 26 | .home .setbtncolor { 27 | background-color: #2B85E4; 28 | margin-top: 20px; 29 | } 30 | 31 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/food-detail/food-detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "", 3 | "enablePullDownRefresh": false, 4 | "usingComponents": { 5 | "u-image": "/uview-ui/components/u-image/u-image" 6 | } 7 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/food-detail/food-detail.wxml: -------------------------------------------------------------------------------- 1 | 暂无数据{{"卡路里:"+message.calorie}}{{message.unit}}{{''+message.name+''}}{{"运动号:"+message.foodSn}}{{message.keywords}} -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/food/food.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "食品分类", 3 | "enablePullDownRefresh": false, 4 | "usingComponents": { 5 | "u-search": "/uview-ui/components/u-search/u-search" 6 | } 7 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "首页", 3 | "usingComponents": { 4 | "u-swiper": "/uview-ui/components/u-swiper/u-swiper", 5 | "subject-list": "/components/subject-list" 6 | } 7 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/index/index.wxml: -------------------------------------------------------------------------------- 1 | {{item.title}}推荐专题-----没有更多了----- -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/our/our.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "联系我们", 3 | "enablePullDownRefresh": false, 4 | "usingComponents": {} 5 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/our/our.wxml: -------------------------------------------------------------------------------- 1 | 联系电话 : 000-000-000 ( 点击拨打 )联系地址 : 江苏省南京市淳化街道南京工程学院 -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/our/our.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /** 3 | * 下方引入的为uView UI的集成样式文件,为scss预处理器,其中包含了一些"u-"开头的自定义变量 4 | * uView自定义的css类名和scss变量,均以"u-"开头,不会造成冲突,请放心使用 5 | */ 6 | .contact .img { 7 | width: 750rpx; 8 | height: 320rpx; 9 | } 10 | .contact .info { 11 | padding: 10rpx 20rpx; 12 | font-size: 30rpx; 13 | } 14 | .contact .info view { 15 | line-height: 80rpx; 16 | border-bottom: 1px solid #EEEEEE; 17 | } 18 | .contact .map { 19 | width: 750rpx; 20 | height: 750rpx; 21 | } 22 | 23 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/plan/plan.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "计划", 3 | "enablePullDownRefresh": false, 4 | "usingComponents": { 5 | "bbh-shopcar": "/components/bbh-shopcar/bbh-shopcar" 6 | } 7 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/plan/plan.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/plan/plan.wxss: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | /* css自定义改变滑动按钮样式 */ 56 | .shopBox.data-v-3bdd76a6 .uni-swipe_button{ 57 | border-radius: 16rpx 0 0 16rpx !important; 58 | background-color: rgb(255,58,49) !important; 59 | } 60 | 61 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/prescription_label/prescription_label.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "详情", 3 | "enablePullDownRefresh": true, 4 | "backgroundTextStyle": "dark", 5 | "usingComponents": {} 6 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/sf-detail/sf-detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "详情展示", 3 | "enablePullDownRefresh": false, 4 | "usingComponents": { 5 | "u-image": "/uview-ui/components/u-image/u-image", 6 | "uni-goods-nav": "/components/uni-goods-nav/uni-goods-nav" 7 | } 8 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/sport/sport.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "运动分类", 3 | "enablePullDownRefresh": false, 4 | "usingComponents": { 5 | "u-search": "/uview-ui/components/u-search/u-search" 6 | } 7 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/subject-detail/reply.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "回复", 3 | "enablePullDownRefresh": false, 4 | "usingComponents": { 5 | "u-icon": "/uview-ui/components/u-icon/u-icon" 6 | } 7 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/subject-detail/subject-detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "专题详情", 3 | "enablePullDownRefresh": false, 4 | "usingComponents": { 5 | "u-icon": "/uview-ui/components/u-icon/u-icon", 6 | "hm-news-detail": "/components/hm-news-detail/index" 7 | } 8 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/subject/subject.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "专题", 3 | "enablePullDownRefresh": false, 4 | "usingComponents": { 5 | "subject": "/components/subject-list" 6 | } 7 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/subject/subject.wxml: -------------------------------------------------------------------------------- 1 | -----没有更多了----- -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/subject/subject.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /** 3 | * 下方引入的为uView UI的集成样式文件,为scss预处理器,其中包含了一些"u-"开头的自定义变量 4 | * uView自定义的css类名和scss变量,均以"u-"开头,不会造成冲突,请放心使用 5 | */ 6 | .content { 7 | background: #EEEEEE; 8 | } 9 | .content .isOver { 10 | width: 100%; 11 | height: 50px; 12 | line-height: 50px; 13 | text-align: center; 14 | font-size: 28rpx; 15 | } 16 | 17 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/waiting_for_restaurant_order/waiting_for_restaurant_order.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "正在进行", 3 | "enablePullDownRefresh": false, 4 | "backgroundTextStyle": "dark", 5 | "usingComponents": { 6 | "uni-countdown": "/uni_modules/uni-countdown/components/uni-countdown/uni-countdown" 7 | } 8 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/project.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "项目配置文件。", 3 | "packOptions": { 4 | "ignore": [] 5 | }, 6 | "setting": { 7 | "urlCheck": false, 8 | "es6": false, 9 | "postcss": false, 10 | "minified": false 11 | }, 12 | "compileType": "miniprogram", 13 | "libVersion": "", 14 | "appid": "wxdc5faa63346245f4", 15 | "projectname": "健康管理平台", 16 | "condition": { 17 | "search": { 18 | "current": -1, 19 | "list": [] 20 | }, 21 | "conversation": { 22 | "current": -1, 23 | "list": [] 24 | }, 25 | "game": { 26 | "current": -1, 27 | "list": [] 28 | }, 29 | "miniprogram": { 30 | "current": -1, 31 | "list": [] 32 | } 33 | } 34 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/sitemap.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/all_orders/images/all_orders_10_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/dev/mp-weixin/static/all_orders/images/all_orders_10_10.jpg -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/all_orders/images/all_orders_12_12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/dev/mp-weixin/static/all_orders/images/all_orders_12_12.jpg -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/all_orders/images/all_orders_6_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/dev/mp-weixin/static/all_orders/images/all_orders_6_6.jpg -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/all_orders/images/all_orders_8_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/dev/mp-weixin/static/all_orders/images/all_orders_8_8.jpg -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/bbh-shopcar/icon/adde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/dev/mp-weixin/static/bbh-shopcar/icon/adde.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/bbh-shopcar/icon/addf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/dev/mp-weixin/static/bbh-shopcar/icon/addf.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/bbh-shopcar/icon/circleCachee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/dev/mp-weixin/static/bbh-shopcar/icon/circleCachee.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/bbh-shopcar/icon/circleCacheef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/dev/mp-weixin/static/bbh-shopcar/icon/circleCacheef.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/bbh-shopcar/icon/signe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/dev/mp-weixin/static/bbh-shopcar/icon/signe.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/bbh-shopcar/icon/signf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/dev/mp-weixin/static/bbh-shopcar/icon/signf.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/center-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/dev/mp-weixin/static/center-selected.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/dev/mp-weixin/static/center.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/didian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/dev/mp-weixin/static/didian.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/dev/mp-weixin/static/favicon.ico -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/hm-news-detail/images/img_22946_0_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/dev/mp-weixin/static/hm-news-detail/images/img_22946_0_0.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/hm-news-detail/images/img_22946_0_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/dev/mp-weixin/static/hm-news-detail/images/img_22946_0_1.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/hm-news-detail/images/img_22946_0_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/dev/mp-weixin/static/hm-news-detail/images/img_22946_0_2.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/hm-news-detail/images/img_22946_0_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/dev/mp-weixin/static/hm-news-detail/images/img_22946_0_3.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/icon/cart-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/dev/mp-weixin/static/icon/cart-active.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/icon/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/dev/mp-weixin/static/icon/cart.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/icon/daka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/dev/mp-weixin/static/icon/daka.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/icon/food-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/dev/mp-weixin/static/icon/food-active.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/icon/food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/dev/mp-weixin/static/icon/food.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/icon/home-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/dev/mp-weixin/static/icon/home-active.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/icon/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/dev/mp-weixin/static/icon/home.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/icon/huati.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/dev/mp-weixin/static/icon/huati.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/icon/jihu-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/dev/mp-weixin/static/icon/jihu-active.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/icon/jihua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/dev/mp-weixin/static/icon/jihua.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/icon/lianxi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/dev/mp-weixin/static/icon/lianxi.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/icon/member-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/dev/mp-weixin/static/icon/member-active.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/icon/member.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/dev/mp-weixin/static/icon/member.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/icon/news-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/dev/mp-weixin/static/icon/news-active.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/icon/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/dev/mp-weixin/static/icon/news.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/icon/sport-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/dev/mp-weixin/static/icon/sport-active.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/icon/sport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/dev/mp-weixin/static/icon/sport.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/index-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/dev/mp-weixin/static/index-selected.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/dev/mp-weixin/static/index.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/dev/mp-weixin/static/logo.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/waiting_for_restaurant_order/images/waiting_for_restaurant_order_3_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdgerJay518/uni-hmanage/52f4c09b4170dd0a130ff55bd086342db86fe62d/unpackage/dist/dev/mp-weixin/static/waiting_for_restaurant_order/images/waiting_for_restaurant_order_3_3.jpg -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uni-countdown/components/uni-countdown/uni-countdown.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uview-ui/components/u-avatar/u-avatar.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "u-icon": "/uview-ui/components/u-icon/u-icon" 4 | }, 5 | "component": true 6 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uview-ui/components/u-button/u-button.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uview-ui/components/u-cell-group/u-cell-group.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uview-ui/components/u-cell-group/u-cell-group.wxml: -------------------------------------------------------------------------------- 1 | {{''+title+''}} -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uview-ui/components/u-cell-group/u-cell-group.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /** 3 | * 下方引入的为uView UI的集成样式文件,为scss预处理器,其中包含了一些"u-"开头的自定义变量 4 | * uView自定义的css类名和scss变量,均以"u-"开头,不会造成冲突,请放心使用 5 | */ 6 | .u-cell-box.data-v-5723aa40 { 7 | width: 100%; 8 | } 9 | .u-cell-title.data-v-5723aa40 { 10 | padding: 30rpx 32rpx 10rpx 32rpx; 11 | font-size: 30rpx; 12 | text-align: left; 13 | color: #909399; 14 | } 15 | .u-cell-item-box.data-v-5723aa40 { 16 | background-color: #FFFFFF; 17 | -webkit-box-orient: horizontal; 18 | -webkit-box-direction: normal; 19 | -webkit-flex-direction: row; 20 | flex-direction: row; 21 | } 22 | 23 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uview-ui/components/u-cell-item/u-cell-item.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "u-icon": "/uview-ui/components/u-icon/u-icon" 4 | }, 5 | "component": true 6 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uview-ui/components/u-form-item/u-form-item.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "u-icon": "/uview-ui/components/u-icon/u-icon" 4 | }, 5 | "component": true 6 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uview-ui/components/u-form/u-form.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uview-ui/components/u-form/u-form.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uview-ui/components/u-form/u-form.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /** 3 | * 下方引入的为uView UI的集成样式文件,为scss预处理器,其中包含了一些"u-"开头的自定义变量 4 | * uView自定义的css类名和scss变量,均以"u-"开头,不会造成冲突,请放心使用 5 | */ 6 | 7 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uview-ui/components/u-icon/u-icon.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uview-ui/components/u-image/u-image.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "u-icon": "/uview-ui/components/u-icon/u-icon" 4 | }, 5 | "component": true 6 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uview-ui/components/u-input/u-input.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "u-icon": "/uview-ui/components/u-icon/u-icon" 4 | }, 5 | "component": true 6 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uview-ui/components/u-line-progress/u-line-progress.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uview-ui/components/u-line-progress/u-line-progress.wxml: -------------------------------------------------------------------------------- 1 | {{''+(percent+'%')+''}} -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uview-ui/components/u-mask/u-mask.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uview-ui/components/u-mask/u-mask.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uview-ui/components/u-mask/u-mask.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /** 3 | * 下方引入的为uView UI的集成样式文件,为scss预处理器,其中包含了一些"u-"开头的自定义变量 4 | * uView自定义的css类名和scss变量,均以"u-"开头,不会造成冲突,请放心使用 5 | */ 6 | .u-mask.data-v-4bfa3b00 { 7 | position: fixed; 8 | top: 0; 9 | left: 0; 10 | right: 0; 11 | bottom: 0; 12 | opacity: 0; 13 | -webkit-transition: -webkit-transform 0.3s; 14 | transition: -webkit-transform 0.3s; 15 | transition: transform 0.3s; 16 | transition: transform 0.3s, -webkit-transform 0.3s; 17 | } 18 | .u-mask-show.data-v-4bfa3b00 { 19 | opacity: 1; 20 | } 21 | .u-mask-zoom.data-v-4bfa3b00 { 22 | -webkit-transform: scale(1.2, 1.2); 23 | transform: scale(1.2, 1.2); 24 | } 25 | 26 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uview-ui/components/u-popup/u-popup.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "u-mask": "/uview-ui/components/u-mask/u-mask", 4 | "u-icon": "/uview-ui/components/u-icon/u-icon" 5 | }, 6 | "component": true 7 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uview-ui/components/u-search/u-search.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "u-icon": "/uview-ui/components/u-icon/u-icon" 4 | }, 5 | "component": true 6 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uview-ui/components/u-swiper/u-swiper.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uview-ui/components/u-upload/u-upload.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "u-icon": "/uview-ui/components/u-icon/u-icon", 4 | "u-line-progress": "/uview-ui/components/u-line-progress/u-line-progress" 5 | }, 6 | "component": true, 7 | "componentGenerics": { 8 | "scoped-slots-file": true 9 | } 10 | } -------------------------------------------------------------------------------- /uview-ui/components/u-loading-page/u-loading-page.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 22 | 23 | 26 | -------------------------------------------------------------------------------- /uview-ui/components/u-parse/libs/handler.wxs: -------------------------------------------------------------------------------- 1 | var inline = { 2 | abbr: 1, 3 | b: 1, 4 | big: 1, 5 | code: 1, 6 | del: 1, 7 | em: 1, 8 | i: 1, 9 | ins: 1, 10 | label: 1, 11 | q: 1, 12 | small: 1, 13 | span: 1, 14 | strong: 1, 15 | sub: 1, 16 | sup: 1 17 | } 18 | module.exports = { 19 | use: function(item) { 20 | return !item.c && !inline[item.name] && (item.attrs.style || '').indexOf('display:inline') == -1 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /uview-ui/components/u-tr/u-tr.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 18 | 19 | 26 | -------------------------------------------------------------------------------- /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/style.vue.scss"; 8 | /* #endif */ 9 | 10 | // nvue的特有样式 11 | /* #ifdef APP-NVUE */ 12 | @import "./libs/css/style.nvue.scss"; 13 | /* #endif */ 14 | 15 | // 小程序特有的样式 16 | /* #ifdef MP */ 17 | @import "./libs/css/style.mp.scss"; 18 | /* #endif */ 19 | 20 | // H5特有的样式 21 | /* #ifdef H5 */ 22 | @import "./libs/css/style.h5.scss"; 23 | /* #endif */ -------------------------------------------------------------------------------- /uview-ui/libs/config/config.js: -------------------------------------------------------------------------------- 1 | // 此版本发布于2020-12-17 2 | let version = '1.8.3'; 3 | 4 | export default { 5 | v: version, 6 | version: version, 7 | // 主题名称 8 | type: [ 9 | 'primary', 10 | 'success', 11 | 'info', 12 | 'error', 13 | 'warning' 14 | ] 15 | } -------------------------------------------------------------------------------- /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 | } -------------------------------------------------------------------------------- /uview-ui/libs/css/style.components.scss: -------------------------------------------------------------------------------- 1 | // 定义混入指令,用于在非nvue环境下的flex定义,因为nvue没有display属性,会报错 2 | @mixin vue-flex($direction: row) { 3 | /* #ifndef APP-NVUE */ 4 | display: flex; 5 | flex-direction: $direction; 6 | /* #endif */ 7 | } -------------------------------------------------------------------------------- /uview-ui/libs/css/style.h5.scss: -------------------------------------------------------------------------------- 1 | /* H5的时候,隐藏滚动条 */ 2 | ::-webkit-scrollbar { 3 | display: none; 4 | width: 0 !important; 5 | height: 0 !important; 6 | -webkit-appearance: none; 7 | background: transparent; 8 | } 9 | -------------------------------------------------------------------------------- /uview-ui/libs/css/style.nvue.scss: -------------------------------------------------------------------------------- 1 | .nvue { 2 | font-size: 24rpx; 3 | } -------------------------------------------------------------------------------- /uview-ui/libs/function/$parent.js: -------------------------------------------------------------------------------- 1 | // 获取父组件的参数,因为支付宝小程序不支持provide/inject的写法 2 | // this.$parent在非H5中,可以准确获取到父组件,但是在H5中,需要多次this.$parent.$parent.xxx 3 | // 这里默认值等于undefined有它的含义,因为最顶层元素(组件)的$parent就是undefined,意味着不传name 4 | // 值(默认为undefined),就是查找最顶层的$parent 5 | export default function $parent(name = undefined) { 6 | let parent = this.$parent; 7 | // 通过while历遍,这里主要是为了H5需要多层解析的问题 8 | while (parent) { 9 | // 父组件 10 | if (parent.$options && parent.$options.name !== name) { 11 | // 如果组件的name不相等,继续上一级寻找 12 | parent = parent.$parent; 13 | } else { 14 | return parent; 15 | } 16 | } 17 | return false; 18 | } -------------------------------------------------------------------------------- /uview-ui/libs/function/addUnit.js: -------------------------------------------------------------------------------- 1 | import validation from './test.js'; 2 | 3 | // 添加单位,如果有rpx,%,px等单位结尾或者值为auto,直接返回,否则加上rpx单位结尾 4 | export default function addUnit(value = 'auto', unit = 'rpx') { 5 | value = String(value); 6 | // 用uView内置验证规则中的number判断是否为数值 7 | return validation.number(value) ? `${value}${unit}` : value; 8 | } -------------------------------------------------------------------------------- /uview-ui/libs/function/bem.js: -------------------------------------------------------------------------------- 1 | function bem(name, conf) { 2 | 3 | } 4 | 5 | module.exports.bem = bem; 6 | -------------------------------------------------------------------------------- /uview-ui/libs/function/debounce.js: -------------------------------------------------------------------------------- 1 | let timeout = null; 2 | 3 | /** 4 | * 防抖原理:一定时间内,只有最后一次操作,再过wait毫秒后才执行函数 5 | * 6 | * @param {Function} func 要执行的回调函数 7 | * @param {Number} wait 延时的时间 8 | * @param {Boolean} immediate 是否立即执行 9 | * @return null 10 | */ 11 | function debounce(func, wait = 500, immediate = false) { 12 | // 清除定时器 13 | if (timeout !== null) clearTimeout(timeout); 14 | // 立即执行,此类情况一般用不到 15 | if (immediate) { 16 | var callNow = !timeout; 17 | timeout = setTimeout(function() { 18 | timeout = null; 19 | }, wait); 20 | if (callNow) typeof func === 'function' && func(); 21 | } else { 22 | // 设置定时器,当最后一次操作后,timeout不会再被清除,所以在延时wait毫秒后执行func回调方法 23 | timeout = setTimeout(function() { 24 | typeof func === 'function' && func(); 25 | }, wait); 26 | } 27 | } 28 | 29 | export default debounce 30 | -------------------------------------------------------------------------------- /uview-ui/libs/function/deepClone.js: -------------------------------------------------------------------------------- 1 | // 判断arr是否为一个数组,返回一个bool值 2 | function isArray (arr) { 3 | return Object.prototype.toString.call(arr) === '[object Array]'; 4 | } 5 | 6 | // 深度克隆 7 | function deepClone (obj) { 8 | // 对常见的“非”值,直接返回原来值 9 | if([null, undefined, NaN, false].includes(obj)) return obj; 10 | if(typeof obj !== "object" && typeof obj !== 'function') { 11 | //原始类型直接返回 12 | return obj; 13 | } 14 | var o = isArray(obj) ? [] : {}; 15 | for(let i in obj) { 16 | if(obj.hasOwnProperty(i)){ 17 | o[i] = typeof obj[i] === "object" ? deepClone(obj[i]) : obj[i]; 18 | } 19 | } 20 | return o; 21 | } 22 | 23 | export default deepClone; 24 | -------------------------------------------------------------------------------- /uview-ui/libs/function/deepMerge.js: -------------------------------------------------------------------------------- 1 | import deepClone from "./deepClone"; 2 | 3 | // JS对象深度合并 4 | function deepMerge(target = {}, source = {}) { 5 | target = deepClone(target); 6 | if (typeof target !== 'object' || typeof source !== 'object') return false; 7 | for (var prop in source) { 8 | if (!source.hasOwnProperty(prop)) continue; 9 | if (prop in target) { 10 | if (typeof target[prop] !== 'object') { 11 | target[prop] = source[prop]; 12 | } else { 13 | if (typeof source[prop] !== 'object') { 14 | target[prop] = source[prop]; 15 | } else { 16 | if (target[prop].concat && source[prop].concat) { 17 | target[prop] = target[prop].concat(source[prop]); 18 | } else { 19 | target[prop] = deepMerge(target[prop], source[prop]); 20 | } 21 | } 22 | } 23 | } else { 24 | target[prop] = source[prop]; 25 | } 26 | } 27 | return target; 28 | } 29 | 30 | export default deepMerge; -------------------------------------------------------------------------------- /uview-ui/libs/function/random.js: -------------------------------------------------------------------------------- 1 | function random(min, max) { 2 | if (min >= 0 && max > 0 && max >= min) { 3 | let gab = max - min + 1; 4 | return Math.floor(Math.random() * gab + min); 5 | } else { 6 | return 0; 7 | } 8 | } 9 | 10 | export default random; 11 | -------------------------------------------------------------------------------- /uview-ui/libs/function/randomArray.js: -------------------------------------------------------------------------------- 1 | // 打乱数组 2 | function randomArray(array = []) { 3 | // 原理是sort排序,Math.random()产生0<= x < 1之间的数,会导致x-0.05大于或者小于0 4 | return array.sort(() => Math.random() - 0.5); 5 | } 6 | 7 | export default randomArray 8 | -------------------------------------------------------------------------------- /uview-ui/libs/function/sys.js: -------------------------------------------------------------------------------- 1 | export function os() { 2 | return uni.getSystemInfoSync().platform; 3 | }; 4 | 5 | export function sys() { 6 | return uni.getSystemInfoSync(); 7 | } 8 | 9 | 10 | -------------------------------------------------------------------------------- /uview-ui/libs/function/throttle.js: -------------------------------------------------------------------------------- 1 | let timer, flag; 2 | /** 3 | * 节流原理:在一定时间内,只能触发一次 4 | * 5 | * @param {Function} func 要执行的回调函数 6 | * @param {Number} wait 延时的时间 7 | * @param {Boolean} immediate 是否立即执行 8 | * @return null 9 | */ 10 | function throttle(func, wait = 500, immediate = true) { 11 | if (immediate) { 12 | if (!flag) { 13 | flag = true; 14 | // 如果是立即执行,则在wait毫秒内开始时执行 15 | typeof func === 'function' && func(); 16 | timer = setTimeout(() => { 17 | flag = false; 18 | }, wait); 19 | } 20 | } else { 21 | if (!flag) { 22 | flag = true 23 | // 如果是非立即执行,则在wait毫秒内的结束处执行 24 | timer = setTimeout(() => { 25 | flag = false 26 | typeof func === 'function' && func(); 27 | }, wait); 28 | } 29 | 30 | } 31 | }; 32 | export default throttle 33 | -------------------------------------------------------------------------------- /uview-ui/libs/function/toast.js: -------------------------------------------------------------------------------- 1 | function toast(title, duration = 1500) { 2 | uni.showToast({ 3 | title: title, 4 | icon: 'none', 5 | duration: duration 6 | }) 7 | } 8 | 9 | export default toast 10 | -------------------------------------------------------------------------------- /uview-ui/libs/function/trim.js: -------------------------------------------------------------------------------- 1 | function trim(str, pos = 'both') { 2 | if (pos == 'both') { 3 | return str.replace(/^\s+|\s+$/g, ""); 4 | } else if (pos == "left") { 5 | return str.replace(/^\s*/, ''); 6 | } else if (pos == 'right') { 7 | return str.replace(/(\s*$)/g, ""); 8 | } else if (pos == 'all') { 9 | return str.replace(/\s+/g, ""); 10 | } else { 11 | return str; 12 | } 13 | } 14 | 15 | export default trim 16 | -------------------------------------------------------------------------------- /uview-ui/libs/mixin/mpShare.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | onLoad() { 3 | // 设置默认的转发参数 4 | this.$u.mpShare = { 5 | title: '', // 默认为小程序名称 6 | path: '', // 默认为当前页面路径 7 | imageUrl: '' // 默认为当前页面的截图 8 | } 9 | }, 10 | onShareAppMessage() { 11 | return this.$u.mpShare 12 | }, 13 | // #ifdef MP-WEIXIN 14 | onShareTimeline() { 15 | return this.$u.mpShare 16 | } 17 | // #endif 18 | } 19 | -------------------------------------------------------------------------------- /uview-ui/libs/store/index.js: -------------------------------------------------------------------------------- 1 | // 暂时不用vuex模块方式实现,将该方法直接放入到/store/index.js中 2 | const module = { 3 | actions: { 4 | $uStore({rootState}, params) { 5 | let nameArr = params.name.split('.'); 6 | if(nameArr.length >= 2) { 7 | let obj = rootState[nameArr[0]]; 8 | for(let i = 1; i < nameArr.length - 1; i ++) { 9 | obj = obj[nameArr[i]]; 10 | } 11 | obj[nameArr[nameArr.length - 1]] = params.value; 12 | } else { 13 | rootState[params.name] = params.value; 14 | } 15 | } 16 | } 17 | } 18 | 19 | export default module -------------------------------------------------------------------------------- /uview-ui/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "uview-ui", 3 | "version": "1.8.3", 4 | "description": "uView UI,是uni-app生态优秀的UI框架,全面的组件和便捷的工具会让您信手拈来,如鱼得水", 5 | "main": "index.js", 6 | "keywords": [ 7 | "uview", 8 | "uView", 9 | "uni-app", 10 | "uni-app ui", 11 | "uniapp", 12 | "uviewui", 13 | "uview ui", 14 | "uviewUI", 15 | "uViewui", 16 | "uViewUI", 17 | "uView UI", 18 | "uni ui", 19 | "uni UI", 20 | "uniapp ui", 21 | "ui", 22 | "UI框架", 23 | "uniapp ui框架", 24 | "uniapp UI" 25 | ], 26 | "scripts": { 27 | "test": "echo \"Error: no test specified\" && exit 1" 28 | }, 29 | "repository": { 30 | "type": "git", 31 | "url": "" 32 | }, 33 | "devDependencies": { 34 | "node-sass": "^4.14.0", 35 | "sass-loader": "^8.0.2" 36 | }, 37 | "author": "uView", 38 | "license": "MIT" 39 | } 40 | -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | // 配置路径别名 3 | configureWebpack: { 4 | devServer: { 5 | disableHostCheck: true 6 | } 7 | } 8 | } 9 | --------------------------------------------------------------------------------