├── .hbuilderx └── launch.json ├── App.vue ├── README.en.md ├── README.md ├── common ├── city.data.js ├── icon.css └── uni-ui.scss ├── components ├── RightMessage.vue ├── bookOrderComplete.vue ├── bookOrderComponents.vue ├── bookOrderFahuo.vue ├── bookOrderPopup.vue ├── book_list │ └── book_list.vue ├── chatinput.vue ├── commentDemand.vue ├── fabuComponent.vue ├── leftMessage.vue ├── lunbo │ └── lunbo.vue ├── messageshow.vue ├── navigationBar.vue ├── popupComponent.vue ├── related │ └── related.vue ├── sellerComplete.vue ├── semp-city │ └── semp-city.vue ├── shopCar │ └── shopCar.vue ├── spendMoney │ └── index.vue ├── sunui-mverify │ ├── README.md │ ├── iconfont.css │ └── sunui-mverify.vue ├── tfgg-verify │ └── tfgg-verify.vue ├── uni-nav │ ├── ai-goods-action │ │ └── ai-goods-action.vue │ └── uni-icons │ │ ├── icons.js │ │ └── uni-icons.vue ├── uni-section │ ├── config.json │ ├── readme.md │ └── uni-section.vue └── userCollect.vue ├── main.js ├── manifest.json ├── package-lock.json ├── package.json ├── pages.json ├── pages ├── JerryList │ └── JerryList.vue ├── aboutwe │ └── aboutwe.vue ├── blank │ └── blank.vue ├── cart │ └── cart.vue ├── category │ └── index.vue ├── center │ ├── center.vue │ └── centerDetail.vue ├── chat │ └── index.vue ├── chatroom │ ├── chatUser.vue │ └── index.vue ├── chi │ └── chi.vue ├── city │ └── city.vue ├── collect │ └── collect.vue ├── comments │ └── index.vue ├── detail │ ├── detail.vue │ └── orderDetail.vue ├── directSales │ └── index.vue ├── forget │ ├── check.vue │ ├── index.vue │ └── setPassword.vue ├── index │ ├── banner.jpg │ └── index.vue ├── issue │ └── issue.vue ├── login │ └── login.vue ├── myOrder │ └── myOrder.vue ├── myfabu │ └── myfabu.vue ├── mypaper │ ├── mypaper.vue │ └── mypapered.vue ├── profile │ └── profile.vue ├── resgist │ └── regist.vue ├── sell │ ├── search.vue │ └── sell.vue ├── shengcun │ └── shengcun.vue ├── shouchu │ └── shouchu.vue ├── solded │ └── index.vue ├── upload │ └── uppload.vue ├── warehouse │ └── index.vue └── zhinan │ └── zhinan.vue ├── static ├── book.png ├── bookSelected.png ├── cart.png ├── cartSelected.png ├── cate │ ├── Category.png │ ├── cloud upload-fill.png │ ├── fabu.png │ ├── guanyuwomen.png │ ├── jingxuan.png │ ├── meishi.png │ ├── myfabuNew.png │ ├── renzhitiao.png │ ├── shengcun.png │ ├── shoucang.png │ ├── university.jpeg │ ├── xuqiuNew.png │ ├── zhinan.png │ └── zhiying.png ├── chat.png ├── collect.png ├── collectSelcted.png ├── del.png ├── font │ ├── iconfont.css │ ├── iconfont.ttf │ ├── iconfont.woff │ └── iconfont.woff2 ├── friend.png ├── icon │ ├── cart.png │ ├── cartSelecter.png │ ├── jia.png │ ├── jian.png │ ├── mail.png │ └── orderDetail.png ├── img │ ├── customerHL.png │ └── homeHL.png ├── imgs │ ├── close_icon.png │ ├── code_icon.png │ ├── fire_gray.png │ ├── fire_green.png │ ├── fire_white.png │ ├── mobile_icon.png │ ├── moom_gray.png │ ├── moom_green.png │ ├── moom_white.png │ └── pwd_icon.png ├── index.png ├── indexSelected.png ├── logo.png ├── lunbo │ ├── 01.jpg │ ├── 02.jpg │ ├── 03.jpg │ └── 04.jpg ├── my.png ├── mySelected.png ├── nofound.jpg ├── profile.png ├── profile │ ├── bysell.png │ ├── guanyuwom.png │ ├── mycollect.png │ ├── upload.png │ ├── yijianfankui.png │ ├── yishouchu.png │ ├── yixiajia.png │ └── zhitiao.png ├── shop.png ├── shouhuo.png ├── tfgg-verify │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ └── icon-button-normal.png ├── upload.png └── uploaded.png ├── store ├── index.js └── msg.js ├── uni.scss ├── uni_modules ├── helang-waterfall │ ├── changelog.md │ ├── components │ │ └── helang-waterfall │ │ │ └── helang-waterfall.vue │ ├── manifest.json │ ├── package.json │ ├── pages │ │ └── waterfall │ │ │ └── waterfall.vue │ ├── readme.md │ └── static │ │ └── waterfall │ │ ├── 0.jpg │ │ ├── 1.jpg │ │ └── 2.jpg ├── uni-badge │ ├── changelog.md │ ├── components │ │ └── uni-badge │ │ │ └── uni-badge.vue │ ├── package.json │ └── readme.md ├── uni-config-center │ ├── changelog.md │ ├── package.json │ ├── readme.md │ └── uniCloud │ │ └── cloudfunctions │ │ └── common │ │ └── uni-config-center │ │ ├── index.js │ │ └── package.json ├── uni-icons │ ├── changelog.md │ ├── components │ │ └── uni-icons │ │ │ ├── icons.js │ │ │ ├── uni-icons.vue │ │ │ └── uni.ttf │ ├── package.json │ └── readme.md ├── uni-list │ ├── changelog.md │ ├── components │ │ ├── uni-list-ad │ │ │ └── uni-list-ad.vue │ │ ├── uni-list-chat │ │ │ ├── uni-list-chat.scss │ │ │ └── uni-list-chat.vue │ │ ├── uni-list-item │ │ │ └── uni-list-item.vue │ │ └── uni-list │ │ │ ├── uni-list.vue │ │ │ ├── uni-refresh.vue │ │ │ └── uni-refresh.wxs │ ├── package.json │ └── readme.md ├── uni-load-more │ ├── changelog.md │ ├── components │ │ └── uni-load-more │ │ │ └── uni-load-more.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 ├── debug │ ├── .roid.ins │ └── android_debug.apk └── dist │ ├── build │ ├── .automator │ │ └── app-plus │ │ │ └── .automator.json │ └── app-plus │ │ ├── __uniappchooselocation.js │ │ ├── __uniapperror.png │ │ ├── __uniappes6.js │ │ ├── __uniappopenlocation.js │ │ ├── __uniapppicker.js │ │ ├── __uniappquill.js │ │ ├── __uniappquillimageresize.js │ │ ├── __uniappscan.js │ │ ├── __uniappsuccess.png │ │ ├── __uniappview.html │ │ ├── app-config-service.js │ │ ├── app-config.js │ │ ├── app-service.js │ │ ├── app-view.js │ │ ├── manifest.json │ │ ├── pages │ │ └── index │ │ │ └── banner.jpg │ │ ├── static │ │ ├── book.png │ │ ├── bookSelected.png │ │ ├── cart.png │ │ ├── cartSelected.png │ │ ├── cate │ │ │ ├── Category.png │ │ │ ├── cloud upload-fill.png │ │ │ ├── fabu.png │ │ │ ├── guanyuwomen.png │ │ │ ├── jingxuan.png │ │ │ ├── meishi.png │ │ │ ├── myfabuNew.png │ │ │ ├── renzhitiao.png │ │ │ ├── shengcun.png │ │ │ ├── shoucang.png │ │ │ ├── university.jpeg │ │ │ ├── xuqiuNew.png │ │ │ ├── zhinan.png │ │ │ └── zhiying.png │ │ ├── chat.png │ │ ├── collect.png │ │ ├── collectSelcted.png │ │ ├── del.png │ │ ├── font │ │ │ ├── iconfont.css │ │ │ ├── iconfont.ttf │ │ │ ├── iconfont.woff │ │ │ └── iconfont.woff2 │ │ ├── friend.png │ │ ├── icon │ │ │ ├── cart.png │ │ │ ├── cartSelecter.png │ │ │ ├── jia.png │ │ │ ├── jian.png │ │ │ ├── mail.png │ │ │ └── orderDetail.png │ │ ├── img │ │ │ ├── customerHL.png │ │ │ └── homeHL.png │ │ ├── imgs │ │ │ ├── close_icon.png │ │ │ ├── code_icon.png │ │ │ ├── fire_gray.png │ │ │ ├── fire_green.png │ │ │ ├── fire_white.png │ │ │ ├── mobile_icon.png │ │ │ ├── moom_gray.png │ │ │ ├── moom_green.png │ │ │ ├── moom_white.png │ │ │ └── pwd_icon.png │ │ ├── index.png │ │ ├── indexSelected.png │ │ ├── logo.png │ │ ├── lunbo │ │ │ ├── 01.jpg │ │ │ ├── 02.jpg │ │ │ ├── 03.jpg │ │ │ └── 04.jpg │ │ ├── my.png │ │ ├── mySelected.png │ │ ├── nofound.jpg │ │ ├── profile.png │ │ ├── profile │ │ │ ├── bysell.png │ │ │ ├── guanyuwom.png │ │ │ ├── mycollect.png │ │ │ ├── upload.png │ │ │ ├── yijianfankui.png │ │ │ ├── yishouchu.png │ │ │ ├── yixiajia.png │ │ │ └── zhitiao.png │ │ ├── shop.png │ │ ├── shouhuo.png │ │ ├── tfgg-verify │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ └── icon-button-normal.png │ │ ├── upload.png │ │ └── uploaded.png │ │ ├── uni_modules │ │ ├── helang-waterfall │ │ │ └── static │ │ │ │ └── waterfall │ │ │ │ ├── 0.jpg │ │ │ │ ├── 1.jpg │ │ │ │ └── 2.jpg │ │ └── uni-icons │ │ │ └── components │ │ │ └── uni-icons │ │ │ └── uni.ttf │ │ ├── view.css │ │ └── view.umd.min.js │ └── dev │ ├── .automator │ ├── app-plus │ │ └── .automator.json │ └── mp-weixin │ │ └── .automator.json │ ├── .sourcemap │ └── mp-weixin │ │ ├── common │ │ ├── main.js.map │ │ ├── runtime.js.map │ │ └── vendor.js.map │ │ ├── components │ │ ├── bookOrderComplete.js.map │ │ ├── bookOrderComponents.js.map │ │ ├── bookOrderFahuo.js.map │ │ ├── bookOrderPopup.js.map │ │ ├── book_list │ │ │ ├── book_list.js.map │ │ │ ├── book_order.js.map │ │ │ └── needBook.js.map │ │ ├── chatinput.js.map │ │ ├── fabuComponent.js.map │ │ ├── lunbo │ │ │ └── lunbo.js.map │ │ ├── messageshow.js.map │ │ ├── navigationBar.js.map │ │ ├── popupComponent.js.map │ │ ├── related │ │ │ └── related.js.map │ │ ├── sellerComplete.js.map │ │ ├── spendMoney │ │ │ └── index.js.map │ │ ├── sunui-mverify │ │ │ └── sunui-mverify.js.map │ │ ├── swiperview │ │ │ └── swiperview.js.map │ │ ├── uni-nav │ │ │ ├── ai-goods-action │ │ │ │ └── ai-goods-action.js.map │ │ │ └── uni-icons │ │ │ │ └── uni-icons.js.map │ │ └── userCollect.js.map │ │ ├── node-modules │ │ └── @dcloudio │ │ │ └── uni-cli-shared │ │ │ └── components │ │ │ └── unicloud-db.js.map │ │ ├── pages │ │ ├── JerryList │ │ │ └── JerryList.js.map │ │ ├── aboutwe │ │ │ └── aboutwe.js.map │ │ ├── advice │ │ │ └── advice.js.map │ │ ├── cart │ │ │ └── cart.js.map │ │ ├── category │ │ │ └── index.js.map │ │ ├── center │ │ │ ├── center.js.map │ │ │ └── centerDetail.js.map │ │ ├── chat │ │ │ └── index.js.map │ │ ├── chatroom │ │ │ ├── chatUser.js.map │ │ │ └── index.js.map │ │ ├── chi │ │ │ └── chi.js.map │ │ ├── collect │ │ │ └── collect.js.map │ │ ├── comments │ │ │ └── index.js.map │ │ ├── detail │ │ │ ├── detail.js.map │ │ │ └── orderDetail.js.map │ │ ├── directSales │ │ │ └── index.js.map │ │ ├── forget │ │ │ ├── check.js.map │ │ │ ├── index.js.map │ │ │ └── setPassword.js.map │ │ ├── index │ │ │ └── index.js.map │ │ ├── issue │ │ │ └── issue.js.map │ │ ├── login │ │ │ └── login.js.map │ │ ├── myOrder │ │ │ └── myOrder.js.map │ │ ├── myfabu │ │ │ └── myfabu.js.map │ │ ├── mypaper │ │ │ ├── mypaper.js.map │ │ │ └── mypapered.js.map │ │ ├── mystatic │ │ │ ├── handle01.js.map │ │ │ └── handle02.js.map │ │ ├── profile │ │ │ └── profile.js.map │ │ ├── resgist │ │ │ └── regist.js.map │ │ ├── sell │ │ │ ├── search.js.map │ │ │ └── sell.js.map │ │ ├── shengcun │ │ │ └── shengcun.js.map │ │ ├── solded │ │ │ └── index.js.map │ │ ├── upload │ │ │ └── uppload.js.map │ │ ├── warehouse │ │ │ └── index.js.map │ │ └── zhinan │ │ │ └── zhinan.js.map │ │ └── uni_modules │ │ ├── cola-u-chat │ │ └── components │ │ │ └── cola-u-chat │ │ │ └── cola-u-chat.js.map │ │ ├── helang-waterfall │ │ └── components │ │ │ └── helang-waterfall │ │ │ └── helang-waterfall.js.map │ │ ├── uni-badge │ │ └── components │ │ │ └── uni-badge │ │ │ └── uni-badge.js.map │ │ ├── uni-icons │ │ └── components │ │ │ └── uni-icons │ │ │ └── uni-icons.js.map │ │ ├── uni-list │ │ └── components │ │ │ ├── uni-list-item │ │ │ └── uni-list-item.js.map │ │ │ └── uni-list │ │ │ └── uni-list.js.map │ │ ├── uni-load-more │ │ └── components │ │ │ └── uni-load-more │ │ │ └── uni-load-more.js.map │ │ └── uview-ui │ │ └── components │ │ ├── u--input │ │ └── u--input.js.map │ │ ├── u--text │ │ └── u--text.js.map │ │ ├── u-avatar │ │ └── u-avatar.js.map │ │ ├── u-button │ │ └── u-button.js.map │ │ ├── u-car-keyboard │ │ └── u-car-keyboard.js.map │ │ ├── u-cell │ │ └── u-cell.js.map │ │ ├── u-code-input │ │ └── u-code-input.js.map │ │ ├── u-code │ │ └── u-code.js.map │ │ ├── u-collapse-item │ │ └── u-collapse-item.js.map │ │ ├── u-collapse │ │ └── u-collapse.js.map │ │ ├── u-column-notice │ │ └── u-column-notice.js.map │ │ ├── u-gap │ │ └── u-gap.js.map │ │ ├── u-icon │ │ └── u-icon.js.map │ │ ├── u-input │ │ └── u-input.js.map │ │ ├── u-keyboard │ │ └── u-keyboard.js.map │ │ ├── u-line │ │ └── u-line.js.map │ │ ├── u-link │ │ └── u-link.js.map │ │ ├── u-list-item │ │ └── u-list-item.js.map │ │ ├── u-list │ │ └── u-list.js.map │ │ ├── u-loading-icon │ │ └── u-loading-icon.js.map │ │ ├── u-modal │ │ └── u-modal.js.map │ │ ├── u-navbar │ │ └── u-navbar.js.map │ │ ├── u-notice-bar │ │ └── u-notice-bar.js.map │ │ ├── u-number-keyboard │ │ └── u-number-keyboard.js.map │ │ ├── u-overlay │ │ └── u-overlay.js.map │ │ ├── u-popup │ │ └── u-popup.js.map │ │ ├── u-row-notice │ │ └── u-row-notice.js.map │ │ ├── u-safe-bottom │ │ └── u-safe-bottom.js.map │ │ ├── u-search │ │ └── u-search.js.map │ │ ├── u-status-bar │ │ └── u-status-bar.js.map │ │ ├── u-subsection │ │ └── u-subsection.js.map │ │ ├── u-swipe-action-item │ │ └── u-swipe-action-item.js.map │ │ ├── u-swipe-action │ │ └── u-swipe-action.js.map │ │ ├── u-tag │ │ └── u-tag.js.map │ │ ├── u-text │ │ └── u-text.js.map │ │ ├── u-toast │ │ └── u-toast.js.map │ │ ├── u-transition │ │ └── u-transition.js.map │ │ └── u-upload │ │ └── u-upload.js.map │ ├── app-plus │ ├── __uniappchooselocation.js │ ├── __uniapperror.png │ ├── __uniappes6.js │ ├── __uniappopenlocation.js │ ├── __uniapppicker.js │ ├── __uniappquill.js │ ├── __uniappquillimageresize.js │ ├── __uniappscan.js │ ├── __uniappsuccess.png │ ├── __uniappview.html │ ├── app-config-service.js │ ├── app-config.js │ ├── app-service.js │ ├── app-view.js │ ├── manifest.json │ ├── pages │ │ └── index │ │ │ └── banner.jpg │ ├── static │ │ ├── book.png │ │ ├── bookSelected.png │ │ ├── cart.png │ │ ├── cartSelected.png │ │ ├── cate │ │ │ ├── Category.png │ │ │ ├── cloud upload-fill.png │ │ │ ├── fabu.png │ │ │ ├── guanyuwomen.png │ │ │ ├── jingxuan.png │ │ │ ├── meishi.png │ │ │ ├── myfabuNew.png │ │ │ ├── renzhitiao.png │ │ │ ├── shengcun.png │ │ │ ├── shoucang.png │ │ │ ├── university.jpeg │ │ │ ├── xuqiuNew.png │ │ │ ├── zhinan.png │ │ │ └── zhiying.png │ │ ├── chat.png │ │ ├── collect.png │ │ ├── collectSelcted.png │ │ ├── del.png │ │ ├── font │ │ │ ├── iconfont.css │ │ │ ├── iconfont.ttf │ │ │ ├── iconfont.woff │ │ │ └── iconfont.woff2 │ │ ├── friend.png │ │ ├── icon │ │ │ ├── cart.png │ │ │ ├── cartSelecter.png │ │ │ ├── jia.png │ │ │ ├── jian.png │ │ │ ├── mail.png │ │ │ └── orderDetail.png │ │ ├── img │ │ │ ├── customerHL.png │ │ │ └── homeHL.png │ │ ├── imgs │ │ │ ├── close_icon.png │ │ │ ├── code_icon.png │ │ │ ├── fire_gray.png │ │ │ ├── fire_green.png │ │ │ ├── fire_white.png │ │ │ ├── mobile_icon.png │ │ │ ├── moom_gray.png │ │ │ ├── moom_green.png │ │ │ ├── moom_white.png │ │ │ └── pwd_icon.png │ │ ├── index.png │ │ ├── indexSelected.png │ │ ├── logo.png │ │ ├── lunbo │ │ │ ├── 01.jpg │ │ │ ├── 02.jpg │ │ │ ├── 03.jpg │ │ │ └── 04.jpg │ │ ├── my.png │ │ ├── mySelected.png │ │ ├── nofound.jpg │ │ ├── profile.png │ │ ├── profile │ │ │ ├── bysell.png │ │ │ ├── guanyuwom.png │ │ │ ├── mycollect.png │ │ │ ├── upload.png │ │ │ ├── yijianfankui.png │ │ │ ├── yishouchu.png │ │ │ ├── yixiajia.png │ │ │ └── zhitiao.png │ │ ├── shop.png │ │ ├── shouhuo.png │ │ ├── tfgg-verify │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ └── icon-button-normal.png │ │ ├── upload.png │ │ └── uploaded.png │ ├── uni_modules │ │ ├── helang-waterfall │ │ │ └── static │ │ │ │ └── waterfall │ │ │ │ ├── 0.jpg │ │ │ │ ├── 1.jpg │ │ │ │ └── 2.jpg │ │ └── uni-icons │ │ │ └── components │ │ │ └── uni-icons │ │ │ └── uni.ttf │ ├── view.css │ └── view.umd.min.js │ └── mp-weixin │ ├── app.js │ ├── app.json │ ├── app.wxss │ ├── common │ ├── main.js │ ├── main.wxss │ ├── runtime.js │ └── vendor.js │ ├── components │ ├── bookOrderComplete.js │ ├── bookOrderComplete.json │ ├── bookOrderComplete.wxml │ ├── bookOrderComplete.wxss │ ├── bookOrderComponents.js │ ├── bookOrderComponents.json │ ├── bookOrderComponents.wxml │ ├── bookOrderComponents.wxss │ ├── bookOrderFahuo.js │ ├── bookOrderFahuo.json │ ├── bookOrderFahuo.wxml │ ├── bookOrderFahuo.wxss │ ├── bookOrderPopup.js │ ├── bookOrderPopup.json │ ├── bookOrderPopup.wxml │ ├── bookOrderPopup.wxss │ ├── book_list │ │ ├── book_list.js │ │ ├── book_list.json │ │ ├── book_list.wxml │ │ └── book_list.wxss │ ├── chatinput.js │ ├── chatinput.json │ ├── chatinput.wxml │ ├── chatinput.wxss │ ├── fabuComponent.js │ ├── fabuComponent.json │ ├── fabuComponent.wxml │ ├── fabuComponent.wxss │ ├── messageshow.js │ ├── messageshow.json │ ├── messageshow.wxml │ ├── messageshow.wxss │ ├── navigationBar.js │ ├── navigationBar.json │ ├── navigationBar.wxml │ ├── navigationBar.wxss │ ├── popupComponent.js │ ├── popupComponent.json │ ├── popupComponent.wxml │ ├── popupComponent.wxss │ ├── sellerComplete.js │ ├── sellerComplete.json │ ├── sellerComplete.wxml │ ├── sellerComplete.wxss │ ├── spendMoney │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ ├── sunui-mverify │ │ ├── sunui-mverify.js │ │ ├── sunui-mverify.json │ │ ├── sunui-mverify.wxml │ │ └── sunui-mverify.wxss │ ├── userCollect.js │ ├── userCollect.json │ ├── userCollect.wxml │ └── userCollect.wxss │ ├── node-modules │ └── @dcloudio │ │ └── uni-cli-shared │ │ └── components │ │ ├── unicloud-db.js │ │ ├── unicloud-db.json │ │ └── unicloud-db.wxml │ ├── pages │ ├── JerryList │ │ ├── JerryList-unicloud-db-default.js │ │ ├── JerryList-unicloud-db-default.json │ │ ├── JerryList-unicloud-db-default.wxml │ │ ├── JerryList-unicloud-db-default.wxss │ │ ├── JerryList.js │ │ ├── JerryList.json │ │ ├── JerryList.wxml │ │ └── JerryList.wxss │ ├── aboutwe │ │ ├── aboutwe.js │ │ ├── aboutwe.json │ │ ├── aboutwe.wxml │ │ └── aboutwe.wxss │ ├── cart │ │ ├── cart.js │ │ ├── cart.json │ │ ├── cart.wxml │ │ └── cart.wxss │ ├── category │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ ├── center │ │ ├── center.js │ │ ├── center.json │ │ ├── center.wxml │ │ ├── center.wxss │ │ ├── centerDetail.js │ │ ├── centerDetail.json │ │ ├── centerDetail.wxml │ │ └── centerDetail.wxss │ ├── chat │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ ├── chatroom │ │ ├── chatUser.js │ │ ├── chatUser.json │ │ ├── chatUser.wxml │ │ ├── chatUser.wxss │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ ├── chi │ │ ├── chi.js │ │ ├── chi.json │ │ └── chi.wxml │ ├── collect │ │ ├── collect.js │ │ ├── collect.json │ │ ├── collect.wxml │ │ └── collect.wxss │ ├── comments │ │ ├── index.js │ │ ├── index.json │ │ └── index.wxml │ ├── detail │ │ ├── detail.js │ │ ├── detail.json │ │ ├── detail.wxml │ │ ├── detail.wxss │ │ ├── orderDetail.js │ │ ├── orderDetail.json │ │ ├── orderDetail.wxml │ │ └── orderDetail.wxss │ ├── directSales │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ ├── forget │ │ ├── check.js │ │ ├── check.json │ │ ├── check.wxml │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxss │ │ ├── setPassword.js │ │ ├── setPassword.json │ │ ├── setPassword.wxml │ │ └── setPassword.wxss │ ├── index │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ ├── issue │ │ ├── issue.js │ │ ├── issue.json │ │ └── issue.wxml │ ├── login │ │ ├── login.js │ │ ├── login.json │ │ ├── login.wxml │ │ └── login.wxss │ ├── myOrder │ │ ├── myOrder.js │ │ ├── myOrder.json │ │ ├── myOrder.wxml │ │ └── myOrder.wxss │ ├── myfabu │ │ ├── myfabu.js │ │ ├── myfabu.json │ │ ├── myfabu.wxml │ │ └── myfabu.wxss │ ├── mypaper │ │ ├── mypaper.js │ │ ├── mypaper.json │ │ ├── mypaper.wxml │ │ ├── mypaper.wxss │ │ ├── mypapered.js │ │ ├── mypapered.json │ │ ├── mypapered.wxml │ │ └── mypapered.wxss │ ├── profile │ │ ├── profile.js │ │ ├── profile.json │ │ ├── profile.wxml │ │ └── profile.wxss │ ├── resgist │ │ ├── regist.js │ │ ├── regist.json │ │ ├── regist.wxml │ │ └── regist.wxss │ ├── sell │ │ ├── search.js │ │ ├── search.json │ │ ├── search.wxml │ │ ├── sell.js │ │ ├── sell.json │ │ ├── sell.wxml │ │ └── sell.wxss │ ├── shengcun │ │ ├── shengcun.js │ │ ├── shengcun.json │ │ └── shengcun.wxml │ ├── solded │ │ ├── index.js │ │ ├── index.json │ │ └── index.wxml │ ├── upload │ │ ├── uppload.js │ │ ├── uppload.json │ │ ├── uppload.wxml │ │ └── uppload.wxss │ ├── warehouse │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ └── zhinan │ │ ├── zhinan.js │ │ ├── zhinan.json │ │ └── zhinan.wxml │ ├── project.config.json │ ├── sitemap.json │ ├── static │ ├── book.png │ ├── bookSelected.png │ ├── cart.png │ ├── cartSelected.png │ ├── cate │ │ ├── Category.png │ │ ├── cloud upload-fill.png │ │ ├── fabu.png │ │ ├── guanyuwomen.png │ │ ├── jingxuan.png │ │ ├── meishi.png │ │ ├── myfabuNew.png │ │ ├── renzhitiao.png │ │ ├── shengcun.png │ │ ├── shoucang.png │ │ ├── university.jpeg │ │ ├── xuqiuNew.png │ │ ├── zhinan.png │ │ └── zhiying.png │ ├── chat.png │ ├── collect.png │ ├── collectSelcted.png │ ├── del.png │ ├── font │ │ ├── iconfont.css │ │ ├── iconfont.ttf │ │ ├── iconfont.woff │ │ └── iconfont.woff2 │ ├── friend.png │ ├── icon │ │ ├── cart.png │ │ ├── cartSelecter.png │ │ ├── jia.png │ │ ├── jian.png │ │ ├── mail.png │ │ └── orderDetail.png │ ├── img │ │ ├── customerHL.png │ │ └── homeHL.png │ ├── imgs │ │ ├── close_icon.png │ │ ├── code_icon.png │ │ ├── fire_gray.png │ │ ├── fire_green.png │ │ ├── fire_white.png │ │ ├── mobile_icon.png │ │ ├── moom_gray.png │ │ ├── moom_green.png │ │ ├── moom_white.png │ │ └── pwd_icon.png │ ├── index.png │ ├── indexSelected.png │ ├── logo.png │ ├── lunbo │ │ ├── 01.jpg │ │ ├── 02.jpg │ │ ├── 03.jpg │ │ └── 04.jpg │ ├── my.png │ ├── mySelected.png │ ├── nofound.jpg │ ├── profile.png │ ├── profile │ │ ├── bysell.png │ │ ├── guanyuwom.png │ │ ├── mycollect.png │ │ ├── upload.png │ │ ├── yijianfankui.png │ │ ├── yishouchu.png │ │ ├── yixiajia.png │ │ └── zhitiao.png │ ├── shop.png │ ├── shouhuo.png │ ├── upload.png │ └── uploaded.png │ └── uni_modules │ ├── helang-waterfall │ ├── components │ │ └── helang-waterfall │ │ │ ├── helang-waterfall.js │ │ │ ├── helang-waterfall.json │ │ │ ├── helang-waterfall.wxml │ │ │ └── helang-waterfall.wxss │ └── static │ │ └── waterfall │ │ ├── 0.jpg │ │ ├── 1.jpg │ │ └── 2.jpg │ ├── uni-badge │ └── components │ │ └── uni-badge │ │ ├── uni-badge.js │ │ ├── uni-badge.json │ │ ├── uni-badge.wxml │ │ └── uni-badge.wxss │ ├── uni-icons │ └── components │ │ └── uni-icons │ │ ├── uni-icons.js │ │ ├── uni-icons.json │ │ ├── uni-icons.wxml │ │ └── uni-icons.wxss │ ├── uni-list │ └── components │ │ ├── uni-list-item │ │ ├── uni-list-item.js │ │ ├── uni-list-item.json │ │ ├── uni-list-item.wxml │ │ └── uni-list-item.wxss │ │ └── uni-list │ │ ├── uni-list.js │ │ ├── uni-list.json │ │ ├── uni-list.wxml │ │ └── uni-list.wxss │ ├── uni-load-more │ └── components │ │ └── uni-load-more │ │ ├── uni-load-more.js │ │ ├── uni-load-more.json │ │ ├── uni-load-more.wxml │ │ └── uni-load-more.wxss │ └── uview-ui │ └── components │ ├── u--input │ ├── u--input.js │ ├── u--input.json │ └── u--input.wxml │ ├── u--text │ ├── u--text.js │ ├── u--text.json │ └── u--text.wxml │ ├── 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-car-keyboard │ ├── u-car-keyboard.js │ ├── u-car-keyboard.json │ ├── u-car-keyboard.wxml │ └── u-car-keyboard.wxss │ ├── u-cell │ ├── u-cell.js │ ├── u-cell.json │ ├── u-cell.wxml │ └── u-cell.wxss │ ├── u-code-input │ ├── u-code-input.js │ ├── u-code-input.json │ ├── u-code-input.wxml │ └── u-code-input.wxss │ ├── u-code │ ├── u-code.js │ ├── u-code.json │ ├── u-code.wxml │ └── u-code.wxss │ ├── u-collapse-item │ ├── u-collapse-item.js │ ├── u-collapse-item.json │ ├── u-collapse-item.wxml │ └── u-collapse-item.wxss │ ├── u-collapse │ ├── u-collapse.js │ ├── u-collapse.json │ ├── u-collapse.wxml │ └── u-collapse.wxss │ ├── u-column-notice │ ├── u-column-notice.js │ ├── u-column-notice.json │ ├── u-column-notice.wxml │ └── u-column-notice.wxss │ ├── u-gap │ ├── u-gap.js │ ├── u-gap.json │ ├── u-gap.wxml │ └── u-gap.wxss │ ├── u-icon │ ├── u-icon.js │ ├── u-icon.json │ ├── u-icon.wxml │ └── u-icon.wxss │ ├── u-input │ ├── u-input.js │ ├── u-input.json │ ├── u-input.wxml │ └── u-input.wxss │ ├── u-keyboard │ ├── u-keyboard.js │ ├── u-keyboard.json │ ├── u-keyboard.wxml │ └── u-keyboard.wxss │ ├── u-line │ ├── u-line.js │ ├── u-line.json │ ├── u-line.wxml │ └── u-line.wxss │ ├── u-link │ ├── u-link.js │ ├── u-link.json │ ├── u-link.wxml │ └── u-link.wxss │ ├── u-list-item │ ├── u-list-item.js │ ├── u-list-item.json │ ├── u-list-item.wxml │ └── u-list-item.wxss │ ├── u-list │ ├── u-list.js │ ├── u-list.json │ ├── u-list.wxml │ └── u-list.wxss │ ├── u-loading-icon │ ├── u-loading-icon.js │ ├── u-loading-icon.json │ ├── u-loading-icon.wxml │ └── u-loading-icon.wxss │ ├── u-modal │ ├── u-modal.js │ ├── u-modal.json │ ├── u-modal.wxml │ └── u-modal.wxss │ ├── u-navbar │ ├── u-navbar.js │ ├── u-navbar.json │ ├── u-navbar.wxml │ └── u-navbar.wxss │ ├── u-notice-bar │ ├── u-notice-bar.js │ ├── u-notice-bar.json │ ├── u-notice-bar.wxml │ └── u-notice-bar.wxss │ ├── u-number-keyboard │ ├── u-number-keyboard.js │ ├── u-number-keyboard.json │ ├── u-number-keyboard.wxml │ └── u-number-keyboard.wxss │ ├── u-overlay │ ├── u-overlay.js │ ├── u-overlay.json │ ├── u-overlay.wxml │ └── u-overlay.wxss │ ├── u-popup │ ├── u-popup.js │ ├── u-popup.json │ ├── u-popup.wxml │ └── u-popup.wxss │ ├── u-row-notice │ ├── u-row-notice.js │ ├── u-row-notice.json │ ├── u-row-notice.wxml │ └── u-row-notice.wxss │ ├── u-safe-bottom │ ├── u-safe-bottom.js │ ├── u-safe-bottom.json │ ├── u-safe-bottom.wxml │ └── u-safe-bottom.wxss │ ├── u-search │ ├── u-search.js │ ├── u-search.json │ ├── u-search.wxml │ └── u-search.wxss │ ├── u-status-bar │ ├── u-status-bar.js │ ├── u-status-bar.json │ ├── u-status-bar.wxml │ └── u-status-bar.wxss │ ├── u-subsection │ ├── u-subsection.js │ ├── u-subsection.json │ ├── u-subsection.wxml │ └── u-subsection.wxss │ ├── u-swipe-action-item │ ├── index.wxs │ ├── u-swipe-action-item.js │ ├── u-swipe-action-item.json │ ├── u-swipe-action-item.wxml │ └── u-swipe-action-item.wxss │ ├── u-swipe-action │ ├── u-swipe-action.js │ ├── u-swipe-action.json │ └── u-swipe-action.wxml │ ├── u-tag │ ├── u-tag.js │ ├── u-tag.json │ ├── u-tag.wxml │ └── u-tag.wxss │ ├── u-text │ ├── u-text.js │ ├── u-text.json │ ├── u-text.wxml │ └── u-text.wxss │ ├── u-toast │ ├── u-toast.js │ ├── u-toast.json │ ├── u-toast.wxml │ └── u-toast.wxss │ ├── u-transition │ ├── u-transition.js │ ├── u-transition.json │ ├── u-transition.wxml │ └── u-transition.wxss │ └── u-upload │ ├── u-upload.js │ ├── u-upload.json │ ├── u-upload.wxml │ └── u-upload.wxss └── util ├── Intercepter.js ├── WebIM.js ├── WebIMConfig.js ├── api.js └── interface.js /.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 | "app-plus" : 6 | { 7 | "launchtype" : "local" 8 | }, 9 | "default" : 10 | { 11 | "launchtype" : "local" 12 | }, 13 | "h5" : 14 | { 15 | "launchtype" : "local" 16 | }, 17 | "mp-weixin" : 18 | { 19 | "launchtype" : "local" 20 | }, 21 | "type" : "uniCloud" 22 | } 23 | ] 24 | } 25 | -------------------------------------------------------------------------------- /components/RightMessage.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 17 | 18 | 21 | -------------------------------------------------------------------------------- /components/commentDemand.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 17 | 18 | 21 | -------------------------------------------------------------------------------- /components/leftMessage.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 17 | 18 | 21 | -------------------------------------------------------------------------------- /components/uni-section/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "99999", 3 | "name": "Section", 4 | "desc": "标题栏", 5 | "edition": "0.0.1", 6 | "url": "section", 7 | "type": "布局组件", 8 | "path": "https://ext.dcloud.net.cn/plugin?id=", 9 | "hidden": true, 10 | "test":true, 11 | "update_log": [] 12 | } 13 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "easemob-websdk": "^4.0.3" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /pages/blank/blank.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 26 | 27 | 29 | -------------------------------------------------------------------------------- /pages/chi/chi.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 19 | 20 | 22 | -------------------------------------------------------------------------------- /pages/forget/check.vue: -------------------------------------------------------------------------------- 1 | 7 | 8 | 30 | 31 | 33 | -------------------------------------------------------------------------------- /pages/index/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/pages/index/banner.jpg -------------------------------------------------------------------------------- /pages/issue/issue.vue: -------------------------------------------------------------------------------- 1 | 3 | 4 | 6 | 7 | 9 | -------------------------------------------------------------------------------- /pages/shengcun/shengcun.vue: -------------------------------------------------------------------------------- 1 | 5 | 14 | -------------------------------------------------------------------------------- /pages/shouchu/shouchu.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 30 | 31 | 33 | -------------------------------------------------------------------------------- /static/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/book.png -------------------------------------------------------------------------------- /static/bookSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/bookSelected.png -------------------------------------------------------------------------------- /static/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/cart.png -------------------------------------------------------------------------------- /static/cartSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/cartSelected.png -------------------------------------------------------------------------------- /static/cate/Category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/cate/Category.png -------------------------------------------------------------------------------- /static/cate/cloud upload-fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/cate/cloud upload-fill.png -------------------------------------------------------------------------------- /static/cate/fabu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/cate/fabu.png -------------------------------------------------------------------------------- /static/cate/guanyuwomen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/cate/guanyuwomen.png -------------------------------------------------------------------------------- /static/cate/jingxuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/cate/jingxuan.png -------------------------------------------------------------------------------- /static/cate/meishi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/cate/meishi.png -------------------------------------------------------------------------------- /static/cate/myfabuNew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/cate/myfabuNew.png -------------------------------------------------------------------------------- /static/cate/renzhitiao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/cate/renzhitiao.png -------------------------------------------------------------------------------- /static/cate/shengcun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/cate/shengcun.png -------------------------------------------------------------------------------- /static/cate/shoucang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/cate/shoucang.png -------------------------------------------------------------------------------- /static/cate/university.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/cate/university.jpeg -------------------------------------------------------------------------------- /static/cate/xuqiuNew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/cate/xuqiuNew.png -------------------------------------------------------------------------------- /static/cate/zhinan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/cate/zhinan.png -------------------------------------------------------------------------------- /static/cate/zhiying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/cate/zhiying.png -------------------------------------------------------------------------------- /static/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/chat.png -------------------------------------------------------------------------------- /static/collect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/collect.png -------------------------------------------------------------------------------- /static/collectSelcted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/collectSelcted.png -------------------------------------------------------------------------------- /static/del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/del.png -------------------------------------------------------------------------------- /static/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/font/iconfont.ttf -------------------------------------------------------------------------------- /static/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/font/iconfont.woff -------------------------------------------------------------------------------- /static/font/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/font/iconfont.woff2 -------------------------------------------------------------------------------- /static/friend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/friend.png -------------------------------------------------------------------------------- /static/icon/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/icon/cart.png -------------------------------------------------------------------------------- /static/icon/cartSelecter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/icon/cartSelecter.png -------------------------------------------------------------------------------- /static/icon/jia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/icon/jia.png -------------------------------------------------------------------------------- /static/icon/jian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/icon/jian.png -------------------------------------------------------------------------------- /static/icon/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/icon/mail.png -------------------------------------------------------------------------------- /static/icon/orderDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/icon/orderDetail.png -------------------------------------------------------------------------------- /static/img/customerHL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/img/customerHL.png -------------------------------------------------------------------------------- /static/img/homeHL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/img/homeHL.png -------------------------------------------------------------------------------- /static/imgs/close_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/imgs/close_icon.png -------------------------------------------------------------------------------- /static/imgs/code_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/imgs/code_icon.png -------------------------------------------------------------------------------- /static/imgs/fire_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/imgs/fire_gray.png -------------------------------------------------------------------------------- /static/imgs/fire_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/imgs/fire_green.png -------------------------------------------------------------------------------- /static/imgs/fire_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/imgs/fire_white.png -------------------------------------------------------------------------------- /static/imgs/mobile_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/imgs/mobile_icon.png -------------------------------------------------------------------------------- /static/imgs/moom_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/imgs/moom_gray.png -------------------------------------------------------------------------------- /static/imgs/moom_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/imgs/moom_green.png -------------------------------------------------------------------------------- /static/imgs/moom_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/imgs/moom_white.png -------------------------------------------------------------------------------- /static/imgs/pwd_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/imgs/pwd_icon.png -------------------------------------------------------------------------------- /static/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/index.png -------------------------------------------------------------------------------- /static/indexSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/indexSelected.png -------------------------------------------------------------------------------- /static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/logo.png -------------------------------------------------------------------------------- /static/lunbo/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/lunbo/01.jpg -------------------------------------------------------------------------------- /static/lunbo/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/lunbo/02.jpg -------------------------------------------------------------------------------- /static/lunbo/03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/lunbo/03.jpg -------------------------------------------------------------------------------- /static/lunbo/04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/lunbo/04.jpg -------------------------------------------------------------------------------- /static/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/my.png -------------------------------------------------------------------------------- /static/mySelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/mySelected.png -------------------------------------------------------------------------------- /static/nofound.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/nofound.jpg -------------------------------------------------------------------------------- /static/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/profile.png -------------------------------------------------------------------------------- /static/profile/bysell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/profile/bysell.png -------------------------------------------------------------------------------- /static/profile/guanyuwom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/profile/guanyuwom.png -------------------------------------------------------------------------------- /static/profile/mycollect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/profile/mycollect.png -------------------------------------------------------------------------------- /static/profile/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/profile/upload.png -------------------------------------------------------------------------------- /static/profile/yijianfankui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/profile/yijianfankui.png -------------------------------------------------------------------------------- /static/profile/yishouchu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/profile/yishouchu.png -------------------------------------------------------------------------------- /static/profile/yixiajia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/profile/yixiajia.png -------------------------------------------------------------------------------- /static/profile/zhitiao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/profile/zhitiao.png -------------------------------------------------------------------------------- /static/shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/shop.png -------------------------------------------------------------------------------- /static/shouhuo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/shouhuo.png -------------------------------------------------------------------------------- /static/tfgg-verify/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/tfgg-verify/1.jpg -------------------------------------------------------------------------------- /static/tfgg-verify/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/tfgg-verify/2.jpg -------------------------------------------------------------------------------- /static/tfgg-verify/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/tfgg-verify/3.jpg -------------------------------------------------------------------------------- /static/tfgg-verify/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/tfgg-verify/4.jpg -------------------------------------------------------------------------------- /static/tfgg-verify/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/tfgg-verify/5.jpg -------------------------------------------------------------------------------- /static/tfgg-verify/icon-button-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/tfgg-verify/icon-button-normal.png -------------------------------------------------------------------------------- /static/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/upload.png -------------------------------------------------------------------------------- /static/uploaded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/static/uploaded.png -------------------------------------------------------------------------------- /uni_modules/helang-waterfall/changelog.md: -------------------------------------------------------------------------------- 1 | ## 1.0.1(2021-06-08) 2 | 修改插入方向计算方式 3 | -------------------------------------------------------------------------------- /uni_modules/helang-waterfall/readme.md: -------------------------------------------------------------------------------- 1 | # helang-waterfall -------------------------------------------------------------------------------- /uni_modules/helang-waterfall/static/waterfall/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/uni_modules/helang-waterfall/static/waterfall/0.jpg -------------------------------------------------------------------------------- /uni_modules/helang-waterfall/static/waterfall/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/uni_modules/helang-waterfall/static/waterfall/1.jpg -------------------------------------------------------------------------------- /uni_modules/helang-waterfall/static/waterfall/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/uni_modules/helang-waterfall/static/waterfall/2.jpg -------------------------------------------------------------------------------- /uni_modules/uni-badge/changelog.md: -------------------------------------------------------------------------------- 1 | ## 1.1.1(2021-05-12) 2 | - 新增 组件示例地址 3 | ## 1.1.0(2021-05-12) 4 | - 新增 uni-badge 的 absolute 属性,支持定位 5 | - 新增 uni-badge 的 offset 属性,支持定位偏移 6 | - 新增 uni-badge 的 is-dot 属性,支持仅显示有一个小点 7 | - 新增 uni-badge 的 max-num 属性,支持自定义封顶的数字值,超过 99 显示99+ 8 | - 优化 uni-badge 属性 custom-style, 支持以对象形式自定义样式 9 | ## 1.0.7(2021-05-07) 10 | - 修复 uni-badge 在 App 端,数字小于10时不是圆形的bug 11 | - 修复 uni-badge 在父元素不是 flex 布局时,宽度缩小的bug 12 | - 新增 uni-badge 属性 custom-style, 支持自定义样式 13 | ## 1.0.6(2021-02-04) 14 | - 调整为uni_modules目录规范 15 | -------------------------------------------------------------------------------- /uni_modules/uni-config-center/changelog.md: -------------------------------------------------------------------------------- 1 | ## 0.0.2(2021-04-16) 2 | - 修改插件package信息 3 | ## 0.0.1(2021-03-15) 4 | - 初始化项目 5 | -------------------------------------------------------------------------------- /uni_modules/uni-config-center/uniCloud/cloudfunctions/common/uni-config-center/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "uni-config-center", 3 | "version": "0.0.2", 4 | "description": "配置中心", 5 | "main": "index.js", 6 | "keywords": [], 7 | "author": "DCloud", 8 | "license": "Apache-2.0" 9 | } -------------------------------------------------------------------------------- /uni_modules/uni-icons/changelog.md: -------------------------------------------------------------------------------- 1 | ## 1.1.5(2021-05-12) 2 | - 新增 组件示例地址 3 | ## 1.1.4(2021-02-05) 4 | - 调整为uni_modules目录规范 5 | -------------------------------------------------------------------------------- /uni_modules/uni-icons/components/uni-icons/uni.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/uni_modules/uni-icons/components/uni-icons/uni.ttf -------------------------------------------------------------------------------- /uni_modules/uni-list/changelog.md: -------------------------------------------------------------------------------- 1 | ## 1.0.17(2021-05-12) 2 | - 新增 组件示例地址 3 | ## 1.0.16(2021-02-05) 4 | - 优化 组件引用关系,通过uni_modules引用组件 5 | ## 1.0.15(2021-02-05) 6 | - 调整为uni_modules目录规范 7 | - 修复 uni-list-chat 角标显示不正常的问题 8 | -------------------------------------------------------------------------------- /uni_modules/uni-load-more/changelog.md: -------------------------------------------------------------------------------- 1 | ## 1.1.8(2021-05-12) 2 | - 新增 组件示例地址 3 | ## 1.1.7(2021-03-30) 4 | - 修复 uni-load-more 在首页使用时,h5 平台报 'uni is not defined' 的 bug 5 | ## 1.1.6(2021-02-05) 6 | - 调整为uni_modules目录规范 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-dropdown/u-dropdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/uni_modules/uview-ui/components/u-dropdown/u-dropdown.vue -------------------------------------------------------------------------------- /uni_modules/uview-ui/components/u-grid-item/props.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | // 宫格的name 4 | name: { 5 | type: [String, Number, null], 6 | default: uni.$u.props.gridItem.name 7 | }, 8 | // 背景颜色 9 | bgColor: { 10 | type: String, 11 | default: uni.$u.props.gridItem.bgColor 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/components/u-grid/props.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | // 分成几列 4 | col: { 5 | type: [String, Number], 6 | default: uni.$u.props.grid.col 7 | }, 8 | // 是否显示边框 9 | border: { 10 | type: Boolean, 11 | default: uni.$u.props.grid.border 12 | }, 13 | // 宫格对齐方式,表现为数量少的时候,靠左,居中,还是靠右 14 | align: { 15 | type: String, 16 | default: uni.$u.props.grid.align 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/components/u-index-item/props.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/components/u-list-item/props.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | // 用于滚动到指定item 4 | anchor: { 5 | type: [String, Number], 6 | default: uni.$u.props.listItem.anchor 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/components/u-no-network/props.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | // 页面文字提示 4 | tips: { 5 | type: String, 6 | default: uni.$u.props.noNetwork.tips 7 | }, 8 | // 一个z-index值,用于设置没有网络这个组件的层次,因为页面可能会有其他定位的元素层级过高,导致此组件被覆盖 9 | zIndex: { 10 | type: [String, Number], 11 | default: uni.$u.props.noNetwork.zIndex 12 | }, 13 | // image 没有网络的图片提示 14 | image: { 15 | type: String, 16 | default: uni.$u.props.noNetwork.image 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/components/u-number-keyboard/props.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | // 键盘的类型,number-数字键盘,card-身份证键盘 4 | mode: { 5 | type: String, 6 | default: uni.$u.props.numberKeyboard.value 7 | }, 8 | // 是否显示键盘的"."符号 9 | dotDisabled: { 10 | type: Boolean, 11 | default: uni.$u.props.numberKeyboard.dotDisabled 12 | }, 13 | // 是否打乱键盘按键的顺序 14 | random: { 15 | type: Boolean, 16 | default: uni.$u.props.numberKeyboard.random 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/components/u-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/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/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-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/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/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/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/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/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/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/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/indexAnchor.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:13:15 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/indexAnchor.js 9 | */ 10 | export default { 11 | // indexAnchor 组件 12 | indexAnchor: { 13 | text: '', 14 | color: '#606266', 15 | size: 14, 16 | bgColor: '#dedede', 17 | height: 32 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/indexList.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:13:35 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/indexList.js 9 | */ 10 | export default { 11 | // indexList 组件 12 | indexList: { 13 | inactiveColor: '#606266', 14 | activeColor: '#5677fc', 15 | indexList: () => [], 16 | sticky: true, 17 | customNavHeight: 0 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/line.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:04:49 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/line.js 9 | */ 10 | export default { 11 | // line组件 12 | line: { 13 | color: '#d6d7d9', 14 | length: '100%', 15 | direction: 'row', 16 | hairline: true, 17 | margin: 0, 18 | dashed: false 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/lineProgress.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:14:11 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/lineProgress.js 9 | */ 10 | export default { 11 | // lineProgress 组件 12 | lineProgress: { 13 | activeColor: '#19be6b', 14 | inactiveColor: '#ececec', 15 | percentage: 0, 16 | showText: true, 17 | height: 12 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/link.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author : LQ 3 | * @Description : 4 | * @version : 1.0 5 | * @Date : 2021-08-20 16:44:21 6 | * @LastAuthor : LQ 7 | * @lastTime : 2021-08-20 17:45:36 8 | * @FilePath : /u-view2.0/uview-ui/libs/config/props/link.js 9 | */ 10 | import config from '../config' 11 | 12 | const { 13 | color 14 | } = config 15 | export default { 16 | // link超链接组件props参数 17 | link: { 18 | color: color['u-primary'], 19 | fontSize: 15, 20 | underLine: false, 21 | href: '', 22 | mpTips: '链接已复制,请在浏览器打开', 23 | lineColor: '', 24 | text: '' 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/config/props/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/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/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/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/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/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/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/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/uni_modules/uview-ui/libs/css/mp.scss -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/css/nvue.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/uni_modules/uview-ui/libs/css/nvue.scss -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/css/vue.scss: -------------------------------------------------------------------------------- 1 | // 历遍生成4个方向的底部安全区 2 | @each $d in top, right, bottom, left { 3 | .u-safe-area-inset-#{$d} { 4 | padding-#{$d}: 0; 5 | padding-#{$d}: constant(safe-area-inset-#{$d}); 6 | padding-#{$d}: env(safe-area-inset-#{$d}); 7 | } 8 | } 9 | 10 | //提升H5端uni.toast()的层级,避免被uView的modal等遮盖 11 | /* #ifdef H5 */ 12 | uni-toast { 13 | z-index: 10090; 14 | } 15 | uni-toast .uni-toast { 16 | z-index: 10090; 17 | } 18 | /* #endif */ 19 | 20 | // 隐藏scroll-view的滚动条 21 | ::-webkit-scrollbar { 22 | display: none; 23 | width: 0 !important; 24 | height: 0 !important; 25 | -webkit-appearance: none; 26 | background: transparent; 27 | } -------------------------------------------------------------------------------- /uni_modules/uview-ui/libs/luch-request/core/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 | -------------------------------------------------------------------------------- /unpackage/debug/.roid.ins: -------------------------------------------------------------------------------- 1 | installed -------------------------------------------------------------------------------- /unpackage/debug/android_debug.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/debug/android_debug.apk -------------------------------------------------------------------------------- /unpackage/dist/build/.automator/app-plus/.automator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/.automator/app-plus/.automator.json -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/__uniapperror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/__uniapperror.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/__uniappsuccess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/__uniappsuccess.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/pages/index/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/pages/index/banner.jpg -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/book.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/bookSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/bookSelected.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/cart.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/cartSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/cartSelected.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/cate/Category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/cate/Category.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/cate/cloud upload-fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/cate/cloud upload-fill.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/cate/fabu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/cate/fabu.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/cate/guanyuwomen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/cate/guanyuwomen.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/cate/jingxuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/cate/jingxuan.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/cate/meishi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/cate/meishi.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/cate/myfabuNew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/cate/myfabuNew.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/cate/renzhitiao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/cate/renzhitiao.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/cate/shengcun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/cate/shengcun.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/cate/shoucang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/cate/shoucang.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/cate/university.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/cate/university.jpeg -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/cate/xuqiuNew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/cate/xuqiuNew.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/cate/zhinan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/cate/zhinan.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/cate/zhiying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/cate/zhiying.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/chat.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/collect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/collect.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/collectSelcted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/collectSelcted.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/del.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/font/iconfont.ttf -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/font/iconfont.woff -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/font/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/font/iconfont.woff2 -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/friend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/friend.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/icon/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/icon/cart.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/icon/cartSelecter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/icon/cartSelecter.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/icon/jia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/icon/jia.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/icon/jian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/icon/jian.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/icon/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/icon/mail.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/icon/orderDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/icon/orderDetail.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/img/customerHL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/img/customerHL.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/img/homeHL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/img/homeHL.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/imgs/close_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/imgs/close_icon.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/imgs/code_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/imgs/code_icon.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/imgs/fire_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/imgs/fire_gray.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/imgs/fire_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/imgs/fire_green.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/imgs/fire_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/imgs/fire_white.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/imgs/mobile_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/imgs/mobile_icon.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/imgs/moom_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/imgs/moom_gray.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/imgs/moom_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/imgs/moom_green.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/imgs/moom_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/imgs/moom_white.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/imgs/pwd_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/imgs/pwd_icon.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/index.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/indexSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/indexSelected.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/logo.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/lunbo/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/lunbo/01.jpg -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/lunbo/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/lunbo/02.jpg -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/lunbo/03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/lunbo/03.jpg -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/lunbo/04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/lunbo/04.jpg -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/my.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/mySelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/mySelected.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/nofound.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/nofound.jpg -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/profile.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/profile/bysell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/profile/bysell.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/profile/guanyuwom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/profile/guanyuwom.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/profile/mycollect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/profile/mycollect.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/profile/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/profile/upload.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/profile/yijianfankui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/profile/yijianfankui.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/profile/yishouchu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/profile/yishouchu.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/profile/yixiajia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/profile/yixiajia.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/profile/zhitiao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/profile/zhitiao.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/shop.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/shouhuo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/shouhuo.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/tfgg-verify/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/tfgg-verify/1.jpg -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/tfgg-verify/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/tfgg-verify/2.jpg -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/tfgg-verify/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/tfgg-verify/3.jpg -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/tfgg-verify/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/tfgg-verify/4.jpg -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/tfgg-verify/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/tfgg-verify/5.jpg -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/tfgg-verify/icon-button-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/tfgg-verify/icon-button-normal.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/upload.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/uploaded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/static/uploaded.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/uni_modules/helang-waterfall/static/waterfall/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/uni_modules/helang-waterfall/static/waterfall/0.jpg -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/uni_modules/helang-waterfall/static/waterfall/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/uni_modules/helang-waterfall/static/waterfall/1.jpg -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/uni_modules/helang-waterfall/static/waterfall/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/uni_modules/helang-waterfall/static/waterfall/2.jpg -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/uni_modules/uni-icons/components/uni-icons/uni.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/build/app-plus/uni_modules/uni-icons/components/uni-icons/uni.ttf -------------------------------------------------------------------------------- /unpackage/dist/dev/.automator/app-plus/.automator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/.automator/app-plus/.automator.json -------------------------------------------------------------------------------- /unpackage/dist/dev/.automator/mp-weixin/.automator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/.automator/mp-weixin/.automator.json -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/__uniapperror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/__uniapperror.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/__uniappsuccess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/__uniappsuccess.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/pages/index/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/pages/index/banner.jpg -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/book.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/bookSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/bookSelected.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/cart.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/cartSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/cartSelected.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/cate/Category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/cate/Category.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/cate/cloud upload-fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/cate/cloud upload-fill.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/cate/fabu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/cate/fabu.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/cate/guanyuwomen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/cate/guanyuwomen.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/cate/jingxuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/cate/jingxuan.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/cate/meishi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/cate/meishi.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/cate/myfabuNew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/cate/myfabuNew.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/cate/renzhitiao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/cate/renzhitiao.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/cate/shengcun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/cate/shengcun.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/cate/shoucang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/cate/shoucang.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/cate/university.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/cate/university.jpeg -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/cate/xuqiuNew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/cate/xuqiuNew.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/cate/zhinan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/cate/zhinan.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/cate/zhiying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/cate/zhiying.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/chat.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/collect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/collect.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/collectSelcted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/collectSelcted.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/del.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/font/iconfont.ttf -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/font/iconfont.woff -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/font/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/font/iconfont.woff2 -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/friend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/friend.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/icon/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/icon/cart.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/icon/cartSelecter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/icon/cartSelecter.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/icon/jia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/icon/jia.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/icon/jian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/icon/jian.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/icon/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/icon/mail.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/icon/orderDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/icon/orderDetail.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/img/customerHL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/img/customerHL.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/img/homeHL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/img/homeHL.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/imgs/close_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/imgs/close_icon.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/imgs/code_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/imgs/code_icon.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/imgs/fire_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/imgs/fire_gray.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/imgs/fire_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/imgs/fire_green.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/imgs/fire_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/imgs/fire_white.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/imgs/mobile_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/imgs/mobile_icon.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/imgs/moom_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/imgs/moom_gray.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/imgs/moom_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/imgs/moom_green.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/imgs/moom_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/imgs/moom_white.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/imgs/pwd_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/imgs/pwd_icon.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/index.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/indexSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/indexSelected.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/logo.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/lunbo/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/lunbo/01.jpg -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/lunbo/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/lunbo/02.jpg -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/lunbo/03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/lunbo/03.jpg -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/lunbo/04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/lunbo/04.jpg -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/my.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/mySelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/mySelected.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/nofound.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/nofound.jpg -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/profile.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/profile/bysell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/profile/bysell.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/profile/guanyuwom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/profile/guanyuwom.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/profile/mycollect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/profile/mycollect.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/profile/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/profile/upload.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/profile/yijianfankui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/profile/yijianfankui.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/profile/yishouchu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/profile/yishouchu.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/profile/yixiajia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/profile/yixiajia.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/profile/zhitiao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/profile/zhitiao.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/shop.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/shouhuo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/shouhuo.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/tfgg-verify/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/tfgg-verify/1.jpg -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/tfgg-verify/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/tfgg-verify/2.jpg -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/tfgg-verify/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/tfgg-verify/3.jpg -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/tfgg-verify/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/tfgg-verify/4.jpg -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/tfgg-verify/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/tfgg-verify/5.jpg -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/tfgg-verify/icon-button-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/tfgg-verify/icon-button-normal.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/upload.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/static/uploaded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/static/uploaded.png -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/uni_modules/helang-waterfall/static/waterfall/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/uni_modules/helang-waterfall/static/waterfall/0.jpg -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/uni_modules/helang-waterfall/static/waterfall/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/uni_modules/helang-waterfall/static/waterfall/1.jpg -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/uni_modules/helang-waterfall/static/waterfall/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/uni_modules/helang-waterfall/static/waterfall/2.jpg -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/uni_modules/uni-icons/components/uni-icons/uni.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/app-plus/uni_modules/uni-icons/components/uni-icons/uni.ttf -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/app.js: -------------------------------------------------------------------------------- 1 | 2 | require('./common/runtime.js') 3 | require('./common/vendor.js') 4 | require('./common/main.js') -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/app.wxss: -------------------------------------------------------------------------------- 1 | @import './common/main.wxss'; 2 | 3 | [data-custom-hidden="true"],[bind-data-custom-hidden="true"]{display: none !important;} -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/bookOrderComplete.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "u-button": "/uni_modules/uview-ui/components/u-button/u-button", 5 | "u-modal": "/uni_modules/uview-ui/components/u-modal/u-modal", 6 | "popup": "/components/bookOrderPopup" 7 | } 8 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/bookOrderComponents.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "u-button": "/uni_modules/uview-ui/components/u-button/u-button", 5 | "u-modal": "/uni_modules/uview-ui/components/u-modal/u-modal" 6 | } 7 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/bookOrderFahuo.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "u-button": "/uni_modules/uview-ui/components/u-button/u-button", 5 | "u-modal": "/uni_modules/uview-ui/components/u-modal/u-modal", 6 | "popup": "/components/bookOrderPopup" 7 | } 8 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/bookOrderPopup.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "u-popup": "/uni_modules/uview-ui/components/u-popup/u-popup", 5 | "u-upload": "/uni_modules/uview-ui/components/u-upload/u-upload" 6 | } 7 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/bookOrderPopup.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/book_list/book_list.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/chatinput.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "u-input": "/uni_modules/uview-ui/components/u-input/u-input", 5 | "u-button": "/uni_modules/uview-ui/components/u-button/u-button" 6 | } 7 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/chatinput.wxml: -------------------------------------------------------------------------------- 1 | 发送 -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/chatinput.wxss: -------------------------------------------------------------------------------- 1 | 2 | .chatRoom { 3 | position: fixed; 4 | bottom: 0; 5 | height: 120rpx; 6 | width: 100%; 7 | } 8 | 9 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/fabuComponent.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "u-swipe-action": "/uni_modules/uview-ui/components/u-swipe-action/u-swipe-action", 5 | "u-swipe-action-item": "/uni_modules/uview-ui/components/u-swipe-action-item/u-swipe-action-item" 6 | } 7 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/messageshow.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/messageshow.wxml: -------------------------------------------------------------------------------- 1 | {{message.content+''}} -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/navigationBar.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "u-navbar": "/uni_modules/uview-ui/components/u-navbar/u-navbar", 5 | "u-icon": "/uni_modules/uview-ui/components/u-icon/u-icon", 6 | "u-modal": "/uni_modules/uview-ui/components/u-modal/u-modal" 7 | } 8 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/popupComponent.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "u-popup": "/uni_modules/uview-ui/components/u-popup/u-popup", 5 | "u-icon": "/uni_modules/uview-ui/components/u-icon/u-icon", 6 | "u-button": "/uni_modules/uview-ui/components/u-button/u-button", 7 | "spend-money": "/components/spendMoney/index" 8 | } 9 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/sellerComplete.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "u-swipe-action": "/uni_modules/uview-ui/components/u-swipe-action/u-swipe-action", 5 | "u-swipe-action-item": "/uni_modules/uview-ui/components/u-swipe-action-item/u-swipe-action-item" 6 | } 7 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/spendMoney/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/spendMoney/index.wxss: -------------------------------------------------------------------------------- 1 | 2 | .password { 3 | width: 25%; 4 | flex-grow: 1; 5 | padding: 3%; 6 | font-size: 40rpx; 7 | box-shadow: 0px 0px 1rpx #ccc; 8 | } 9 | .hover { 10 | background: #eee; 11 | } 12 | .masks { 13 | bottom: -50%; 14 | position: fixed; 15 | background: #fff; 16 | width: 100%; 17 | transition: .5s 18 | } 19 | .bot { 20 | bottom: 0; 21 | } 22 | 23 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/sunui-mverify/sunui-mverify.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/sunui-mverify/sunui-mverify.wxml: -------------------------------------------------------------------------------- 1 | {{hint}}{{succeedMsg}} -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/userCollect.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "u-swipe-action": "/uni_modules/uview-ui/components/u-swipe-action/u-swipe-action", 5 | "u-swipe-action-item": "/uni_modules/uview-ui/components/u-swipe-action-item/u-swipe-action-item", 6 | "u-modal": "/uni_modules/uview-ui/components/u-modal/u-modal", 7 | "u-keyboard": "/uni_modules/uview-ui/components/u-keyboard/u-keyboard" 8 | } 9 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/node-modules/@dcloudio/uni-cli-shared/components/unicloud-db.json: -------------------------------------------------------------------------------- 1 | { 2 | "componentGenerics": { 3 | "scoped-slots-default": true 4 | }, 5 | "component": true, 6 | "usingComponents": {} 7 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/node-modules/@dcloudio/uni-cli-shared/components/unicloud-db.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/JerryList/JerryList-unicloud-db-default.js: -------------------------------------------------------------------------------- 1 | 2 | wx.createComponent({ 3 | generic:true, 4 | props: {data:{type:null},loading:{type:null},error:{type:null},options:{type:null}}, 5 | render: function(){} 6 | }) 7 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/JerryList/JerryList-unicloud-db-default.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "JerryList-unicloud-db-default": "/pages/JerryList/JerryList-unicloud-db-default", 5 | "unicloud-db": "/node-modules/@dcloudio/uni-cli-shared/components/unicloud-db", 6 | "uni-list": "/uni_modules/uni-list/components/uni-list/uni-list", 7 | "uni-list-item": "/uni_modules/uni-list/components/uni-list-item/uni-list-item", 8 | "uni-load-more": "/uni_modules/uni-load-more/components/uni-load-more/uni-load-more" 9 | } 10 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/JerryList/JerryList-unicloud-db-default.wxss: -------------------------------------------------------------------------------- 1 | 2 | @import "./JerryList.wxss" 3 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/JerryList/JerryList.json: -------------------------------------------------------------------------------- 1 | { 2 | "enablePullDownRefresh": true, 3 | "navigationBarTitleText": "水平排列,右图左文", 4 | "usingComponents": { 5 | "JerryList-unicloud-db-default": "/pages/JerryList/JerryList-unicloud-db-default", 6 | "unicloud-db": "/node-modules/@dcloudio/uni-cli-shared/components/unicloud-db", 7 | "uni-list": "/uni_modules/uni-list/components/uni-list/uni-list", 8 | "uni-list-item": "/uni_modules/uni-list/components/uni-list-item/uni-list-item", 9 | "uni-load-more": "/uni_modules/uni-load-more/components/uni-load-more/uni-load-more" 10 | } 11 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/JerryList/JerryList.wxml: -------------------------------------------------------------------------------- 1 | 为您更新了10条最新新闻动态 -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/aboutwe/aboutwe.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "关于我们", 3 | "navigationBarBackgroundColor": "#ff510a", 4 | "navigationBarTextStyle": "white", 5 | "usingComponents": { 6 | "u-list": "/uni_modules/uview-ui/components/u-list/u-list", 7 | "u-list-item": "/uni_modules/uview-ui/components/u-list-item/u-list-item", 8 | "u-cell": "/uni_modules/uview-ui/components/u-cell/u-cell", 9 | "u-avatar": "/uni_modules/uview-ui/components/u-avatar/u-avatar" 10 | } 11 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/cart/cart.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "购物车", 3 | "navigationBarTextStyle": "white", 4 | "navigationBarBackgroundColor": "#ff510a", 5 | "usingComponents": { 6 | "u-modal": "/uni_modules/uview-ui/components/u-modal/u-modal", 7 | "spend-money": "/components/spendMoney/index" 8 | } 9 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/category/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "分类", 3 | "navigationBarBackgroundColor": "#ff510a", 4 | "navigationBarTextStyle": "white", 5 | "usingComponents": {} 6 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/category/index.wxml: -------------------------------------------------------------------------------- 1 | {{''+item.title+''}}{{item.title}}暂无数据 -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/center/center.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "需求中心", 3 | "navigationBarBackgroundColor": "#ff510a", 4 | "navigationBarTextStyle": "white", 5 | "usingComponents": { 6 | "u--text": "/uni_modules/uview-ui/components/u--text/u--text" 7 | } 8 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/center/centerDetail.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "动态详情", 3 | "navigationBarBackgroundColor": "#ff510a", 4 | "navigationBarTextStyle": "white", 5 | "usingComponents": { 6 | "u--text": "/uni_modules/uview-ui/components/u--text/u--text", 7 | "u-text": "/uni_modules/uview-ui/components/u-text/u-text", 8 | "u-modal": "/uni_modules/uview-ui/components/u-modal/u-modal", 9 | "u--input": "/uni_modules/uview-ui/components/u--input/u--input", 10 | "u-button": "/uni_modules/uview-ui/components/u-button/u-button" 11 | } 12 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/chat/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "聊天界面", 3 | "navigationBarBackgroundColor": "#ff510a", 4 | "navigationBarTextStyle": "white", 5 | "usingComponents": { 6 | "chat-input": "/components/chatinput", 7 | "message-show": "/components/messageshow" 8 | } 9 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/chat/index.wxss: -------------------------------------------------------------------------------- 1 | 2 | .uni-column { 3 | display: flex; 4 | flex-direction: column; 5 | } 6 | .content { 7 | display: flex; 8 | flex: 1; 9 | margin-bottom: 100px; 10 | } 11 | .foot { 12 | position: fixed; 13 | width: 100%; 14 | height: 60px; 15 | min-height: 60px; 16 | left: 0px; 17 | bottom: 0px; 18 | overflow: hidden; 19 | } 20 | 21 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/chatroom/chatUser.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "聊天界面", 3 | "navigationBarTextStyle": "white", 4 | "navigationBarBackgroundColor": "#ff510a", 5 | "usingComponents": { 6 | "u-notice-bar": "/uni_modules/uview-ui/components/u-notice-bar/u-notice-bar", 7 | "u-input": "/uni_modules/uview-ui/components/u-input/u-input", 8 | "u-button": "/uni_modules/uview-ui/components/u-button/u-button" 9 | } 10 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/chatroom/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "消息", 3 | "navigationBarTextStyle": "white", 4 | "navigationBarBackgroundColor": "#ff510a", 5 | "usingComponents": {} 6 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/chatroom/index.wxml: -------------------------------------------------------------------------------- 1 | {{"用户名:"+item.username}} -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/chi/chi.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "广州吃吃", 3 | "navigationBarTextStyle": "white", 4 | "navigationBarBackgroundColor": "#ff510a", 5 | "usingComponents": {} 6 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/chi/chi.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/collect/collect.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "我的收藏", 3 | "navigationBarTextStyle": "white", 4 | "navigationBarBackgroundColor": "#ff510a", 5 | "usingComponents": { 6 | "u-modal": "/uni_modules/uview-ui/components/u-modal/u-modal", 7 | "usercollect": "/components/userCollect" 8 | } 9 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/collect/collect.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/comments/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "评论", 3 | "navigationBarBackgroundColor": "#ff510a", 4 | "navigationBarTextStyle": "white", 5 | "usingComponents": { 6 | "u-upload": "/uni_modules/uview-ui/components/u-upload/u-upload" 7 | } 8 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/comments/index.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/detail/detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationStyle": "custom", 3 | "navigationBarTextStyle": "white", 4 | "usingComponents": { 5 | "navigation": "/components/navigationBar", 6 | "popup-component": "/components/popupComponent" 7 | } 8 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/detail/orderDetail.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "订单详情", 3 | "navigationBarBackgroundColor": "#FFFFFF", 4 | "navigationBarTextStyle": "black", 5 | "usingComponents": {} 6 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/directSales/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationStyle": "custom", 3 | "navigationBarTextStyle": "white", 4 | "usingComponents": { 5 | "helang-waterfall": "/uni_modules/helang-waterfall/components/helang-waterfall/helang-waterfall" 6 | } 7 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/forget/check.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "验证界面", 3 | "navigationBarBackgroundColor": "#ff510a", 4 | "navigationBarTextStyle": "white", 5 | "usingComponents": { 6 | "sunui-mverify": "/components/sunui-mverify/sunui-mverify" 7 | } 8 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/forget/check.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/forget/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "验证界面", 3 | "navigationBarBackgroundColor": "#ff510a", 4 | "navigationBarTextStyle": "white", 5 | "usingComponents": { 6 | "u--input": "/uni_modules/uview-ui/components/u--input/u--input", 7 | "u-toast": "/uni_modules/uview-ui/components/u-toast/u-toast", 8 | "u-code": "/uni_modules/uview-ui/components/u-code/u-code", 9 | "u-button": "/uni_modules/uview-ui/components/u-button/u-button", 10 | "u-code-input": "/uni_modules/uview-ui/components/u-code-input/u-code-input" 11 | } 12 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/forget/setPassword.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "重设密码", 3 | "navigationBarBackgroundColor": "#ff510a", 4 | "navigationBarTextStyle": "white", 5 | "usingComponents": {} 6 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationStyle": "custom", 3 | "navigationBarTextStyle": "white", 4 | "enablePullDownRefresh": true, 5 | "usingComponents": { 6 | "u-notice-bar": "/uni_modules/uview-ui/components/u-notice-bar/u-notice-bar" 7 | } 8 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/issue/issue.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "发布", 3 | "navigationBarBackgroundColor": "#ff510a", 4 | "navigationBarTextStyle": "white", 5 | "usingComponents": {} 6 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/issue/issue.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/login/login.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "登录", 3 | "navigationBarTextStyle": "white", 4 | "navigationBarBackgroundColor": "#ff510a", 5 | "usingComponents": {} 6 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/myOrder/myOrder.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "订单中心", 3 | "navigationBarBackgroundColor": "#ff510a", 4 | "navigationBarTextStyle": "white", 5 | "usingComponents": { 6 | "u-subsection": "/uni_modules/uview-ui/components/u-subsection/u-subsection", 7 | "book-order": "/components/bookOrderComponents", 8 | "book-complete": "/components/bookOrderComplete", 9 | "book-fahuo": "/components/bookOrderFahuo" 10 | } 11 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/myOrder/myOrder.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/myfabu/myfabu.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "我的发布", 3 | "navigationBarBackgroundColor": "#ff510a", 4 | "navigationBarTextStyle": "white", 5 | "usingComponents": { 6 | "fabu": "/components/fabuComponent" 7 | } 8 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/myfabu/myfabu.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/mypaper/mypaper.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "扔纸条", 3 | "navigationBarBackgroundColor": "#ff510a", 4 | "navigationBarTextStyle": "white", 5 | "usingComponents": { 6 | "u-upload": "/uni_modules/uview-ui/components/u-upload/u-upload", 7 | "u-button": "/uni_modules/uview-ui/components/u-button/u-button", 8 | "u-modal": "/uni_modules/uview-ui/components/u-modal/u-modal" 9 | } 10 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/mypaper/mypapered.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "我扔的纸条", 3 | "navigationBarBackgroundColor": "#ff510a", 4 | "navigationBarTextStyle": "white", 5 | "usingComponents": { 6 | "u--text": "/uni_modules/uview-ui/components/u--text/u--text", 7 | "u-text": "/uni_modules/uview-ui/components/u-text/u-text", 8 | "u-modal": "/uni_modules/uview-ui/components/u-modal/u-modal" 9 | } 10 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/profile/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "我的", 3 | "navigationBarTextStyle": "white", 4 | "navigationBarBackgroundColor": "#ff510a", 5 | "enablePullDownRefresh": true, 6 | "usingComponents": {} 7 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/resgist/regist.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "注册", 3 | "navigationBarTextStyle": "white", 4 | "navigationBarBackgroundColor": "#ff510a", 5 | "usingComponents": {} 6 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/sell/search.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "搜索", 3 | "navigationBarTextStyle": "white", 4 | "navigationBarBackgroundColor": "#ff510a", 5 | "usingComponents": { 6 | "u-search": "/uni_modules/uview-ui/components/u-search/u-search", 7 | "book-list": "/components/book_list/book_list" 8 | } 9 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/sell/search.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/sell/sell.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationStyle": "custom", 3 | "navigationBarTextStyle": "white", 4 | "enablePullDownRefresh": true, 5 | "usingComponents": { 6 | "u-icon": "/uni_modules/uview-ui/components/u-icon/u-icon", 7 | "helang-waterfall": "/uni_modules/helang-waterfall/components/helang-waterfall/helang-waterfall" 8 | } 9 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/shengcun/shengcun.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/shengcun/shengcun.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/solded/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "已售出", 3 | "navigationBarTextStyle": "white", 4 | "navigationBarBackgroundColor": "#ff510a", 5 | "usingComponents": { 6 | "collect": "/components/sellerComplete" 7 | } 8 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/solded/index.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/upload/uppload.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "上传发布", 3 | "navigationBarBackgroundColor": "#ff510a", 4 | "navigationBarTextStyle": "white", 5 | "usingComponents": { 6 | "u-upload": "/uni_modules/uview-ui/components/u-upload/u-upload", 7 | "u--input": "/uni_modules/uview-ui/components/u--input/u--input", 8 | "u-tag": "/uni_modules/uview-ui/components/u-tag/u-tag", 9 | "u-button": "/uni_modules/uview-ui/components/u-button/u-button", 10 | "u-modal": "/uni_modules/uview-ui/components/u-modal/u-modal" 11 | } 12 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/warehouse/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "店铺", 3 | "navigationBarBackgroundColor": "#ff510a", 4 | "navigationBarTextStyle": "white", 5 | "usingComponents": { 6 | "u-avatar": "/uni_modules/uview-ui/components/u-avatar/u-avatar", 7 | "u-text": "/uni_modules/uview-ui/components/u-text/u-text", 8 | "u-icon": "/uni_modules/uview-ui/components/u-icon/u-icon", 9 | "u-tag": "/uni_modules/uview-ui/components/u-tag/u-tag", 10 | "book-list": "/components/book_list/book_list" 11 | } 12 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/zhinan/zhinan.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "使用指南", 3 | "navigationBarBackgroundColor": "#ff510a", 4 | "navigationBarTextStyle": "white", 5 | "usingComponents": { 6 | "u-collapse": "/uni_modules/uview-ui/components/u-collapse/u-collapse", 7 | "u-collapse-item": "/uni_modules/uview-ui/components/u-collapse-item/u-collapse-item" 8 | } 9 | } -------------------------------------------------------------------------------- /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/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/book.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/bookSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/bookSelected.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/cart.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/cartSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/cartSelected.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/cate/Category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/cate/Category.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/cate/cloud upload-fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/cate/cloud upload-fill.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/cate/fabu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/cate/fabu.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/cate/guanyuwomen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/cate/guanyuwomen.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/cate/jingxuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/cate/jingxuan.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/cate/meishi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/cate/meishi.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/cate/myfabuNew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/cate/myfabuNew.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/cate/renzhitiao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/cate/renzhitiao.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/cate/shengcun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/cate/shengcun.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/cate/shoucang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/cate/shoucang.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/cate/university.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/cate/university.jpeg -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/cate/xuqiuNew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/cate/xuqiuNew.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/cate/zhinan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/cate/zhinan.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/cate/zhiying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/cate/zhiying.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/chat.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/collect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/collect.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/collectSelcted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/collectSelcted.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/del.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/font/iconfont.ttf -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/font/iconfont.woff -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/font/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/font/iconfont.woff2 -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/friend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/friend.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/icon/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/icon/cart.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/icon/cartSelecter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/icon/cartSelecter.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/icon/jia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/icon/jia.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/icon/jian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/icon/jian.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/icon/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/icon/mail.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/icon/orderDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/icon/orderDetail.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/img/customerHL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/img/customerHL.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/img/homeHL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/img/homeHL.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/imgs/close_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/imgs/close_icon.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/imgs/code_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/imgs/code_icon.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/imgs/fire_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/imgs/fire_gray.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/imgs/fire_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/imgs/fire_green.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/imgs/fire_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/imgs/fire_white.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/imgs/mobile_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/imgs/mobile_icon.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/imgs/moom_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/imgs/moom_gray.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/imgs/moom_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/imgs/moom_green.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/imgs/moom_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/imgs/moom_white.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/imgs/pwd_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/imgs/pwd_icon.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/index.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/indexSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/indexSelected.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/logo.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/lunbo/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/lunbo/01.jpg -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/lunbo/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/lunbo/02.jpg -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/lunbo/03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/lunbo/03.jpg -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/lunbo/04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/lunbo/04.jpg -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/my.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/mySelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/mySelected.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/nofound.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/nofound.jpg -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/profile.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/profile/bysell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/profile/bysell.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/profile/guanyuwom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/profile/guanyuwom.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/profile/mycollect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/profile/mycollect.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/profile/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/profile/upload.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/profile/yijianfankui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/profile/yijianfankui.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/profile/yishouchu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/profile/yishouchu.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/profile/yixiajia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/profile/yixiajia.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/profile/zhitiao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/profile/zhitiao.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/shop.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/shouhuo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/shouhuo.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/upload.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/uploaded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/static/uploaded.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/helang-waterfall/components/helang-waterfall/helang-waterfall.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/helang-waterfall/static/waterfall/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/uni_modules/helang-waterfall/static/waterfall/0.jpg -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/helang-waterfall/static/waterfall/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/uni_modules/helang-waterfall/static/waterfall/1.jpg -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/helang-waterfall/static/waterfall/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerrytan24/WeMall/2eee691e8d37039865111d818c66a8817b06e805/unpackage/dist/dev/mp-weixin/uni_modules/helang-waterfall/static/waterfall/2.jpg -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uni-badge/components/uni-badge/uni-badge.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uni-badge/components/uni-badge/uni-badge.wxml: -------------------------------------------------------------------------------- 1 | {{displayValue}} -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uni-icons/components/uni-icons/uni-icons.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uni-icons/components/uni-icons/uni-icons.wxml: -------------------------------------------------------------------------------- 1 | {{icons[type]}} -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uni-list/components/uni-list-item/uni-list-item.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "uni-icons": "/uni_modules/uni-icons/components/uni-icons/uni-icons", 5 | "uni-badge": "/uni_modules/uni-badge/components/uni-badge/uni-badge" 6 | } 7 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uni-list/components/uni-list/uni-list.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uni-list/components/uni-list/uni-list.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uni-load-more/components/uni-load-more/uni-load-more.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u--input/u--input.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "uv-input": "/uni_modules/uview-ui/components/u-input/u-input" 5 | } 6 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u--text/u--text.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "uv-text": "/uni_modules/uview-ui/components/u-text/u-text" 5 | } 6 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u--text/u--text.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-avatar/u-avatar.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "u-icon": "/uni_modules/uview-ui/components/u-icon/u-icon", 5 | "u--text": "/uni_modules/uview-ui/components/u--text/u--text" 6 | } 7 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-button/u-button.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "u-loading-icon": "/uni_modules/uview-ui/components/u-loading-icon/u-loading-icon", 5 | "u-icon": "/uni_modules/uview-ui/components/u-icon/u-icon" 6 | } 7 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-car-keyboard/u-car-keyboard.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "u-icon": "/uni_modules/uview-ui/components/u-icon/u-icon" 5 | } 6 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-cell/u-cell.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "u-icon": "/uni_modules/uview-ui/components/u-icon/u-icon", 5 | "u-line": "/uni_modules/uview-ui/components/u-line/u-line" 6 | } 7 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-code-input/u-code-input.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-code/u-code.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-code/u-code.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-collapse-item/u-collapse-item.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "u-cell": "/uni_modules/uview-ui/components/u-cell/u-cell", 5 | "u-line": "/uni_modules/uview-ui/components/u-line/u-line" 6 | } 7 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-collapse/u-collapse.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "u-line": "/uni_modules/uview-ui/components/u-line/u-line" 5 | } 6 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-collapse/u-collapse.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-column-notice/u-column-notice.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "u-icon": "/uni_modules/uview-ui/components/u-icon/u-icon" 5 | } 6 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-gap/u-gap.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-gap/u-gap.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-icon/u-icon.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-input/u-input.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "u-icon": "/uni_modules/uview-ui/components/u-icon/u-icon" 5 | } 6 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-keyboard/u-keyboard.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "u-popup": "/uni_modules/uview-ui/components/u-popup/u-popup", 5 | "u-number-keyboard": "/uni_modules/uview-ui/components/u-number-keyboard/u-number-keyboard", 6 | "u-car-keyboard": "/uni_modules/uview-ui/components/u-car-keyboard/u-car-keyboard" 7 | } 8 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-line/u-line.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-line/u-line.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-link/u-link.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-link/u-link.wxml: -------------------------------------------------------------------------------- 1 | {{text}} -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-list-item/u-list-item.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-list-item/u-list-item.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-list/u-list.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-loading-icon/u-loading-icon.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-modal/u-modal.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "u-popup": "/uni_modules/uview-ui/components/u-popup/u-popup", 5 | "u-line": "/uni_modules/uview-ui/components/u-line/u-line", 6 | "u-loading-icon": "/uni_modules/uview-ui/components/u-loading-icon/u-loading-icon" 7 | } 8 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-navbar/u-navbar.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "u-status-bar": "/uni_modules/uview-ui/components/u-status-bar/u-status-bar", 5 | "u-icon": "/uni_modules/uview-ui/components/u-icon/u-icon" 6 | } 7 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-notice-bar/u-notice-bar.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "u-column-notice": "/uni_modules/uview-ui/components/u-column-notice/u-column-notice", 5 | "u-row-notice": "/uni_modules/uview-ui/components/u-row-notice/u-row-notice" 6 | } 7 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-number-keyboard/u-number-keyboard.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "u-icon": "/uni_modules/uview-ui/components/u-icon/u-icon" 5 | } 6 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-overlay/u-overlay.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "u-transition": "/uni_modules/uview-ui/components/u-transition/u-transition" 5 | } 6 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-overlay/u-overlay.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-popup/u-popup.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "u-overlay": "/uni_modules/uview-ui/components/u-overlay/u-overlay", 5 | "u-transition": "/uni_modules/uview-ui/components/u-transition/u-transition", 6 | "u-status-bar": "/uni_modules/uview-ui/components/u-status-bar/u-status-bar", 7 | "u-icon": "/uni_modules/uview-ui/components/u-icon/u-icon", 8 | "u-safe-bottom": "/uni_modules/uview-ui/components/u-safe-bottom/u-safe-bottom" 9 | } 10 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-row-notice/u-row-notice.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "u-icon": "/uni_modules/uview-ui/components/u-icon/u-icon" 5 | } 6 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-safe-bottom/u-safe-bottom.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-safe-bottom/u-safe-bottom.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-search/u-search.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "u-icon": "/uni_modules/uview-ui/components/u-icon/u-icon" 5 | } 6 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-status-bar/u-status-bar.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-status-bar/u-status-bar.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-subsection/u-subsection.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-swipe-action-item/u-swipe-action-item.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "u-icon": "/uni_modules/uview-ui/components/u-icon/u-icon" 5 | } 6 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-swipe-action/u-swipe-action.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-swipe-action/u-swipe-action.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-tag/u-tag.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "u-transition": "/uni_modules/uview-ui/components/u-transition/u-transition", 5 | "u-icon": "/uni_modules/uview-ui/components/u-icon/u-icon" 6 | } 7 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-text/u-text.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "u-icon": "/uni_modules/uview-ui/components/u-icon/u-icon", 5 | "u-link": "/uni_modules/uview-ui/components/u-link/u-link" 6 | } 7 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-toast/u-toast.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "u-overlay": "/uni_modules/uview-ui/components/u-overlay/u-overlay", 5 | "u-loading-icon": "/uni_modules/uview-ui/components/u-loading-icon/u-loading-icon", 6 | "u-icon": "/uni_modules/uview-ui/components/u-icon/u-icon", 7 | "u-gap": "/uni_modules/uview-ui/components/u-gap/u-gap" 8 | } 9 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-transition/u-transition.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-transition/u-transition.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uview-ui/components/u-upload/u-upload.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "u-icon": "/uni_modules/uview-ui/components/u-icon/u-icon", 5 | "u-loading-icon": "/uni_modules/uview-ui/components/u-loading-icon/u-loading-icon" 6 | } 7 | } -------------------------------------------------------------------------------- /util/Intercepter.js: -------------------------------------------------------------------------------- 1 | export const Inter = { 2 | judgement(username) { 3 | if (!username) { 4 | uni.showToast({ 5 | title: "您还未登录" 6 | }) 7 | return 0; 8 | } else { 9 | return 1; 10 | } 11 | }, 12 | JerryAlert(title){ 13 | return uni.showToast({ 14 | title, 15 | }) 16 | } 17 | } 18 | --------------------------------------------------------------------------------