├── App.vue ├── components ├── goodlist │ └── goodlist.vue └── uni-ui │ ├── uni-badge │ └── uni-badge.vue │ ├── uni-calendar │ ├── calendar.js │ ├── uni-calendar-item.vue │ ├── uni-calendar.vue │ └── util.js │ ├── uni-card │ └── uni-card.vue │ ├── uni-collapse-item │ └── uni-collapse-item.vue │ ├── uni-collapse │ └── uni-collapse.vue │ ├── uni-combox │ └── uni-combox.vue │ ├── uni-countdown │ └── uni-countdown.vue │ ├── uni-drawer │ └── uni-drawer.vue │ ├── uni-fab │ └── uni-fab.vue │ ├── uni-fav │ └── uni-fav.vue │ ├── uni-goods-nav │ └── uni-goods-nav.vue │ ├── uni-grid-item │ ├── uni-grid-item copy.vue │ └── uni-grid-item.vue │ ├── uni-grid │ └── uni-grid.vue │ ├── uni-icons │ ├── icons.js │ ├── uni-icons.vue │ └── uni.ttf │ ├── uni-indexed-list │ ├── uni-indexed-list-item.vue │ └── uni-indexed-list.vue │ ├── uni-link │ └── uni-link.vue │ ├── 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 │ ├── uni-load-more │ └── uni-load-more.vue │ ├── uni-nav-bar │ └── uni-nav-bar.vue │ ├── uni-notice-bar │ └── uni-notice-bar.vue │ ├── uni-number-box │ └── uni-number-box.vue │ ├── uni-pagination │ └── uni-pagination.vue │ ├── uni-popup-dialog │ └── uni-popup-dialog.vue │ ├── uni-popup-message │ └── uni-popup-message.vue │ ├── uni-popup-share │ └── uni-popup-share.vue │ ├── uni-popup │ ├── message.js │ ├── popup.js │ ├── share.js │ └── uni-popup.vue │ ├── uni-rate │ └── uni-rate.vue │ ├── uni-search-bar │ └── uni-search-bar.vue │ ├── uni-section │ └── uni-section.vue │ ├── uni-segmented-control │ └── uni-segmented-control.vue │ ├── uni-status-bar │ └── uni-status-bar.vue │ ├── uni-steps │ └── uni-steps.vue │ ├── uni-swipe-action-item │ ├── bindingx.js │ ├── index.wxs │ ├── mpalipay.js │ ├── mpother.js │ ├── mpwxs.js │ └── uni-swipe-action-item.vue │ ├── uni-swipe-action │ └── uni-swipe-action.vue │ ├── uni-swiper-dot │ └── uni-swiper-dot.vue │ ├── uni-tag │ └── uni-tag.vue │ ├── uni-test │ └── uni-test.vue │ ├── uni-title │ └── uni-title.vue │ └── uni-transition │ └── uni-transition.vue ├── main.js ├── manifest.json ├── pages.json ├── pages ├── cart │ └── cart.vue ├── contact │ └── contact.vue ├── goods │ └── goods.vue ├── goodsdetail │ └── goodsdetail.vue ├── index │ └── index.vue ├── member │ └── member.vue ├── news │ └── news.vue ├── newsdetail │ └── newsdetail.vue ├── pics │ └── pics.vue └── videos │ └── videos.vue ├── static ├── fonts │ ├── iconfont.css │ ├── iconfont.eot │ ├── iconfont.svg │ ├── iconfont.ttf │ ├── iconfont.woff │ └── iconfont.woff2 ├── hmlogo.png ├── icon │ ├── cart-active.png │ ├── cart.png │ ├── home-active.png │ ├── home.png │ ├── member-active.png │ ├── member.png │ ├── news-active.png │ └── news.png ├── logo.png └── uni.ttf ├── store └── index.js ├── uni.scss ├── unpackage └── dist │ ├── build │ ├── .tmp │ │ └── app-plus │ │ │ ├── app.js │ │ │ ├── app.json │ │ │ ├── app.wxss │ │ │ ├── common │ │ │ ├── main.js │ │ │ ├── main.wxss │ │ │ ├── runtime.js │ │ │ └── vendor.js │ │ │ ├── components │ │ │ ├── goodlist │ │ │ │ ├── goodlist.js │ │ │ │ ├── goodlist.json │ │ │ │ ├── goodlist.wxml │ │ │ │ └── goodlist.wxss │ │ │ └── uni-ui │ │ │ │ ├── uni-badge │ │ │ │ ├── uni-badge.js │ │ │ │ ├── uni-badge.json │ │ │ │ ├── uni-badge.wxml │ │ │ │ └── uni-badge.wxss │ │ │ │ ├── uni-goods-nav │ │ │ │ ├── uni-goods-nav.js │ │ │ │ ├── uni-goods-nav.json │ │ │ │ ├── uni-goods-nav.wxml │ │ │ │ └── uni-goods-nav.wxss │ │ │ │ ├── uni-grid-item │ │ │ │ ├── uni-grid-item.js │ │ │ │ ├── uni-grid-item.json │ │ │ │ ├── uni-grid-item.wxml │ │ │ │ └── uni-grid-item.wxss │ │ │ │ ├── uni-grid │ │ │ │ ├── uni-grid.js │ │ │ │ ├── uni-grid.json │ │ │ │ ├── uni-grid.wxml │ │ │ │ └── uni-grid.wxss │ │ │ │ ├── uni-icons │ │ │ │ ├── uni-icons.js │ │ │ │ ├── uni-icons.json │ │ │ │ ├── uni-icons.wxml │ │ │ │ └── uni-icons.wxss │ │ │ │ ├── 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 │ │ │ │ ├── uni-load-more.js │ │ │ │ ├── uni-load-more.json │ │ │ │ ├── uni-load-more.wxml │ │ │ │ └── uni-load-more.wxss │ │ │ ├── manifest.json │ │ │ ├── pages │ │ │ ├── cart │ │ │ │ ├── cart.js │ │ │ │ ├── cart.json │ │ │ │ └── cart.wxml │ │ │ ├── contact │ │ │ │ ├── contact.js │ │ │ │ ├── contact.json │ │ │ │ ├── contact.wxml │ │ │ │ └── contact.wxss │ │ │ ├── goods │ │ │ │ ├── goods.js │ │ │ │ ├── goods.json │ │ │ │ └── goods.wxml │ │ │ ├── goodsdetail │ │ │ │ ├── goodsdetail.js │ │ │ │ ├── goodsdetail.json │ │ │ │ ├── goodsdetail.wxml │ │ │ │ └── goodsdetail.wxss │ │ │ ├── index │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ ├── member │ │ │ │ ├── member.js │ │ │ │ ├── member.json │ │ │ │ └── member.wxml │ │ │ ├── news │ │ │ │ ├── news.js │ │ │ │ ├── news.json │ │ │ │ ├── news.wxml │ │ │ │ └── news.wxss │ │ │ ├── newsdetail │ │ │ │ ├── newsdetail.js │ │ │ │ ├── newsdetail.json │ │ │ │ ├── newsdetail.wxml │ │ │ │ └── newsdetail.wxss │ │ │ ├── pics │ │ │ │ ├── pics.js │ │ │ │ ├── pics.json │ │ │ │ ├── pics.wxml │ │ │ │ └── pics.wxss │ │ │ └── videos │ │ │ │ ├── videos.js │ │ │ │ ├── videos.json │ │ │ │ └── videos.wxml │ │ │ └── static │ │ │ └── img │ │ │ └── iconfont.dae2936b.svg │ ├── app-plus │ │ ├── __uniappchooselocation.js │ │ ├── __uniappes6.js │ │ ├── __uniappnvuecompiler.js │ │ ├── __uniappopenlocation.js │ │ ├── __uniapppicker.js │ │ ├── __uniappscan.js │ │ ├── __uniappsuccess.png │ │ ├── __uniappview.html │ │ ├── app-config.js │ │ ├── app-service.js │ │ ├── app-view.js │ │ ├── manifest.json │ │ ├── pages │ │ │ ├── cart │ │ │ │ └── cart.js │ │ │ ├── contact │ │ │ │ └── contact.js │ │ │ ├── goods │ │ │ │ └── goods.js │ │ │ ├── goodsdetail │ │ │ │ └── goodsdetail.js │ │ │ ├── index │ │ │ │ └── index.js │ │ │ ├── member │ │ │ │ └── member.js │ │ │ ├── news │ │ │ │ └── news.js │ │ │ ├── newsdetail │ │ │ │ └── newsdetail.js │ │ │ ├── pics │ │ │ │ └── pics.js │ │ │ └── videos │ │ │ │ └── videos.js │ │ └── static │ │ │ ├── fonts │ │ │ ├── iconfont.css │ │ │ ├── iconfont.eot │ │ │ ├── iconfont.svg │ │ │ ├── iconfont.ttf │ │ │ ├── iconfont.woff │ │ │ └── iconfont.woff2 │ │ │ ├── hmlogo.png │ │ │ ├── icon │ │ │ ├── cart-active.png │ │ │ ├── cart.png │ │ │ ├── home-active.png │ │ │ ├── home.png │ │ │ ├── member-active.png │ │ │ ├── member.png │ │ │ ├── news-active.png │ │ │ └── news.png │ │ │ ├── img │ │ │ └── iconfont.dae2936b.svg │ │ │ ├── logo.png │ │ │ └── uni.ttf │ ├── h5 │ │ ├── index.html │ │ └── static │ │ │ ├── fonts │ │ │ ├── iconfont.css │ │ │ ├── iconfont.eot │ │ │ ├── iconfont.svg │ │ │ ├── iconfont.ttf │ │ │ ├── iconfont.woff │ │ │ └── iconfont.woff2 │ │ │ ├── hmlogo.png │ │ │ ├── icon │ │ │ ├── cart-active.png │ │ │ ├── cart.png │ │ │ ├── home-active.png │ │ │ ├── home.png │ │ │ ├── member-active.png │ │ │ ├── member.png │ │ │ ├── news-active.png │ │ │ └── news.png │ │ │ ├── img │ │ │ └── iconfont.dae2936b.svg │ │ │ ├── index.css │ │ │ ├── js │ │ │ ├── chunk-vendors.eede6f62.js │ │ │ ├── index.1668bffa.js │ │ │ ├── pages-cart-cart.70daef21.js │ │ │ ├── pages-contact-contact.9e1e593e.js │ │ │ ├── pages-goods-goods.f4adb996.js │ │ │ ├── pages-goods-goods~pages-index-index.24b08a2c.js │ │ │ ├── pages-goodsdetail-goodsdetail.2faa32fd.js │ │ │ ├── pages-goodsdetail-goodsdetail~pages-news-news.75f2780a.js │ │ │ ├── pages-index-index.8d18ca5a.js │ │ │ ├── pages-member-member.09389b8d.js │ │ │ ├── pages-news-news.5a41139f.js │ │ │ ├── pages-newsdetail-newsdetail.c1b0cc37.js │ │ │ ├── pages-pics-pics.77a65afb.js │ │ │ └── pages-videos-videos.df621047.js │ │ │ ├── logo.png │ │ │ └── uni.ttf │ └── mp-weixin │ │ ├── app.js │ │ ├── app.json │ │ ├── app.wxss │ │ ├── common │ │ ├── main.js │ │ ├── main.wxss │ │ ├── runtime.js │ │ └── vendor.js │ │ ├── components │ │ ├── goodlist │ │ │ ├── goodlist.js │ │ │ ├── goodlist.json │ │ │ ├── goodlist.wxml │ │ │ └── goodlist.wxss │ │ └── uni-ui │ │ │ ├── uni-badge │ │ │ ├── uni-badge.js │ │ │ ├── uni-badge.json │ │ │ ├── uni-badge.wxml │ │ │ └── uni-badge.wxss │ │ │ ├── uni-goods-nav │ │ │ ├── uni-goods-nav.js │ │ │ ├── uni-goods-nav.json │ │ │ ├── uni-goods-nav.wxml │ │ │ └── uni-goods-nav.wxss │ │ │ ├── uni-grid-item │ │ │ ├── uni-grid-item.js │ │ │ ├── uni-grid-item.json │ │ │ ├── uni-grid-item.wxml │ │ │ └── uni-grid-item.wxss │ │ │ ├── uni-grid │ │ │ ├── uni-grid.js │ │ │ ├── uni-grid.json │ │ │ ├── uni-grid.wxml │ │ │ └── uni-grid.wxss │ │ │ ├── uni-icons │ │ │ ├── uni-icons.js │ │ │ ├── uni-icons.json │ │ │ ├── uni-icons.wxml │ │ │ └── uni-icons.wxss │ │ │ ├── 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 │ │ │ ├── uni-load-more.js │ │ │ ├── uni-load-more.json │ │ │ ├── uni-load-more.wxml │ │ │ └── uni-load-more.wxss │ │ ├── pages │ │ ├── cart │ │ │ ├── cart.js │ │ │ ├── cart.json │ │ │ └── cart.wxml │ │ ├── contact │ │ │ ├── contact.js │ │ │ ├── contact.json │ │ │ ├── contact.wxml │ │ │ └── contact.wxss │ │ ├── goods │ │ │ ├── goods.js │ │ │ ├── goods.json │ │ │ └── goods.wxml │ │ ├── goodsdetail │ │ │ ├── goodsdetail.js │ │ │ ├── goodsdetail.json │ │ │ ├── goodsdetail.wxml │ │ │ └── goodsdetail.wxss │ │ ├── index │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── member │ │ │ ├── member.js │ │ │ ├── member.json │ │ │ └── member.wxml │ │ ├── news │ │ │ ├── news.js │ │ │ ├── news.json │ │ │ ├── news.wxml │ │ │ └── news.wxss │ │ ├── newsdetail │ │ │ ├── newsdetail.js │ │ │ ├── newsdetail.json │ │ │ ├── newsdetail.wxml │ │ │ └── newsdetail.wxss │ │ ├── pics │ │ │ ├── pics.js │ │ │ ├── pics.json │ │ │ ├── pics.wxml │ │ │ └── pics.wxss │ │ └── videos │ │ │ ├── videos.js │ │ │ ├── videos.json │ │ │ └── videos.wxml │ │ ├── project.config.json │ │ ├── sitemap.json │ │ └── static │ │ ├── fonts │ │ ├── iconfont.css │ │ ├── iconfont.eot │ │ ├── iconfont.svg │ │ ├── iconfont.ttf │ │ ├── iconfont.woff │ │ └── iconfont.woff2 │ │ ├── hmlogo.png │ │ ├── icon │ │ ├── cart-active.png │ │ ├── cart.png │ │ ├── home-active.png │ │ ├── home.png │ │ ├── member-active.png │ │ ├── member.png │ │ ├── news-active.png │ │ └── news.png │ │ ├── img │ │ └── iconfont.dae2936b.svg │ │ ├── logo.png │ │ └── uni.ttf │ └── dev │ ├── .sourcemap │ ├── mp-alipay │ │ ├── common │ │ │ ├── main.js.map │ │ │ ├── runtime.js.map │ │ │ └── vendor.js.map │ │ ├── components │ │ │ ├── goodlist │ │ │ │ └── goodlist.js.map │ │ │ └── uni-ui │ │ │ │ ├── uni-badge │ │ │ │ └── uni-badge.js.map │ │ │ │ ├── uni-goods-nav │ │ │ │ └── uni-goods-nav.js.map │ │ │ │ ├── uni-grid-item │ │ │ │ └── uni-grid-item.js.map │ │ │ │ ├── uni-grid │ │ │ │ └── uni-grid.js.map │ │ │ │ ├── uni-icons │ │ │ │ └── uni-icons.js.map │ │ │ │ ├── uni-list-item │ │ │ │ └── uni-list-item.js.map │ │ │ │ ├── uni-list │ │ │ │ └── uni-list.js.map │ │ │ │ └── uni-load-more │ │ │ │ └── uni-load-more.js.map │ │ └── pages │ │ │ ├── cart │ │ │ └── cart.js.map │ │ │ ├── contact │ │ │ └── contact.js.map │ │ │ ├── goods │ │ │ └── goods.js.map │ │ │ ├── goodsdetail │ │ │ └── goodsdetail.js.map │ │ │ ├── index │ │ │ └── index.js.map │ │ │ ├── member │ │ │ └── member.js.map │ │ │ ├── news │ │ │ └── news.js.map │ │ │ ├── newsdetail │ │ │ └── newsdetail.js.map │ │ │ ├── pics │ │ │ └── pics.js.map │ │ │ └── videos │ │ │ └── videos.js.map │ └── mp-weixin │ │ ├── common │ │ ├── main.js.map │ │ ├── runtime.js.map │ │ └── vendor.js.map │ │ ├── components │ │ ├── goodlist │ │ │ └── goodlist.js.map │ │ └── uni-ui │ │ │ ├── uni-badge │ │ │ └── uni-badge.js.map │ │ │ ├── uni-goods-nav │ │ │ └── uni-goods-nav.js.map │ │ │ ├── uni-grid-item │ │ │ └── uni-grid-item.js.map │ │ │ ├── uni-grid │ │ │ └── uni-grid.js.map │ │ │ ├── uni-icons │ │ │ └── uni-icons.js.map │ │ │ ├── uni-list-item │ │ │ └── uni-list-item.js.map │ │ │ ├── uni-list │ │ │ └── uni-list.js.map │ │ │ └── uni-load-more │ │ │ └── uni-load-more.js.map │ │ └── pages │ │ ├── cart │ │ └── cart.js.map │ │ ├── contact │ │ └── contact.js.map │ │ ├── goods │ │ └── goods.js.map │ │ ├── goodsdetail │ │ └── goodsdetail.js.map │ │ ├── index │ │ └── index.js.map │ │ ├── member │ │ └── member.js.map │ │ ├── news │ │ └── news.js.map │ │ ├── newsdetail │ │ └── newsdetail.js.map │ │ ├── pics │ │ └── pics.js.map │ │ └── videos │ │ └── videos.js.map │ ├── mp-alipay │ ├── .tea │ │ └── entryFiles-development │ │ │ ├── config$.js │ │ │ ├── importScripts$.js │ │ │ ├── index$.web.js │ │ │ └── index$.worker.js │ ├── app.acss │ ├── app.js │ ├── app.json │ ├── common │ │ ├── main.acss │ │ ├── main.js │ │ ├── runtime.js │ │ └── vendor.js │ ├── components │ │ ├── goodlist │ │ │ ├── goodlist.acss │ │ │ ├── goodlist.axml │ │ │ ├── goodlist.js │ │ │ └── goodlist.json │ │ └── uni-ui │ │ │ ├── uni-badge │ │ │ ├── uni-badge.acss │ │ │ ├── uni-badge.axml │ │ │ ├── uni-badge.js │ │ │ └── uni-badge.json │ │ │ ├── uni-goods-nav │ │ │ ├── uni-goods-nav.acss │ │ │ ├── uni-goods-nav.axml │ │ │ ├── uni-goods-nav.js │ │ │ └── uni-goods-nav.json │ │ │ ├── uni-grid-item │ │ │ ├── uni-grid-item.acss │ │ │ ├── uni-grid-item.axml │ │ │ ├── uni-grid-item.js │ │ │ └── uni-grid-item.json │ │ │ ├── uni-grid │ │ │ ├── uni-grid.acss │ │ │ ├── uni-grid.axml │ │ │ ├── uni-grid.js │ │ │ └── uni-grid.json │ │ │ ├── uni-icons │ │ │ ├── uni-icons.acss │ │ │ ├── uni-icons.axml │ │ │ ├── uni-icons.js │ │ │ └── uni-icons.json │ │ │ ├── uni-list-item │ │ │ ├── uni-list-item.acss │ │ │ ├── uni-list-item.axml │ │ │ ├── uni-list-item.js │ │ │ └── uni-list-item.json │ │ │ ├── uni-list │ │ │ ├── uni-list.acss │ │ │ ├── uni-list.axml │ │ │ ├── uni-list.js │ │ │ └── uni-list.json │ │ │ └── uni-load-more │ │ │ ├── uni-load-more.acss │ │ │ ├── uni-load-more.axml │ │ │ ├── uni-load-more.js │ │ │ └── uni-load-more.json │ ├── pages │ │ ├── cart │ │ │ ├── cart.acss │ │ │ ├── cart.axml │ │ │ ├── cart.js │ │ │ └── cart.json │ │ ├── contact │ │ │ ├── contact.acss │ │ │ ├── contact.axml │ │ │ ├── contact.js │ │ │ └── contact.json │ │ ├── goods │ │ │ ├── goods.acss │ │ │ ├── goods.axml │ │ │ ├── goods.js │ │ │ └── goods.json │ │ ├── goodsdetail │ │ │ ├── goodsdetail.acss │ │ │ ├── goodsdetail.axml │ │ │ ├── goodsdetail.js │ │ │ └── goodsdetail.json │ │ ├── index │ │ │ ├── index.acss │ │ │ ├── index.axml │ │ │ ├── index.js │ │ │ └── index.json │ │ ├── member │ │ │ ├── member.acss │ │ │ ├── member.axml │ │ │ ├── member.js │ │ │ └── member.json │ │ ├── news │ │ │ ├── news.acss │ │ │ ├── news.axml │ │ │ ├── news.js │ │ │ └── news.json │ │ ├── newsdetail │ │ │ ├── newsdetail.acss │ │ │ ├── newsdetail.axml │ │ │ ├── newsdetail.js │ │ │ └── newsdetail.json │ │ ├── pics │ │ │ ├── pics.acss │ │ │ ├── pics.axml │ │ │ ├── pics.js │ │ │ └── pics.json │ │ └── videos │ │ │ ├── videos.acss │ │ │ ├── videos.axml │ │ │ ├── videos.js │ │ │ └── videos.json │ └── static │ │ ├── fonts │ │ ├── iconfont.css │ │ ├── iconfont.eot │ │ ├── iconfont.svg │ │ ├── iconfont.ttf │ │ ├── iconfont.woff │ │ └── iconfont.woff2 │ │ ├── hmlogo.png │ │ ├── icon │ │ ├── cart-active.png │ │ ├── cart.png │ │ ├── home-active.png │ │ ├── home.png │ │ ├── member-active.png │ │ ├── member.png │ │ ├── news-active.png │ │ └── news.png │ │ ├── img │ │ └── iconfont.dae2936b.svg │ │ ├── logo.png │ │ └── uni.ttf │ └── mp-weixin │ ├── app.js │ ├── app.json │ ├── app.wxss │ ├── common │ ├── main.js │ ├── main.wxss │ ├── runtime.js │ └── vendor.js │ ├── components │ ├── goodlist │ │ ├── goodlist.js │ │ ├── goodlist.json │ │ ├── goodlist.wxml │ │ └── goodlist.wxss │ └── uni-ui │ │ ├── uni-badge │ │ ├── uni-badge.js │ │ ├── uni-badge.json │ │ ├── uni-badge.wxml │ │ └── uni-badge.wxss │ │ ├── uni-goods-nav │ │ ├── uni-goods-nav.js │ │ ├── uni-goods-nav.json │ │ ├── uni-goods-nav.wxml │ │ └── uni-goods-nav.wxss │ │ ├── uni-grid-item │ │ ├── uni-grid-item.js │ │ ├── uni-grid-item.json │ │ ├── uni-grid-item.wxml │ │ └── uni-grid-item.wxss │ │ ├── uni-grid │ │ ├── uni-grid.js │ │ ├── uni-grid.json │ │ ├── uni-grid.wxml │ │ └── uni-grid.wxss │ │ ├── uni-icons │ │ ├── uni-icons.js │ │ ├── uni-icons.json │ │ ├── uni-icons.wxml │ │ └── uni-icons.wxss │ │ ├── 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 │ │ ├── uni-load-more.js │ │ ├── uni-load-more.json │ │ ├── uni-load-more.wxml │ │ └── uni-load-more.wxss │ ├── pages │ ├── cart │ │ ├── cart.js │ │ ├── cart.json │ │ └── cart.wxml │ ├── contact │ │ ├── contact.js │ │ ├── contact.json │ │ ├── contact.wxml │ │ └── contact.wxss │ ├── goods │ │ ├── goods.js │ │ ├── goods.json │ │ └── goods.wxml │ ├── goodsdetail │ │ ├── goodsdetail.js │ │ ├── goodsdetail.json │ │ ├── goodsdetail.wxml │ │ └── goodsdetail.wxss │ ├── index │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ ├── member │ │ ├── member.js │ │ ├── member.json │ │ └── member.wxml │ ├── news │ │ ├── news.js │ │ ├── news.json │ │ ├── news.wxml │ │ └── news.wxss │ ├── newsdetail │ │ ├── newsdetail.js │ │ ├── newsdetail.json │ │ ├── newsdetail.wxml │ │ └── newsdetail.wxss │ ├── pics │ │ ├── pics.js │ │ ├── pics.json │ │ ├── pics.wxml │ │ └── pics.wxss │ └── videos │ │ ├── videos.js │ │ ├── videos.json │ │ └── videos.wxml │ ├── project.config.json │ ├── sitemap.json │ ├── sitemap34.json │ ├── sitemap63.json │ └── static │ ├── fonts │ ├── iconfont.css │ ├── iconfont.eot │ ├── iconfont.svg │ ├── iconfont.ttf │ ├── iconfont.woff │ └── iconfont.woff2 │ ├── hmlogo.png │ ├── icon │ ├── cart-active.png │ ├── cart.png │ ├── home-active.png │ ├── home.png │ ├── member-active.png │ ├── member.png │ ├── news-active.png │ └── news.png │ ├── img │ └── iconfont.dae2936b.svg │ ├── logo.png │ └── uni.ttf └── utils ├── api.js ├── format.js ├── htmlparser.js └── zgrequest.js /App.vue: -------------------------------------------------------------------------------- 1 | 14 | 15 | 20 | -------------------------------------------------------------------------------- /components/uni-ui/uni-collapse/uni-collapse.vue: -------------------------------------------------------------------------------- 1 | 6 | 47 | 60 | -------------------------------------------------------------------------------- /components/uni-ui/uni-icons/uni.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/components/uni-ui/uni-icons/uni.ttf -------------------------------------------------------------------------------- /components/uni-ui/uni-link/uni-link.vue: -------------------------------------------------------------------------------- 1 | 5 | 6 | 68 | 69 | 74 | -------------------------------------------------------------------------------- /components/uni-ui/uni-list-chat/uni-list-chat.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * 这里是 uni-list 组件内置的常用样式变量 3 | * 如果需要覆盖样式,这里提供了基本的组件样式变量,您可以尝试修改这里的变量,去完成样式替换,而不用去修改源码 4 | * 5 | */ 6 | 7 | // 背景色 8 | $background-color : #fff; 9 | // 分割线颜色 10 | $divide-line-color : #e5e5e5; 11 | 12 | // 默认头像大小,如需要修改此值,注意同步修改 js 中的值 const avatarWidth = xx ,目前只支持方形头像 13 | // nvue 页面不支持修改头像大小 14 | $avatar-width : 45px ; 15 | 16 | // 头像边框 17 | $avatar-border-radius: 5px; 18 | $avatar-border-color: #eee; 19 | $avatar-border-width: 1px; 20 | 21 | // 标题文字样式 22 | $title-size : 16px; 23 | $title-color : #3b4144; 24 | $title-weight : normal; 25 | 26 | // 描述文字样式 27 | $note-size : 12px; 28 | $note-color : #999; 29 | $note-weight : normal; 30 | 31 | // 右侧额外内容默认样式 32 | $right-text-size : 12px; 33 | $right-text-color : #999; 34 | $right-text-weight : normal; 35 | 36 | // 角标样式 37 | // nvue 页面不支持修改圆点位置以及大小 38 | // 角标在左侧时,角标的位置,默认为 0 ,负数左/下移动,正数右/上移动 39 | $badge-left: 0px; 40 | $badge-top: 0px; 41 | 42 | // 显示圆点时,圆点大小 43 | $dot-width: 10px; 44 | $dot-height: 10px; 45 | 46 | // 显示角标时,角标大小和字体大小 47 | $badge-size : 18px; 48 | $badge-font : 12px; 49 | // 显示角标时,角标前景色 50 | $badge-color : #fff; 51 | // 显示角标时,角标背景色 52 | $badge-background-color : #ff5a5f; 53 | // 显示角标时,角标左右间距 54 | $badge-space : 6px; 55 | 56 | // 状态样式 57 | // 选中颜色 58 | $hover : #f5f5f5; 59 | -------------------------------------------------------------------------------- /components/uni-ui/uni-list/uni-refresh.vue: -------------------------------------------------------------------------------- 1 | 13 | 14 | 59 | 60 | 66 | -------------------------------------------------------------------------------- /components/uni-ui/uni-popup/message.js: -------------------------------------------------------------------------------- 1 | export default { 2 | created() { 3 | if (this.type === 'message') { 4 | // 不显示遮罩 5 | this.maskShow = false 6 | // 获取子组件对象 7 | this.childrenMsg = null 8 | } 9 | }, 10 | methods: { 11 | customOpen() { 12 | if (this.childrenMsg) { 13 | this.childrenMsg.open() 14 | } 15 | }, 16 | customClose() { 17 | if (this.childrenMsg) { 18 | this.childrenMsg.close() 19 | } 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /components/uni-ui/uni-popup/popup.js: -------------------------------------------------------------------------------- 1 | import message from './message.js'; 2 | // 定义 type 类型:弹出类型:top/bottom/center 3 | const config = { 4 | // 顶部弹出 5 | top:'top', 6 | // 底部弹出 7 | bottom:'bottom', 8 | // 居中弹出 9 | center:'center', 10 | // 消息提示 11 | message:'top', 12 | // 对话框 13 | dialog:'center', 14 | // 分享 15 | share:'bottom', 16 | } 17 | 18 | export default { 19 | data(){ 20 | return { 21 | config:config 22 | } 23 | }, 24 | mixins: [message] 25 | } 26 | -------------------------------------------------------------------------------- /components/uni-ui/uni-popup/share.js: -------------------------------------------------------------------------------- 1 | export default { 2 | created() { 3 | if (this.type === 'share') { 4 | // 关闭点击 5 | this.mkclick = false 6 | } 7 | }, 8 | methods: { 9 | customOpen() { 10 | console.log('share 打开了'); 11 | }, 12 | customClose() { 13 | console.log('share 关闭了'); 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /components/uni-ui/uni-status-bar/uni-status-bar.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 18 | 19 | 26 | -------------------------------------------------------------------------------- /components/uni-ui/uni-swipe-action/uni-swipe-action.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /components/uni-ui/uni-test/uni-test.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 16 | 17 | 20 | -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import App from './App' 3 | import '@/static/fonts/iconfont.css' 4 | import store from './store' 5 | 6 | Vue.config.productionTip = false 7 | 8 | App.mpType = 'app' 9 | 10 | Vue.filter("formatDate", function(data) { 11 | const date = new Date(data) 12 | const day = date.getMonth().toString().padStart(2, '0') + '-' + date.getDay().toString().padStart(2, '0') 13 | return date.getFullYear() + '-' + day 14 | }) 15 | 16 | const app = new Vue({ 17 | store, 18 | ...App 19 | }) 20 | app.$mount() 21 | -------------------------------------------------------------------------------- /pages/cart/cart.vue: -------------------------------------------------------------------------------- 1 | 10 | 11 | 33 | 34 | 37 | -------------------------------------------------------------------------------- /pages/contact/contact.vue: -------------------------------------------------------------------------------- 1 | 12 | 13 | 14 | 39 | 40 | 63 | -------------------------------------------------------------------------------- /pages/goods/goods.vue: -------------------------------------------------------------------------------- 1 | 8 | 9 | 63 | -------------------------------------------------------------------------------- /pages/member/member.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 19 | 20 | 23 | -------------------------------------------------------------------------------- /pages/news/news.vue: -------------------------------------------------------------------------------- 1 | 16 | 17 | 54 | 55 | 56 | 76 | -------------------------------------------------------------------------------- /pages/newsdetail/newsdetail.vue: -------------------------------------------------------------------------------- 1 | 21 | 22 | 54 | 55 | 80 | -------------------------------------------------------------------------------- /pages/videos/videos.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 19 | 20 | 23 | -------------------------------------------------------------------------------- /static/fonts/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/static/fonts/iconfont.eot -------------------------------------------------------------------------------- /static/fonts/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/static/fonts/iconfont.ttf -------------------------------------------------------------------------------- /static/fonts/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/static/fonts/iconfont.woff -------------------------------------------------------------------------------- /static/fonts/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/static/fonts/iconfont.woff2 -------------------------------------------------------------------------------- /static/hmlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/static/hmlogo.png -------------------------------------------------------------------------------- /static/icon/cart-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/static/icon/cart-active.png -------------------------------------------------------------------------------- /static/icon/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/static/icon/cart.png -------------------------------------------------------------------------------- /static/icon/home-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/static/icon/home-active.png -------------------------------------------------------------------------------- /static/icon/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/static/icon/home.png -------------------------------------------------------------------------------- /static/icon/member-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/static/icon/member-active.png -------------------------------------------------------------------------------- /static/icon/member.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/static/icon/member.png -------------------------------------------------------------------------------- /static/icon/news-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/static/icon/news-active.png -------------------------------------------------------------------------------- /static/icon/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/static/icon/news.png -------------------------------------------------------------------------------- /static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/static/logo.png -------------------------------------------------------------------------------- /static/uni.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/static/uni.ttf -------------------------------------------------------------------------------- /store/index.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import Vuex from 'vuex' 3 | Vue.use(Vuex) 4 | const store = new Vuex.Store({ 5 | state: { 6 | carts: uni.getStorageSync('carts')||[] 7 | }, 8 | mutations: { 9 | addToCarts(state, good) { 10 | var currentGood = state.carts.find(item => { 11 | if (item.id == good.id) { 12 | return item; 13 | } 14 | }) 15 | if(currentGood){ 16 | currentGood.buynum += good.buynum 17 | } 18 | else{ 19 | state.carts.push(good) 20 | } 21 | uni.setStorageSync('carts',state.carts) 22 | } 23 | }, 24 | actions: {} 25 | }) 26 | export default store 27 | -------------------------------------------------------------------------------- /uni.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * 这里是uni-app内置的常用样式变量 3 | * 4 | * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 5 | * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App 6 | * 7 | */ 8 | 9 | /** 10 | * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 11 | * 12 | * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 13 | */ 14 | 15 | /* 颜色变量 */ 16 | 17 | /* 行为相关颜色 */ 18 | $uni-color-primary: #007aff; 19 | $uni-color-success: #4cd964; 20 | $uni-color-warning: #f0ad4e; 21 | $uni-color-error: #dd524d; 22 | 23 | /* 文字基本颜色 */ 24 | $uni-text-color:#333;//基本色 25 | $uni-text-color-inverse:#fff;//反色 26 | $uni-text-color-grey:#999;//辅助灰色,如加载更多的提示信息 27 | $uni-text-color-placeholder: #808080; 28 | $uni-text-color-disable:#c0c0c0; 29 | 30 | /* 背景颜色 */ 31 | $uni-bg-color:#ffffff; 32 | $uni-bg-color-grey:#f8f8f8; 33 | $uni-bg-color-hover:#f1f1f1;//点击状态颜色 34 | $uni-bg-color-mask:rgba(0, 0, 0, 0.4);//遮罩颜色 35 | 36 | /* 边框颜色 */ 37 | $uni-border-color:#c8c7cc; 38 | 39 | /* 尺寸变量 */ 40 | 41 | /* 文字尺寸 */ 42 | $uni-font-size-sm:24upx; 43 | $uni-font-size-base:28upx; 44 | $uni-font-size-lg:32upx; 45 | 46 | /* 图片尺寸 */ 47 | $uni-img-size-sm:40upx; 48 | $uni-img-size-base:52upx; 49 | $uni-img-size-lg:80upx; 50 | 51 | /* Border Radius */ 52 | $uni-border-radius-sm: 4upx; 53 | $uni-border-radius-base: 6upx; 54 | $uni-border-radius-lg: 12upx; 55 | $uni-border-radius-circle: 50%; 56 | 57 | /* 水平间距 */ 58 | $uni-spacing-row-sm: 10px; 59 | $uni-spacing-row-base: 20upx; 60 | $uni-spacing-row-lg: 30upx; 61 | 62 | /* 垂直间距 */ 63 | $uni-spacing-col-sm: 8upx; 64 | $uni-spacing-col-base: 16upx; 65 | $uni-spacing-col-lg: 24upx; 66 | 67 | /* 透明度 */ 68 | $uni-opacity-disabled: 0.3; // 组件禁用态的透明度 69 | 70 | /* 文章场景相关 */ 71 | $uni-color-title: #2C405A; // 文章标题颜色 72 | $uni-font-size-title:40upx; 73 | $uni-color-subtitle: #555555; // 二级标题颜色 74 | $uni-font-size-subtitle:36upx; 75 | $uni-color-paragraph: #3F536E; // 文章段落颜色 76 | $uni-font-size-paragraph:30upx; -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/app.js: -------------------------------------------------------------------------------- 1 | 2 | require('./common/runtime.js') 3 | require('./common/vendor.js') 4 | require('./common/main.js') -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "pages": [ 3 | "pages/index/index", 4 | "pages/news/news", 5 | "pages/member/member", 6 | "pages/cart/cart", 7 | "pages/goods/goods", 8 | "pages/pics/pics", 9 | "pages/contact/contact", 10 | "pages/videos/videos", 11 | "pages/newsdetail/newsdetail", 12 | "pages/goodsdetail/goodsdetail" 13 | ], 14 | "window": { 15 | "navigationBarTextStyle": "white", 16 | "navigationBarTitleText": "极客商城", 17 | "navigationBarBackgroundColor": "#1989fa", 18 | "backgroundColor": "#F8F8F8" 19 | }, 20 | "tabBar": { 21 | "list": [ 22 | { 23 | "pagePath": "pages/index/index", 24 | "text": "首页", 25 | "iconPath": "static/icon/home.png", 26 | "selectedIconPath": "static/icon/home-active.png" 27 | }, 28 | { 29 | "pagePath": "pages/news/news", 30 | "text": "新闻", 31 | "iconPath": "static/icon/news.png", 32 | "selectedIconPath": "static/icon/news-active.png" 33 | }, 34 | { 35 | "pagePath": "pages/cart/cart", 36 | "text": "购物车", 37 | "iconPath": "static/icon/cart.png", 38 | "selectedIconPath": "static/icon/cart-active.png" 39 | }, 40 | { 41 | "pagePath": "pages/member/member", 42 | "text": "我的", 43 | "iconPath": "static/icon/member.png", 44 | "selectedIconPath": "static/icon/member-active.png" 45 | } 46 | ] 47 | }, 48 | "nvueCompiler": "uni-app", 49 | "renderer": "auto", 50 | "splashscreen": { 51 | "alwaysShowBeforeRender": true, 52 | "autoclose": false 53 | }, 54 | "appname": "极客商城", 55 | "compilerVersion": "2.4.6", 56 | "usingComponents": {} 57 | } -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/app.wxss: -------------------------------------------------------------------------------- 1 | @import './common/main.wxss'; 2 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/common/main.js: -------------------------------------------------------------------------------- 1 | (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["common/main"],{"0f1b":function(t,n,e){"use strict";e.r(n);var o=e("5006"),u=e.n(o);for(var r in o)"default"!==r&&function(t){e.d(n,t,function(){return o[t]})}(r);n["default"]=u.a},"1d80":function(t,n,e){"use strict";var o=e("266d"),u=e.n(o);u.a},"266d":function(t,n,e){},5006:function(t,n,e){"use strict";(function(t){Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var e={onLaunch:function(){console.log(t("App Launch"," at App.vue:4"))},onShow:function(){console.log(t("App Show"," at App.vue:7"))},onHide:function(){console.log(t("App Hide"," at App.vue:10"))}};n.default=e}).call(this,e("0de9")["default"])},"57c9":function(t,n,e){"use strict";(function(t){e("8181"),e("921b");var n=r(e("66fd")),o=r(e("7515"));e("259c");var u=r(e("284b"));function r(t){return t&&t.__esModule?t:{default:t}}function a(t){for(var n=1;n推荐商品{{item.sell_price}}{{item.market_price}}{{item.title}} -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/components/uni-ui/uni-badge/uni-badge.js: -------------------------------------------------------------------------------- 1 | (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["components/uni-ui/uni-badge/uni-badge"],{"429f":function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var u={name:"UniBadge",props:{type:{type:String,default:"default"},inverted:{type:Boolean,default:!1},text:{type:[String,Number],default:""},size:{type:String,default:"normal"}},data:function(){return{badgeStyle:""}},watch:{text:function(){this.setStyle()}},mounted:function(){this.setStyle()},methods:{setStyle:function(){this.badgeStyle="width: ".concat(8*String(this.text).length+12,"px")},onClick:function(){this.$emit("click")}}};e.default=u},6212:function(t,e,n){"use strict";var u=n("da7e"),a=n.n(u);a.a},6656:function(t,e,n){"use strict";var u=function(){var t=this,e=t.$createElement;t._self._c},a=[];n.d(e,"a",function(){return u}),n.d(e,"b",function(){return a})},8772:function(t,e,n){"use strict";n.r(e);var u=n("6656"),a=n("ac82");for(var i in a)"default"!==i&&function(t){n.d(e,t,function(){return a[t]})}(i);n("6212");var c=n("2877"),r=Object(c["a"])(a["default"],u["a"],u["b"],!1,null,"cfc427da",null);e["default"]=r.exports},ac82:function(t,e,n){"use strict";n.r(e);var u=n("429f"),a=n.n(u);for(var i in u)"default"!==i&&function(t){n.d(e,t,function(){return u[t]})}(i);e["default"]=a.a},da7e:function(t,e,n){}}]); 2 | ;(global["webpackJsonp"] = global["webpackJsonp"] || []).push([ 3 | 'components/uni-ui/uni-badge/uni-badge-create-component', 4 | { 5 | 'components/uni-ui/uni-badge/uni-badge-create-component':(function(module, exports, __webpack_require__){ 6 | __webpack_require__('6e42')['createComponent'](__webpack_require__("8772")) 7 | }) 8 | }, 9 | [['components/uni-ui/uni-badge/uni-badge-create-component']] 10 | ]); 11 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/components/uni-ui/uni-badge/uni-badge.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/components/uni-ui/uni-badge/uni-badge.wxml: -------------------------------------------------------------------------------- 1 | {{text}} -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/components/uni-ui/uni-goods-nav/uni-goods-nav.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "uni-icons": "/components/uni-ui/uni-icons/uni-icons" 4 | }, 5 | "component": true 6 | } -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/components/uni-ui/uni-goods-nav/uni-goods-nav.wxml: -------------------------------------------------------------------------------- 1 | {{item.text}}{{item.info}}{{item.text}} -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/components/uni-ui/uni-grid-item/uni-grid-item.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/components/uni-ui/uni-grid-item/uni-grid-item.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/components/uni-ui/uni-grid-item/uni-grid-item.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /** 3 | * 这里是uni-app内置的常用样式变量 4 | * 5 | * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 6 | * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App 7 | * 8 | */ 9 | /** 10 | * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 11 | * 12 | * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 13 | */ 14 | /* 颜色变量 */ 15 | /* 行为相关颜色 */ 16 | /* 文字基本颜色 */ 17 | /* 背景颜色 */ 18 | /* 边框颜色 */ 19 | /* 尺寸变量 */ 20 | /* 文字尺寸 */ 21 | /* 图片尺寸 */ 22 | /* Border Radius */ 23 | /* 水平间距 */ 24 | /* 垂直间距 */ 25 | /* 透明度 */ 26 | /* 文章场景相关 */ 27 | .uni-grid-item.data-v-1aad4dd4 { 28 | height: 100%; 29 | display: -webkit-box; 30 | display: -webkit-flex; 31 | display: flex; 32 | } 33 | .uni-grid-item__box.data-v-1aad4dd4 { 34 | display: -webkit-box; 35 | display: -webkit-flex; 36 | display: flex; 37 | width: 100%; 38 | position: relative; 39 | -webkit-box-flex: 1; 40 | -webkit-flex: 1; 41 | flex: 1; 42 | -webkit-box-orient: vertical; 43 | -webkit-box-direction: normal; 44 | -webkit-flex-direction: column; 45 | flex-direction: column; 46 | } 47 | .uni-grid-item--border.data-v-1aad4dd4 { 48 | position: relative; 49 | z-index: 0; 50 | border-bottom: 1px #c8c7cc solid; 51 | border-right: 1px #c8c7cc solid; 52 | } 53 | .uni-grid-item--border-top.data-v-1aad4dd4 { 54 | position: relative; 55 | border-top: 1px #c8c7cc solid; 56 | z-index: 0; 57 | } 58 | .uni-highlight.data-v-1aad4dd4:active { 59 | background-color: #f1f1f1; 60 | } 61 | 62 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/components/uni-ui/uni-grid/uni-grid.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/components/uni-ui/uni-grid/uni-grid.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/components/uni-ui/uni-grid/uni-grid.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /** 3 | * 这里是uni-app内置的常用样式变量 4 | * 5 | * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 6 | * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App 7 | * 8 | */ 9 | /** 10 | * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 11 | * 12 | * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 13 | */ 14 | /* 颜色变量 */ 15 | /* 行为相关颜色 */ 16 | /* 文字基本颜色 */ 17 | /* 背景颜色 */ 18 | /* 边框颜色 */ 19 | /* 尺寸变量 */ 20 | /* 文字尺寸 */ 21 | /* 图片尺寸 */ 22 | /* Border Radius */ 23 | /* 水平间距 */ 24 | /* 垂直间距 */ 25 | /* 透明度 */ 26 | /* 文章场景相关 */ 27 | .uni-grid-wrap.data-v-fc8a8e4e { 28 | display: -webkit-box; 29 | display: -webkit-flex; 30 | display: flex; 31 | -webkit-box-flex: 1; 32 | -webkit-flex: 1; 33 | flex: 1; 34 | -webkit-box-orient: vertical; 35 | -webkit-box-direction: normal; 36 | -webkit-flex-direction: column; 37 | flex-direction: column; 38 | } 39 | .uni-grid.data-v-fc8a8e4e { 40 | display: -webkit-box; 41 | display: -webkit-flex; 42 | display: flex; 43 | -webkit-box-orient: horizontal; 44 | -webkit-box-direction: normal; 45 | -webkit-flex-direction: row; 46 | flex-direction: row; 47 | -webkit-flex-wrap: wrap; 48 | flex-wrap: wrap; 49 | } 50 | .uni-grid--border.data-v-fc8a8e4e { 51 | position: relative; 52 | z-index: 1; 53 | border-left: 1px #c8c7cc solid; 54 | } 55 | 56 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/components/uni-ui/uni-icons/uni-icons.js: -------------------------------------------------------------------------------- 1 | (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["components/uni-ui/uni-icons/uni-icons"],{"0125":function(t,n,e){},"250b":function(t,n,e){"use strict";var u=e("0125"),c=e.n(u);c.a},"311d":function(t,n,e){"use strict";e.r(n);var u=e("af2e"),c=e("c622");for(var i in c)"default"!==i&&function(t){e.d(n,t,function(){return c[t]})}(i);e("250b");var r=e("2877"),a=Object(r["a"])(c["default"],u["a"],u["b"],!1,null,"0e939c6a",null);n["default"]=a.exports},af2e:function(t,n,e){"use strict";var u=function(){var t=this,n=t.$createElement;t._self._c},c=[];e.d(n,"a",function(){return u}),e.d(n,"b",function(){return c})},c622:function(t,n,e){"use strict";e.r(n);var u=e("ce33"),c=e.n(u);for(var i in u)"default"!==i&&function(t){e.d(n,t,function(){return u[t]})}(i);n["default"]=c.a},ce33:function(t,n,e){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var u=c(e("19b3"));function c(t){return t&&t.__esModule?t:{default:t}}var i={name:"UniIcons",props:{type:{type:String,default:""},color:{type:String,default:"#333333"},size:{type:[Number,String],default:16},customIcons:{type:String,default:""}},data:function(){return{icons:u.default}},methods:{_onClick:function(){this.$emit("click")}}};n.default=i}}]); 2 | ;(global["webpackJsonp"] = global["webpackJsonp"] || []).push([ 3 | 'components/uni-ui/uni-icons/uni-icons-create-component', 4 | { 5 | 'components/uni-ui/uni-icons/uni-icons-create-component':(function(module, exports, __webpack_require__){ 6 | __webpack_require__('6e42')['createComponent'](__webpack_require__("311d")) 7 | }) 8 | }, 9 | [['components/uni-ui/uni-icons/uni-icons-create-component']] 10 | ]); 11 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/components/uni-ui/uni-icons/uni-icons.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/components/uni-ui/uni-icons/uni-icons.wxml: -------------------------------------------------------------------------------- 1 | {{icons[type]}} -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/components/uni-ui/uni-list-item/uni-list-item.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "uni-icons": "/components/uni-ui/uni-icons/uni-icons", 4 | "uni-badge": "/components/uni-ui/uni-badge/uni-badge" 5 | }, 6 | "component": true 7 | } -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/components/uni-ui/uni-list/uni-list.js: -------------------------------------------------------------------------------- 1 | (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["components/uni-ui/uni-list/uni-list"],{"17e5":function(t,n,e){"use strict";e.r(n);var o=e("4578"),i=e("40a3");for(var u in i)"default"!==u&&function(t){e.d(n,t,function(){return i[t]})}(u);e("d291");var r=e("2877"),l=Object(r["a"])(i["default"],o["a"],o["b"],!1,null,null,null);n["default"]=l.exports},"40a3":function(t,n,e){"use strict";e.r(n);var o=e("428c"),i=e.n(o);for(var u in o)"default"!==u&&function(t){e.d(n,t,function(){return o[t]})}(u);n["default"]=i.a},"428c":function(t,n,e){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var o={name:"UniList","mp-weixin":{options:{multipleSlots:!1}},props:{enableBackToTop:{type:[Boolean,String],default:!1},scrollY:{type:[Boolean,String],default:!1},border:{type:Boolean,default:!0}},provide:function(){return{list:this}},created:function(){this.firstChildAppend=!1},methods:{loadMore:function(t){this.$emit("scrolltolower")}}};n.default=o},4578:function(t,n,e){"use strict";var o=function(){var t=this,n=t.$createElement;t._self._c},i=[];e.d(n,"a",function(){return o}),e.d(n,"b",function(){return i})},6418:function(t,n,e){},d291:function(t,n,e){"use strict";var o=e("6418"),i=e.n(o);i.a}}]); 2 | ;(global["webpackJsonp"] = global["webpackJsonp"] || []).push([ 3 | 'components/uni-ui/uni-list/uni-list-create-component', 4 | { 5 | 'components/uni-ui/uni-list/uni-list-create-component':(function(module, exports, __webpack_require__){ 6 | __webpack_require__('6e42')['createComponent'](__webpack_require__("17e5")) 7 | }) 8 | }, 9 | [['components/uni-ui/uni-list/uni-list-create-component']] 10 | ]); 11 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/components/uni-ui/uni-list/uni-list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/components/uni-ui/uni-list/uni-list.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/components/uni-ui/uni-list/uni-list.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /** 3 | * 这里是uni-app内置的常用样式变量 4 | * 5 | * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 6 | * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App 7 | * 8 | */ 9 | /** 10 | * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 11 | * 12 | * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 13 | */ 14 | /* 颜色变量 */ 15 | /* 行为相关颜色 */ 16 | /* 文字基本颜色 */ 17 | /* 背景颜色 */ 18 | /* 边框颜色 */ 19 | /* 尺寸变量 */ 20 | /* 文字尺寸 */ 21 | /* 图片尺寸 */ 22 | /* Border Radius */ 23 | /* 水平间距 */ 24 | /* 垂直间距 */ 25 | /* 透明度 */ 26 | /* 文章场景相关 */ 27 | .uni-list { 28 | display: -webkit-box; 29 | display: -webkit-flex; 30 | display: flex; 31 | background-color: #ffffff; 32 | position: relative; 33 | -webkit-box-orient: vertical; 34 | -webkit-box-direction: normal; 35 | -webkit-flex-direction: column; 36 | flex-direction: column; 37 | } 38 | .uni-list--border { 39 | position: relative; 40 | z-index: -1; 41 | } 42 | .uni-list--border-top { 43 | position: absolute; 44 | top: 0; 45 | right: 0; 46 | left: 0; 47 | height: 1px; 48 | -webkit-transform: scaleY(0.5); 49 | transform: scaleY(0.5); 50 | background-color: #c8c7cc; 51 | z-index: 1; 52 | } 53 | .uni-list--border-bottom { 54 | position: absolute; 55 | bottom: 0; 56 | right: 0; 57 | left: 0; 58 | height: 1px; 59 | -webkit-transform: scaleY(0.5); 60 | transform: scaleY(0.5); 61 | background-color: #c8c7cc; 62 | } 63 | 64 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/components/uni-ui/uni-load-more/uni-load-more.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/cart/cart.js: -------------------------------------------------------------------------------- 1 | (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/cart/cart"],{"1d4b":function(t,e,n){"use strict";var r=function(){var t=this,e=t.$createElement;t._self._c},u=[];n.d(e,"a",function(){return r}),n.d(e,"b",function(){return u})},5221:function(t,e,n){"use strict";(function(t){n("8181"),n("921b");r(n("66fd"));var e=r(n("b2cf"));function r(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("6e42")["createPage"])},8071:function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var r=n("2f62");function u(t){for(var e=1;e{{item.name}}{{item.buynum}}{{item.sellprice}} -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/contact/contact.js: -------------------------------------------------------------------------------- 1 | (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/contact/contact"],{"0758":function(t,n,e){},"127b":function(t,n,e){"use strict";var u=e("0758"),a=e.n(u);a.a},2134:function(t,n,e){"use strict";var u=function(){var t=this,n=t.$createElement;t._self._c},a=[];e.d(n,"a",function(){return u}),e.d(n,"b",function(){return a})},"43ab":function(t,n,e){"use strict";(function(t){e("8181"),e("921b");u(e("66fd"));var n=u(e("9e47"));function u(t){return t&&t.__esModule?t:{default:t}}t(n.default)}).call(this,e("6e42")["createPage"])},"9e47":function(t,n,e){"use strict";e.r(n);var u=e("2134"),a=e("e2c4");for(var o in a)"default"!==o&&function(t){e.d(n,t,function(){return a[t]})}(o);e("127b");var c=e("2877"),r=Object(c["a"])(a["default"],u["a"],u["b"],!1,null,null,null);n["default"]=r.exports},b23b:function(t,n,e){"use strict";(function(t){Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var e={data:function(){return{longitude:120.37138,latitude:31.48795,scale:13,markers:[{longitude:120.37138,latitude:31.48795,iconPath:"../../static/hmlogo.png",width:30,height:30}]}},methods:{phone:function(){t.makePhoneCall({phoneNumber:"0510-81018661"})}}};n.default=e}).call(this,e("6e42")["default"])},e2c4:function(t,n,e){"use strict";e.r(n);var u=e("b23b"),a=e.n(u);for(var o in u)"default"!==o&&function(t){e.d(n,t,function(){return u[t]})}(o);n["default"]=a.a}},[["43ab","common/runtime","common/vendor"]]]); -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/contact/contact.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "关于我们", 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/contact/contact.wxml: -------------------------------------------------------------------------------- 1 | 无锡极客信息技术有限公司:0510-81018661 ( 点击拨打 )无锡新吴区震泽路18号国家软件园巨蟹座B座一楼 -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/contact/contact.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /** 3 | * 这里是uni-app内置的常用样式变量 4 | * 5 | * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 6 | * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App 7 | * 8 | */ 9 | /** 10 | * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 11 | * 12 | * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 13 | */ 14 | /* 颜色变量 */ 15 | /* 行为相关颜色 */ 16 | /* 文字基本颜色 */ 17 | /* 背景颜色 */ 18 | /* 边框颜色 */ 19 | /* 尺寸变量 */ 20 | /* 文字尺寸 */ 21 | /* 图片尺寸 */ 22 | /* Border Radius */ 23 | /* 水平间距 */ 24 | /* 垂直间距 */ 25 | /* 透明度 */ 26 | /* 文章场景相关 */ 27 | .contact .img { 28 | width: 750rpx; 29 | height: 320rpx; 30 | } 31 | .contact .info { 32 | padding: 10rpx 20rpx; 33 | font-size: 30rpx; 34 | } 35 | .contact .info view { 36 | line-height: 80rpx; 37 | border-bottom: 1px solid #eee; 38 | } 39 | .contact .map { 40 | width: 750rpx; 41 | height: 750rpx; 42 | } 43 | 44 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/goods/goods.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "极客超市", 3 | "enablePullDownRefresh": true, 4 | "usingComponents": { 5 | "uni-load-more": "/components/uni-ui/uni-load-more/uni-load-more", 6 | "goodlist": "/components/goodlist/goodlist" 7 | } 8 | } -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/goods/goods.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/goodsdetail/goodsdetail.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "商品详情", 3 | "usingComponents": { 4 | "uni-goods-nav": "/components/uni-ui/uni-goods-nav/uni-goods-nav" 5 | } 6 | } -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/goodsdetail/goodsdetail.wxml: -------------------------------------------------------------------------------- 1 | {{"¥"+info.sell_price}}{{"¥"+info.market_price}}{{info.title}}{{"货号:"+info.goods_no}}{{"库存:"+info.stock_quantity}}详情介绍 -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/goodsdetail/goodsdetail.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /** 3 | * 这里是uni-app内置的常用样式变量 4 | * 5 | * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 6 | * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App 7 | * 8 | */ 9 | /** 10 | * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 11 | * 12 | * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 13 | */ 14 | /* 颜色变量 */ 15 | /* 行为相关颜色 */ 16 | /* 文字基本颜色 */ 17 | /* 背景颜色 */ 18 | /* 边框颜色 */ 19 | /* 尺寸变量 */ 20 | /* 文字尺寸 */ 21 | /* 图片尺寸 */ 22 | /* Border Radius */ 23 | /* 水平间距 */ 24 | /* 垂直间距 */ 25 | /* 透明度 */ 26 | /* 文章场景相关 */ 27 | .goods swiper { 28 | height: 700rpx; 29 | } 30 | .goods swiper image { 31 | width: 100%; 32 | height: 100%; 33 | } 34 | .good_info { 35 | padding: 10px; 36 | position: relative; 37 | } 38 | .good_info .price { 39 | font-size: 35rpx; 40 | color: pink; 41 | line-height: 80rpx; 42 | } 43 | .good_info .price text:nth-child(2) { 44 | color: #ccc; 45 | font-size: 28rpx; 46 | text-decoration: line-through; 47 | margin-left: 20rpx; 48 | } 49 | .good_info .goods_title { 50 | font-size: 32rpx; 51 | line-height: 60rpx; 52 | } 53 | .good_info .goods_nav { 54 | position: fixed; 55 | bottom: 0; 56 | width: 100%; 57 | } 58 | .good_detail { 59 | padding-bottom: 50px; 60 | } 61 | .good_detail .tit { 62 | font-size: 32rpx; 63 | padding-left: 10px; 64 | border-bottom: 1px solid #eee; 65 | line-height: 70rpx; 66 | } 67 | .good_detail .content { 68 | padding: 10px; 69 | font-size: 28rpx; 70 | color: #333; 71 | line-height: 50rpx; 72 | } 73 | 74 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "首页", 3 | "onReachBottomDistance": 20, 4 | "usingComponents": { 5 | "uni-badge": "/components/uni-ui/uni-badge/uni-badge", 6 | "uni-grid": "/components/uni-ui/uni-grid/uni-grid", 7 | "uni-grid-item": "/components/uni-ui/uni-grid-item/uni-grid-item", 8 | "uni-load-more": "/components/uni-ui/uni-load-more/uni-load-more", 9 | "goodlist": "/components/goodlist/goodlist" 10 | } 11 | } -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/index/index.wxml: -------------------------------------------------------------------------------- 1 | {{item.title}} -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/index/index.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /** 3 | * 这里是uni-app内置的常用样式变量 4 | * 5 | * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 6 | * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App 7 | * 8 | */ 9 | /** 10 | * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 11 | * 12 | * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 13 | */ 14 | /* 颜色变量 */ 15 | /* 行为相关颜色 */ 16 | /* 文字基本颜色 */ 17 | /* 背景颜色 */ 18 | /* 边框颜色 */ 19 | /* 尺寸变量 */ 20 | /* 文字尺寸 */ 21 | /* 图片尺寸 */ 22 | /* Border Radius */ 23 | /* 水平间距 */ 24 | /* 垂直间距 */ 25 | /* 透明度 */ 26 | /* 文章场景相关 */ 27 | .home swiper { 28 | height: 380rpx; 29 | } 30 | .home swiper image { 31 | width: 750rpx; 32 | height: 380rpx; 33 | } 34 | .home .uni-grid-item { 35 | text-align: center; 36 | } 37 | .home .uni-grid-item .iconfont { 38 | background: pink; 39 | line-height: 90rpx; 40 | width: 100rpx; 41 | height: 100rpx; 42 | border-radius: 90px; 43 | margin: 10rpx auto; 44 | font-size: 25px; 45 | } 46 | 47 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/member/member.js: -------------------------------------------------------------------------------- 1 | (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/member/member"],{"1b8a":function(e,t,n){"use strict";(function(e){n("8181"),n("921b");u(n("66fd"));var t=u(n("9473"));function u(e){return e&&e.__esModule?e:{default:e}}e(t.default)}).call(this,n("6e42")["createPage"])},4624:function(e,t,n){"use strict";n.r(t);var u=n("ddfe"),r=n.n(u);for(var a in u)"default"!==a&&function(e){n.d(t,e,function(){return u[e]})}(a);t["default"]=r.a},"5e18":function(e,t,n){"use strict";var u=function(){var e=this,t=e.$createElement;e._self._c},r=[];n.d(t,"a",function(){return u}),n.d(t,"b",function(){return r})},9473:function(e,t,n){"use strict";n.r(t);var u=n("5e18"),r=n("4624");for(var a in r)"default"!==a&&function(e){n.d(t,e,function(){return r[e]})}(a);var o=n("2877"),f=Object(o["a"])(r["default"],u["a"],u["b"],!1,null,null,null);t["default"]=f.exports},ddfe:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var u={data:function(){return{}},methods:{}};t.default=u}},[["1b8a","common/runtime","common/vendor"]]]); -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/member/member.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/member/member.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/news/news.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "咨询列表", 3 | "usingComponents": { 4 | "uni-list": "/components/uni-ui/uni-list/uni-list", 5 | "uni-list-item": "/components/uni-ui/uni-list-item/uni-list-item" 6 | } 7 | } -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/news/news.wxml: -------------------------------------------------------------------------------- 1 | {{item.$orig.title}}{{"发表时间:"+item.f0}}{{"浏览:"+(item.$orig.click+123)+"次"}} -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/news/news.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /** 3 | * 这里是uni-app内置的常用样式变量 4 | * 5 | * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 6 | * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App 7 | * 8 | */ 9 | /** 10 | * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 11 | * 12 | * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 13 | */ 14 | /* 颜色变量 */ 15 | /* 行为相关颜色 */ 16 | /* 文字基本颜色 */ 17 | /* 背景颜色 */ 18 | /* 边框颜色 */ 19 | /* 尺寸变量 */ 20 | /* 文字尺寸 */ 21 | /* 图片尺寸 */ 22 | /* Border Radius */ 23 | /* 水平间距 */ 24 | /* 垂直间距 */ 25 | /* 透明度 */ 26 | /* 文章场景相关 */ 27 | .item { 28 | padding: 5px 10px; 29 | position: relative; 30 | } 31 | .item .tit { 32 | font-size: 35rpx; 33 | font-weight: 800; 34 | } 35 | .item .info { 36 | font-size: 26rpx; 37 | margin-top: 20rpx; 38 | } 39 | .item .info text:nth-child(2) { 40 | margin-left: 20px; 41 | } 42 | 43 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/newsdetail/newsdetail.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "咨询详情", 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/newsdetail/newsdetail.wxml: -------------------------------------------------------------------------------- 1 | {{''+newsDetail.title+''}}{{"发表时间:"+$root.f0}}{{"浏览:"+newsDetail.click}} -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/newsdetail/newsdetail.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /** 3 | * 这里是uni-app内置的常用样式变量 4 | * 5 | * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 6 | * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App 7 | * 8 | */ 9 | /** 10 | * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 11 | * 12 | * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 13 | */ 14 | /* 颜色变量 */ 15 | /* 行为相关颜色 */ 16 | /* 文字基本颜色 */ 17 | /* 背景颜色 */ 18 | /* 边框颜色 */ 19 | /* 尺寸变量 */ 20 | /* 文字尺寸 */ 21 | /* 图片尺寸 */ 22 | /* Border Radius */ 23 | /* 水平间距 */ 24 | /* 垂直间距 */ 25 | /* 透明度 */ 26 | /* 文章场景相关 */ 27 | .news_detail { 28 | padding: 15rpx; 29 | } 30 | .news_detail .news_title { 31 | text-align: center; 32 | font-size: 35rpx; 33 | font-weight: 800; 34 | padding: 15rpx; 35 | } 36 | .news_detail .info { 37 | font-size: 28rpx; 38 | display: -webkit-box; 39 | display: -webkit-flex; 40 | display: flex; 41 | -webkit-box-pack: justify; 42 | -webkit-justify-content: space-between; 43 | justify-content: space-between; 44 | padding: 15rpx; 45 | } 46 | .news_detail .content { 47 | padding: 15rpx; 48 | font-size: 28rpx; 49 | color: gray; 50 | } 51 | 52 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/pics/pics.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/pics/pics.wxml: -------------------------------------------------------------------------------- 1 | {{''+item.title+''}}{{item.title}}暂无数据 -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/pics/pics.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /** 3 | * 这里是uni-app内置的常用样式变量 4 | * 5 | * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 6 | * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App 7 | * 8 | */ 9 | /** 10 | * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 11 | * 12 | * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 13 | */ 14 | /* 颜色变量 */ 15 | /* 行为相关颜色 */ 16 | /* 文字基本颜色 */ 17 | /* 背景颜色 */ 18 | /* 边框颜色 */ 19 | /* 尺寸变量 */ 20 | /* 文字尺寸 */ 21 | /* 图片尺寸 */ 22 | /* Border Radius */ 23 | /* 水平间距 */ 24 | /* 垂直间距 */ 25 | /* 透明度 */ 26 | /* 文章场景相关 */ 27 | .pics { 28 | height: 100%; 29 | display: -webkit-box; 30 | display: -webkit-flex; 31 | display: flex; 32 | } 33 | .pics .left { 34 | width: 200rpx; 35 | height: 100%; 36 | border-right: 1px solid #eee; 37 | } 38 | .pics .left view { 39 | height: 60px; 40 | line-height: 60px; 41 | color: #333; 42 | text-align: center; 43 | font-size: 30rpx; 44 | border-top: 1px solid #eee; 45 | } 46 | .pics .left .active { 47 | background: pink; 48 | color: #fff; 49 | } 50 | .pics .right { 51 | height: 100%; 52 | width: 520rpx; 53 | margin: 10rpx auto; 54 | } 55 | .pics .right .item image { 56 | width: 520rpx; 57 | height: 520rpx; 58 | border-radius: 5px; 59 | } 60 | .pics .right .item text { 61 | font-size: 30rpx; 62 | line-height: 60rpx; 63 | } 64 | 65 | -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/videos/videos.js: -------------------------------------------------------------------------------- 1 | (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/videos/videos"],{"23ec":function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var u={data:function(){return{}},methods:{}};e.default=u},"25cd":function(t,e,n){"use strict";n.r(e);var u=n("4297"),r=n("44ba");for(var a in r)"default"!==a&&function(t){n.d(e,t,function(){return r[t]})}(a);var c=n("2877"),o=Object(c["a"])(r["default"],u["a"],u["b"],!1,null,null,null);e["default"]=o.exports},4297:function(t,e,n){"use strict";var u=function(){var t=this,e=t.$createElement;t._self._c},r=[];n.d(e,"a",function(){return u}),n.d(e,"b",function(){return r})},"44ba":function(t,e,n){"use strict";n.r(e);var u=n("23ec"),r=n.n(u);for(var a in u)"default"!==a&&function(t){n.d(e,t,function(){return u[t]})}(a);e["default"]=r.a},bc93:function(t,e,n){"use strict";(function(t){n("8181"),n("921b");u(n("66fd"));var e=u(n("25cd"));function u(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("6e42")["createPage"])}},[["bc93","common/runtime","common/vendor"]]]); -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/videos/videos.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /unpackage/dist/build/.tmp/app-plus/pages/videos/videos.wxml: -------------------------------------------------------------------------------- 1 | 视频 -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/__uniappnvuecompiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/app-plus/__uniappnvuecompiler.js -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/__uniappsuccess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/app-plus/__uniappsuccess.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/pages/cart/cart.js: -------------------------------------------------------------------------------- 1 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/cart/cart.wxml') } })); -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/pages/contact/contact.js: -------------------------------------------------------------------------------- 1 | setCssToHead(["@charset \x22UTF-8\x22;\n.",[1],"contact .",[1],"img { width: ",[0,750],"; height: ",[0,320],"; }\n.",[1],"contact .",[1],"info { padding: ",[0,10]," ",[0,20],"; font-size: ",[0,30],"; }\n.",[1],"contact .",[1],"info wx-view { line-height: ",[0,80],"; border-bottom: 1px solid #eee; }\n.",[1],"contact .",[1],"map { width: ",[0,750],"; height: ",[0,750],"; }\n",],"Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./pages/contact/contact.wxss:35:16)",{path:"./pages/contact/contact.wxss"})(); 2 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/contact/contact.wxml') } })); -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/pages/goods/goods.js: -------------------------------------------------------------------------------- 1 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/goods/goods.wxml') } })); -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/pages/goodsdetail/goodsdetail.js: -------------------------------------------------------------------------------- 1 | setCssToHead(["@charset \x22UTF-8\x22;\n.",[1],"goods wx-swiper { height: ",[0,700],"; }\n.",[1],"goods wx-swiper wx-image { width: 100%; height: 100%; }\n.",[1],"good_info { padding: 10px; position: relative; }\n.",[1],"good_info .",[1],"price { font-size: ",[0,35],"; color: pink; line-height: ",[0,80],"; }\n.",[1],"good_info .",[1],"price wx-text:nth-child(2) { color: #ccc; font-size: ",[0,28],"; text-decoration: line-through; margin-left: ",[0,20],"; }\n.",[1],"good_info .",[1],"goods_title { font-size: ",[0,32],"; line-height: ",[0,60],"; }\n.",[1],"good_info .",[1],"goods_nav { position: fixed; bottom: 0; width: 100%; }\n.",[1],"good_detail { padding-bottom: 50px; }\n.",[1],"good_detail .",[1],"tit { font-size: ",[0,32],"; padding-left: 10px; border-bottom: 1px solid #eee; line-height: ",[0,70],"; }\n.",[1],"good_detail .",[1],"content { padding: 10px; font-size: ",[0,28],"; color: #333; line-height: ",[0,50],"; }\n",],"Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./pages/goodsdetail/goodsdetail.wxss:43:19)",{path:"./pages/goodsdetail/goodsdetail.wxss"})(); 2 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/goodsdetail/goodsdetail.wxml') } })); -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/pages/index/index.js: -------------------------------------------------------------------------------- 1 | setCssToHead(["@charset \x22UTF-8\x22;\n.",[1],"home wx-swiper { height: ",[0,380],"; }\n.",[1],"home wx-swiper wx-image { width: ",[0,750],"; height: ",[0,380],"; }\n.",[1],"home .",[1],"uni-grid-item { text-align: center; }\n.",[1],"home .",[1],"uni-grid-item .",[1],"iconfont { background: pink; line-height: ",[0,90],"; width: ",[0,100],"; height: ",[0,100],"; border-radius: 90px; margin: ",[0,10]," auto; font-size: 25px; }\n",],"Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./pages/index/index.wxss:30:7)",{path:"./pages/index/index.wxss"})(); 2 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/index/index.wxml') } })); -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/pages/member/member.js: -------------------------------------------------------------------------------- 1 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/member/member.wxml') } })); -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/pages/news/news.js: -------------------------------------------------------------------------------- 1 | setCssToHead(["@charset \x22UTF-8\x22;\n.",[1],"item { padding: 5px 10px; position: relative; }\n.",[1],"item .",[1],"tit { font-size: ",[0,35],"; font-weight: 800; }\n.",[1],"item .",[1],"info { font-size: ",[0,26],"; margin-top: ",[0,20],"; }\n.",[1],"item .",[1],"info wx-text:nth-child(2) { margin-left: 20px; }\n",],"Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./pages/news/news.wxss:39:13)",{path:"./pages/news/news.wxss"})(); 2 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/news/news.wxml') } })); -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/pages/newsdetail/newsdetail.js: -------------------------------------------------------------------------------- 1 | setCssToHead(["@charset \x22UTF-8\x22;\n.",[1],"news_detail { padding: ",[0,15],"; }\n.",[1],"news_detail .",[1],"news_title { text-align: center; font-size: ",[0,35],"; font-weight: 800; padding: ",[0,15],"; }\n.",[1],"news_detail .",[1],"info { font-size: ",[0,28],"; display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-pack: justify; -webkit-justify-content: space-between; justify-content: space-between; padding: ",[0,15],"; }\n.",[1],"news_detail .",[1],"content { padding: ",[0,15],"; font-size: ",[0,28],"; color: gray; }\n",],undefined,{path:"./pages/newsdetail/newsdetail.wxss"})(); 2 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/newsdetail/newsdetail.wxml') } })); -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/pages/pics/pics.js: -------------------------------------------------------------------------------- 1 | setCssToHead(["@charset \x22UTF-8\x22;\n.",[1],"pics { height: 100%; display: -webkit-box; display: -webkit-flex; display: flex; }\n.",[1],"pics .",[1],"left { width: ",[0,200],"; height: 100%; border-right: 1px solid #eee; }\n.",[1],"pics .",[1],"left wx-view { height: 60px; line-height: 60px; color: #333; text-align: center; font-size: ",[0,30],"; border-top: 1px solid #eee; }\n.",[1],"pics .",[1],"left .",[1],"active { background: pink; color: #fff; }\n.",[1],"pics .",[1],"right { height: 100%; width: ",[0,520],"; margin: ",[0,10]," auto; }\n.",[1],"pics .",[1],"right .",[1],"item wx-image { width: ",[0,520],"; height: ",[0,520],"; border-radius: 5px; }\n.",[1],"pics .",[1],"right .",[1],"item wx-text { font-size: ",[0,30],"; line-height: ",[0,60],"; }\n",],"Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./pages/pics/pics.wxss:60:20)",{path:"./pages/pics/pics.wxss"})(); 2 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/pics/pics.wxml') } })); -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/pages/videos/videos.js: -------------------------------------------------------------------------------- 1 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/videos/videos.wxml') } })); -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/fonts/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/app-plus/static/fonts/iconfont.eot -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/fonts/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/app-plus/static/fonts/iconfont.ttf -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/fonts/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/app-plus/static/fonts/iconfont.woff -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/fonts/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/app-plus/static/fonts/iconfont.woff2 -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/hmlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/app-plus/static/hmlogo.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/icon/cart-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/app-plus/static/icon/cart-active.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/icon/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/app-plus/static/icon/cart.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/icon/home-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/app-plus/static/icon/home-active.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/icon/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/app-plus/static/icon/home.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/icon/member-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/app-plus/static/icon/member-active.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/icon/member.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/app-plus/static/icon/member.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/icon/news-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/app-plus/static/icon/news-active.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/icon/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/app-plus/static/icon/news.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/app-plus/static/logo.png -------------------------------------------------------------------------------- /unpackage/dist/build/app-plus/static/uni.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/app-plus/static/uni.ttf -------------------------------------------------------------------------------- /unpackage/dist/build/h5/index.html: -------------------------------------------------------------------------------- 1 | jkjk_shop
-------------------------------------------------------------------------------- /unpackage/dist/build/h5/static/fonts/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/h5/static/fonts/iconfont.eot -------------------------------------------------------------------------------- /unpackage/dist/build/h5/static/fonts/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/h5/static/fonts/iconfont.ttf -------------------------------------------------------------------------------- /unpackage/dist/build/h5/static/fonts/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/h5/static/fonts/iconfont.woff -------------------------------------------------------------------------------- /unpackage/dist/build/h5/static/fonts/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/h5/static/fonts/iconfont.woff2 -------------------------------------------------------------------------------- /unpackage/dist/build/h5/static/hmlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/h5/static/hmlogo.png -------------------------------------------------------------------------------- /unpackage/dist/build/h5/static/icon/cart-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/h5/static/icon/cart-active.png -------------------------------------------------------------------------------- /unpackage/dist/build/h5/static/icon/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/h5/static/icon/cart.png -------------------------------------------------------------------------------- /unpackage/dist/build/h5/static/icon/home-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/h5/static/icon/home-active.png -------------------------------------------------------------------------------- /unpackage/dist/build/h5/static/icon/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/h5/static/icon/home.png -------------------------------------------------------------------------------- /unpackage/dist/build/h5/static/icon/member-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/h5/static/icon/member-active.png -------------------------------------------------------------------------------- /unpackage/dist/build/h5/static/icon/member.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/h5/static/icon/member.png -------------------------------------------------------------------------------- /unpackage/dist/build/h5/static/icon/news-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/h5/static/icon/news-active.png -------------------------------------------------------------------------------- /unpackage/dist/build/h5/static/icon/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/h5/static/icon/news.png -------------------------------------------------------------------------------- /unpackage/dist/build/h5/static/js/pages-cart-cart.70daef21.js: -------------------------------------------------------------------------------- 1 | (window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["pages-cart-cart"],{"9b02":function(t,e,n){"use strict";var u=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("v-uni-view",t._l(t.carts,function(e){return n("v-uni-view",{key:e.id},[n("v-uni-text",[t._v(t._s(e.name))]),n("v-uni-text",[t._v(t._s(e.buynum))]),n("v-uni-text",[t._v(t._s(e.sellprice))])],1)}),1)},r=[];n.d(e,"a",function(){return u}),n.d(e,"b",function(){return r})},b2cf:function(t,e,n){"use strict";n.r(e);var u=n("9b02"),r=n("d5de");for(var a in r)"default"!==a&&function(t){n.d(e,t,function(){return r[t]})}(a);var c=n("2877"),i=Object(c["a"])(r["default"],u["a"],u["b"],!1,null,"f434e288",null);e["default"]=i.exports},b47c:function(t,e,n){"use strict";var u=n("288e");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var r=u(n("cebc")),a=n("2f62"),c={data:function(){return{}},methods:{},computed:(0,r.default)({},(0,a.mapState)({carts:"carts"}))};e.default=c},d5de:function(t,e,n){"use strict";n.r(e);var u=n("b47c"),r=n.n(u);for(var a in u)"default"!==a&&function(t){n.d(e,t,function(){return u[t]})}(a);e["default"]=r.a}}]); -------------------------------------------------------------------------------- /unpackage/dist/build/h5/static/js/pages-goods-goods.f4adb996.js: -------------------------------------------------------------------------------- 1 | (window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["pages-goods-goods"],{"569b":function(t,e,n){"use strict";var o=n("288e");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var u=o(n("75fc"));n("96cf");var r=o(n("3b8d")),s=o(n("c9bd")),a=o(n("9e06")),i=n("cc5c"),d=n("3d75"),c={data:function(){return{pageindex:1,flag:!1,goods:[]}},onLoad:function(){this.getProducts()},methods:{getProducts:function(){var t=(0,r.default)(regeneratorRuntime.mark(function t(){var e;return regeneratorRuntime.wrap(function(t){while(1)switch(t.prev=t.next){case 0:return t.next=2,(0,i.myRequestGet)(d.GoodsUrl,{pageindex:this.pageindex});case 2:e=t.sent,0===e.status&&(this.goods=[].concat((0,u.default)(this.goods),(0,u.default)(e.message)));case 4:case"end":return t.stop()}},t,this)}));function e(){return t.apply(this,arguments)}return e}()},onReachBottom:function(){this.pageindex++,this.pageindex<=2?this.getProducts():this.flag=!0},onPullDownRefresh:function(){this.pageindex=1,this.flag=!1,this.goods=[],this.getProducts().then(function(){uni.stopPullDownRefresh()})},components:{uniLoadMore:s.default,goodlist:a.default}};e.default=c},"7d77":function(t,e,n){"use strict";n.r(e);var o=n("569b"),u=n.n(o);for(var r in o)"default"!==r&&function(t){n.d(e,t,function(){return o[t]})}(r);e["default"]=u.a},bed8:function(t,e,n){"use strict";n.r(e);var o=n("f01d"),u=n("7d77");for(var r in u)"default"!==r&&function(t){n.d(e,t,function(){return u[t]})}(r);var s=n("2877"),a=Object(s["a"])(u["default"],o["a"],o["b"],!1,null,null,null);e["default"]=a.exports},f01d:function(t,e,n){"use strict";var o=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("v-uni-view",[n("goodlist",{attrs:{goods:t.goods}}),t.flag?n("uni-load-more",{attrs:{status:"noMore"}}):n("uni-load-more",{attrs:{status:"loading"}})],1)},u=[];n.d(e,"a",function(){return o}),n.d(e,"b",function(){return u})}}]); -------------------------------------------------------------------------------- /unpackage/dist/build/h5/static/js/pages-member-member.09389b8d.js: -------------------------------------------------------------------------------- 1 | (window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["pages-member-member"],{"35f6":function(e,n,t){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var u={data:function(){return{}},methods:{}};n.default=u},4624:function(e,n,t){"use strict";t.r(n);var u=t("35f6"),r=t.n(u);for(var a in u)"default"!==a&&function(e){t.d(n,e,function(){return u[e]})}(a);n["default"]=r.a},9473:function(e,n,t){"use strict";t.r(n);var u=t("c3e6"),r=t("4624");for(var a in r)"default"!==a&&function(e){t.d(n,e,function(){return r[e]})}(a);var f=t("2877"),i=Object(f["a"])(r["default"],u["a"],u["b"],!1,null,"2613aab1",null);n["default"]=i.exports},c3e6:function(e,n,t){"use strict";var u=function(){var e=this,n=e.$createElement,t=e._self._c||n;return t("v-uni-view")},r=[];t.d(n,"a",function(){return u}),t.d(n,"b",function(){return r})}}]); -------------------------------------------------------------------------------- /unpackage/dist/build/h5/static/js/pages-videos-videos.df621047.js: -------------------------------------------------------------------------------- 1 | (window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["pages-videos-videos"],{"25cd":function(e,n,t){"use strict";t.r(n);var u=t("6af6"),r=t("44ba");for(var a in r)"default"!==a&&function(e){t.d(n,e,function(){return r[e]})}(a);var i=t("2877"),f=Object(i["a"])(r["default"],u["a"],u["b"],!1,null,"f4883508",null);n["default"]=f.exports},"44ba":function(e,n,t){"use strict";t.r(n);var u=t("e53e"),r=t.n(u);for(var a in u)"default"!==a&&function(e){t.d(n,e,function(){return u[e]})}(a);n["default"]=r.a},"6af6":function(e,n,t){"use strict";var u=function(){var e=this,n=e.$createElement,t=e._self._c||n;return t("v-uni-view",[e._v("视频")])},r=[];t.d(n,"a",function(){return u}),t.d(n,"b",function(){return r})},e53e:function(e,n,t){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var u={data:function(){return{}},methods:{}};n.default=u}}]); -------------------------------------------------------------------------------- /unpackage/dist/build/h5/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/h5/static/logo.png -------------------------------------------------------------------------------- /unpackage/dist/build/h5/static/uni.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/h5/static/uni.ttf -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/app.js: -------------------------------------------------------------------------------- 1 | 2 | require('./common/runtime.js') 3 | require('./common/vendor.js') 4 | require('./common/main.js') -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "pages": [ 3 | "pages/index/index", 4 | "pages/news/news", 5 | "pages/member/member", 6 | "pages/cart/cart", 7 | "pages/goods/goods", 8 | "pages/pics/pics", 9 | "pages/contact/contact", 10 | "pages/videos/videos", 11 | "pages/newsdetail/newsdetail", 12 | "pages/goodsdetail/goodsdetail" 13 | ], 14 | "subPackages": [], 15 | "window": { 16 | "navigationBarTextStyle": "white", 17 | "navigationBarTitleText": "极客商城", 18 | "navigationBarBackgroundColor": "#1989fa", 19 | "backgroundColor": "#F8F8F8" 20 | }, 21 | "tabBar": { 22 | "list": [ 23 | { 24 | "pagePath": "pages/index/index", 25 | "text": "首页", 26 | "iconPath": "static/icon/home.png", 27 | "selectedIconPath": "static/icon/home-active.png" 28 | }, 29 | { 30 | "pagePath": "pages/news/news", 31 | "text": "新闻", 32 | "iconPath": "static/icon/news.png", 33 | "selectedIconPath": "static/icon/news-active.png" 34 | }, 35 | { 36 | "pagePath": "pages/cart/cart", 37 | "text": "购物车", 38 | "iconPath": "static/icon/cart.png", 39 | "selectedIconPath": "static/icon/cart-active.png" 40 | }, 41 | { 42 | "pagePath": "pages/member/member", 43 | "text": "我的", 44 | "iconPath": "static/icon/member.png", 45 | "selectedIconPath": "static/icon/member-active.png" 46 | } 47 | ] 48 | }, 49 | "usingComponents": {}, 50 | "sitemapLocation": "sitemap.json" 51 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/app.wxss: -------------------------------------------------------------------------------- 1 | @import './common/main.wxss'; 2 | -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/common/main.js: -------------------------------------------------------------------------------- 1 | (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["common/main"],{"0f1b":function(t,n,e){"use strict";e.r(n);var o=e("5006"),r=e.n(o);for(var u in o)"default"!==u&&function(t){e.d(n,t,function(){return o[t]})}(u);n["default"]=r.a},"1d80":function(t,n,e){"use strict";var o=e("266d"),r=e.n(o);r.a},"266d":function(t,n,e){},5006:function(t,n,e){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var o={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")}};n.default=o},"57c9":function(t,n,e){"use strict";(function(t){e("8181"),e("921b");var n=u(e("66fd")),o=u(e("7515"));e("259c");var r=u(e("284b"));function u(t){return t&&t.__esModule?t:{default:t}}function a(t){for(var n=1;n推荐商品{{item.sell_price}}{{item.market_price}}{{item.title}} -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/components/goodlist/goodlist.wxss: -------------------------------------------------------------------------------- 1 | .hot_goods{background:#eee}.hot_goods .tit{border-top:2px solid #eee;border-bottom:2px solid #eee;margin-top:20px;margin-bottom:3px;color:#00f;height:50px;line-height:50px;text-align:center;letter-spacing:20px;background:#fff}.hot_goods .goods_list{display:-webkit-box;display:-webkit-flex;display:flex;padding:0 15rpx;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;overflow:hidden;-webkit-flex-wrap:wrap;flex-wrap:wrap}.hot_goods .goods_list .goods_item{width:355rpx;margin-bottom:15rpx;background:#fff;padding:10px;box-sizing:border-box}.hot_goods .goods_list .goods_item image{height:150px;width:100%;mix-width:160px;margin:10px auto}.hot_goods .goods_list .goods_item .price{font-size:18px;color:red;padding:8px 0}.hot_goods .goods_list .goods_item .price text:nth-child(2){color:#ccc;text-decoration:line-through;margin-left:10px;font-size:13px}.hot_goods .goods_list .goods_item .name{font-size:14px} -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/components/uni-ui/uni-badge/uni-badge.js: -------------------------------------------------------------------------------- 1 | (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["components/uni-ui/uni-badge/uni-badge"],{"429f":function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var u={name:"UniBadge",props:{type:{type:String,default:"default"},inverted:{type:Boolean,default:!1},text:{type:[String,Number],default:""},size:{type:String,default:"normal"}},data:function(){return{badgeStyle:""}},watch:{text:function(){this.setStyle()}},mounted:function(){this.setStyle()},methods:{setStyle:function(){this.badgeStyle="width: ".concat(8*String(this.text).length+12,"px")},onClick:function(){this.$emit("click")}}};e.default=u},6212:function(t,e,n){"use strict";var u=n("da7e"),a=n.n(u);a.a},6656:function(t,e,n){"use strict";var u=function(){var t=this,e=t.$createElement;t._self._c},a=[];n.d(e,"a",function(){return u}),n.d(e,"b",function(){return a})},8772:function(t,e,n){"use strict";n.r(e);var u=n("6656"),a=n("ac82");for(var i in a)"default"!==i&&function(t){n.d(e,t,function(){return a[t]})}(i);n("6212");var c=n("2877"),r=Object(c["a"])(a["default"],u["a"],u["b"],!1,null,"cfc427da",null);e["default"]=r.exports},ac82:function(t,e,n){"use strict";n.r(e);var u=n("429f"),a=n.n(u);for(var i in u)"default"!==i&&function(t){n.d(e,t,function(){return u[t]})}(i);e["default"]=a.a},da7e:function(t,e,n){}}]); 2 | ;(global["webpackJsonp"] = global["webpackJsonp"] || []).push([ 3 | 'components/uni-ui/uni-badge/uni-badge-create-component', 4 | { 5 | 'components/uni-ui/uni-badge/uni-badge-create-component':(function(module, exports, __webpack_require__){ 6 | __webpack_require__('543d')['createComponent'](__webpack_require__("8772")) 7 | }) 8 | }, 9 | [['components/uni-ui/uni-badge/uni-badge-create-component']] 10 | ]); 11 | -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/components/uni-ui/uni-badge/uni-badge.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/components/uni-ui/uni-badge/uni-badge.wxml: -------------------------------------------------------------------------------- 1 | {{text}} -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/components/uni-ui/uni-badge/uni-badge.wxss: -------------------------------------------------------------------------------- 1 | .uni-badge.data-v-cfc427da{display:-webkit-box;display:-webkit-flex;display:flex;box-sizing:border-box;overflow:hidden;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;flex-direction:row;height:20px;line-height:20px;color:#333;border-radius:100px;background-color:#f1f1f1;background-color:initial;text-align:center;font-family:Helvetica Neue,Helvetica,sans-serif;font-size:12px;padding:0 6px}.uni-badge--inverted.data-v-cfc427da{padding:0 5px 0 0;color:#f1f1f1}.uni-badge--default.data-v-cfc427da{color:#333;background-color:#f1f1f1}.uni-badge--default-inverted.data-v-cfc427da{color:#999;background-color:initial}.uni-badge--primary.data-v-cfc427da{color:#fff;background-color:#007aff}.uni-badge--primary-inverted.data-v-cfc427da{color:#007aff;background-color:initial}.uni-badge--success.data-v-cfc427da{color:#fff;background-color:#4cd964}.uni-badge--success-inverted.data-v-cfc427da{color:#4cd964;background-color:initial}.uni-badge--warning.data-v-cfc427da{color:#fff;background-color:#f0ad4e}.uni-badge--warning-inverted.data-v-cfc427da{color:#f0ad4e;background-color:initial}.uni-badge--error.data-v-cfc427da{color:#fff;background-color:#dd524d}.uni-badge--error-inverted.data-v-cfc427da{color:#dd524d;background-color:initial}.uni-badge--small.data-v-cfc427da{-webkit-transform:scale(.8);transform:scale(.8);-webkit-transform-origin:center center;transform-origin:center center} -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/components/uni-ui/uni-goods-nav/uni-goods-nav.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "uni-icons": "/components/uni-ui/uni-icons/uni-icons" 4 | }, 5 | "component": true 6 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/components/uni-ui/uni-goods-nav/uni-goods-nav.wxml: -------------------------------------------------------------------------------- 1 | {{item.text}}{{item.info}}{{item.text}} -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/components/uni-ui/uni-grid-item/uni-grid-item.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/components/uni-ui/uni-grid-item/uni-grid-item.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/components/uni-ui/uni-grid-item/uni-grid-item.wxss: -------------------------------------------------------------------------------- 1 | .uni-grid-item.data-v-1aad4dd4{height:100%;display:-webkit-box;display:-webkit-flex;display:flex}.uni-grid-item__box.data-v-1aad4dd4{display:-webkit-box;display:-webkit-flex;display:flex;width:100%;position:relative;-webkit-box-flex:1;-webkit-flex:1;flex:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column}.uni-grid-item--border.data-v-1aad4dd4{position:relative;z-index:0;border-bottom:1px #c8c7cc solid;border-right:1px #c8c7cc solid}.uni-grid-item--border-top.data-v-1aad4dd4{position:relative;border-top:1px #c8c7cc solid;z-index:0}.uni-highlight.data-v-1aad4dd4:active{background-color:#f1f1f1} -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/components/uni-ui/uni-grid/uni-grid.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/components/uni-ui/uni-grid/uni-grid.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/components/uni-ui/uni-grid/uni-grid.wxss: -------------------------------------------------------------------------------- 1 | .uni-grid-wrap.data-v-fc8a8e4e{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;flex:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column}.uni-grid.data-v-fc8a8e4e{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;flex-wrap:wrap}.uni-grid--border.data-v-fc8a8e4e{position:relative;z-index:1;border-left:1px #c8c7cc solid} -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/components/uni-ui/uni-icons/uni-icons.js: -------------------------------------------------------------------------------- 1 | (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["components/uni-ui/uni-icons/uni-icons"],{"0125":function(t,n,e){},"250b":function(t,n,e){"use strict";var u=e("0125"),c=e.n(u);c.a},"311d":function(t,n,e){"use strict";e.r(n);var u=e("af2e"),c=e("c622");for(var i in c)"default"!==i&&function(t){e.d(n,t,function(){return c[t]})}(i);e("250b");var r=e("2877"),a=Object(r["a"])(c["default"],u["a"],u["b"],!1,null,"0e939c6a",null);n["default"]=a.exports},af2e:function(t,n,e){"use strict";var u=function(){var t=this,n=t.$createElement;t._self._c},c=[];e.d(n,"a",function(){return u}),e.d(n,"b",function(){return c})},c622:function(t,n,e){"use strict";e.r(n);var u=e("ce33"),c=e.n(u);for(var i in u)"default"!==i&&function(t){e.d(n,t,function(){return u[t]})}(i);n["default"]=c.a},ce33:function(t,n,e){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var u=c(e("19b3"));function c(t){return t&&t.__esModule?t:{default:t}}var i={name:"UniIcons",props:{type:{type:String,default:""},color:{type:String,default:"#333333"},size:{type:[Number,String],default:16},customIcons:{type:String,default:""}},data:function(){return{icons:u.default}},methods:{_onClick:function(){this.$emit("click")}}};n.default=i}}]); 2 | ;(global["webpackJsonp"] = global["webpackJsonp"] || []).push([ 3 | 'components/uni-ui/uni-icons/uni-icons-create-component', 4 | { 5 | 'components/uni-ui/uni-icons/uni-icons-create-component':(function(module, exports, __webpack_require__){ 6 | __webpack_require__('543d')['createComponent'](__webpack_require__("311d")) 7 | }) 8 | }, 9 | [['components/uni-ui/uni-icons/uni-icons-create-component']] 10 | ]); 11 | -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/components/uni-ui/uni-icons/uni-icons.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/components/uni-ui/uni-icons/uni-icons.wxml: -------------------------------------------------------------------------------- 1 | {{icons[type]}} -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/components/uni-ui/uni-list-item/uni-list-item.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "uni-icons": "/components/uni-ui/uni-icons/uni-icons", 4 | "uni-badge": "/components/uni-ui/uni-badge/uni-badge" 5 | }, 6 | "component": true 7 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/components/uni-ui/uni-list/uni-list.js: -------------------------------------------------------------------------------- 1 | (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["components/uni-ui/uni-list/uni-list"],{"17e5":function(t,n,e){"use strict";e.r(n);var o=e("4578"),i=e("40a3");for(var u in i)"default"!==u&&function(t){e.d(n,t,function(){return i[t]})}(u);e("d291");var r=e("2877"),l=Object(r["a"])(i["default"],o["a"],o["b"],!1,null,null,null);n["default"]=l.exports},"40a3":function(t,n,e){"use strict";e.r(n);var o=e("428c"),i=e.n(o);for(var u in o)"default"!==u&&function(t){e.d(n,t,function(){return o[t]})}(u);n["default"]=i.a},"428c":function(t,n,e){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var o={name:"UniList","mp-weixin":{options:{multipleSlots:!1}},props:{enableBackToTop:{type:[Boolean,String],default:!1},scrollY:{type:[Boolean,String],default:!1},border:{type:Boolean,default:!0}},provide:function(){return{list:this}},created:function(){this.firstChildAppend=!1},methods:{loadMore:function(t){this.$emit("scrolltolower")}}};n.default=o},4578:function(t,n,e){"use strict";var o=function(){var t=this,n=t.$createElement;t._self._c},i=[];e.d(n,"a",function(){return o}),e.d(n,"b",function(){return i})},6418:function(t,n,e){},d291:function(t,n,e){"use strict";var o=e("6418"),i=e.n(o);i.a}}]); 2 | ;(global["webpackJsonp"] = global["webpackJsonp"] || []).push([ 3 | 'components/uni-ui/uni-list/uni-list-create-component', 4 | { 5 | 'components/uni-ui/uni-list/uni-list-create-component':(function(module, exports, __webpack_require__){ 6 | __webpack_require__('543d')['createComponent'](__webpack_require__("17e5")) 7 | }) 8 | }, 9 | [['components/uni-ui/uni-list/uni-list-create-component']] 10 | ]); 11 | -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/components/uni-ui/uni-list/uni-list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/components/uni-ui/uni-list/uni-list.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/components/uni-ui/uni-list/uni-list.wxss: -------------------------------------------------------------------------------- 1 | .uni-list{display:-webkit-box;display:-webkit-flex;display:flex;background-color:#fff;position:relative;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column}.uni-list--border{position:relative;z-index:-1}.uni-list--border-top{position:absolute;top:0;right:0;left:0;height:1px;-webkit-transform:scaleY(.5);transform:scaleY(.5);background-color:#c8c7cc;z-index:1}.uni-list--border-bottom{position:absolute;bottom:0;right:0;left:0;height:1px;-webkit-transform:scaleY(.5);transform:scaleY(.5);background-color:#c8c7cc} -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/components/uni-ui/uni-load-more/uni-load-more.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/cart/cart.js: -------------------------------------------------------------------------------- 1 | (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/cart/cart"],{"1d4b":function(t,e,n){"use strict";var r=function(){var t=this,e=t.$createElement;t._self._c},u=[];n.d(e,"a",function(){return r}),n.d(e,"b",function(){return u})},5221:function(t,e,n){"use strict";(function(t){n("8181"),n("921b");r(n("66fd"));var e=r(n("b2cf"));function r(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])},8071:function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var r=n("2f62");function u(t){for(var e=1;e{{item.name}}{{item.buynum}}{{item.sellprice}} -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/contact/contact.js: -------------------------------------------------------------------------------- 1 | (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/contact/contact"],{"0758":function(t,n,e){},"127b":function(t,n,e){"use strict";var u=e("0758"),a=e.n(u);a.a},2134:function(t,n,e){"use strict";var u=function(){var t=this,n=t.$createElement;t._self._c},a=[];e.d(n,"a",function(){return u}),e.d(n,"b",function(){return a})},"43ab":function(t,n,e){"use strict";(function(t){e("8181"),e("921b");u(e("66fd"));var n=u(e("9e47"));function u(t){return t&&t.__esModule?t:{default:t}}t(n.default)}).call(this,e("543d")["createPage"])},"9e47":function(t,n,e){"use strict";e.r(n);var u=e("2134"),a=e("e2c4");for(var o in a)"default"!==o&&function(t){e.d(n,t,function(){return a[t]})}(o);e("127b");var c=e("2877"),r=Object(c["a"])(a["default"],u["a"],u["b"],!1,null,null,null);n["default"]=r.exports},b23b:function(t,n,e){"use strict";(function(t){Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var e={data:function(){return{longitude:120.37138,latitude:31.48795,scale:13,markers:[{longitude:120.37138,latitude:31.48795,iconPath:"../../static/hmlogo.png",width:30,height:30}]}},methods:{phone:function(){t.makePhoneCall({phoneNumber:"0510-81018661"})}}};n.default=e}).call(this,e("543d")["default"])},e2c4:function(t,n,e){"use strict";e.r(n);var u=e("b23b"),a=e.n(u);for(var o in u)"default"!==o&&function(t){e.d(n,t,function(){return u[t]})}(o);n["default"]=a.a}},[["43ab","common/runtime","common/vendor"]]]); -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/contact/contact.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "关于我们", 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/contact/contact.wxml: -------------------------------------------------------------------------------- 1 | 无锡极客信息技术有限公司:0510-81018661 ( 点击拨打 )无锡新吴区震泽路18号国家软件园巨蟹座B座一楼 -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/contact/contact.wxss: -------------------------------------------------------------------------------- 1 | .contact .img{width:750rpx;height:320rpx}.contact .info{padding:10rpx 20rpx;font-size:30rpx}.contact .info view{line-height:80rpx;border-bottom:1px solid #eee}.contact .map{width:750rpx;height:750rpx} -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/goods/goods.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "极客超市", 3 | "enablePullDownRefresh": true, 4 | "usingComponents": { 5 | "uni-load-more": "/components/uni-ui/uni-load-more/uni-load-more", 6 | "goodlist": "/components/goodlist/goodlist" 7 | } 8 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/goods/goods.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/goodsdetail/goodsdetail.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "商品详情", 3 | "usingComponents": { 4 | "uni-goods-nav": "/components/uni-ui/uni-goods-nav/uni-goods-nav" 5 | } 6 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/goodsdetail/goodsdetail.wxml: -------------------------------------------------------------------------------- 1 | {{"¥"+info.sell_price}}{{"¥"+info.market_price}}{{info.title}}{{"货号:"+info.goods_no}}{{"库存:"+info.stock_quantity}}详情介绍 -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/goodsdetail/goodsdetail.wxss: -------------------------------------------------------------------------------- 1 | .goods swiper{height:700rpx}.goods swiper image{width:100%;height:100%}.good_info{padding:10px;position:relative}.good_info .price{font-size:35rpx;color:pink;line-height:80rpx}.good_info .price text:nth-child(2){color:#ccc;font-size:28rpx;text-decoration:line-through;margin-left:20rpx}.good_info .goods_title{font-size:32rpx;line-height:60rpx}.good_info .goods_nav{position:fixed;bottom:0;width:100%}.good_detail{padding-bottom:50px}.good_detail .tit{font-size:32rpx;padding-left:10px;border-bottom:1px solid #eee;line-height:70rpx}.good_detail .content{padding:10px;font-size:28rpx;color:#333;line-height:50rpx} -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "首页", 3 | "onReachBottomDistance": 20, 4 | "usingComponents": { 5 | "uni-badge": "/components/uni-ui/uni-badge/uni-badge", 6 | "uni-grid": "/components/uni-ui/uni-grid/uni-grid", 7 | "uni-grid-item": "/components/uni-ui/uni-grid-item/uni-grid-item", 8 | "uni-load-more": "/components/uni-ui/uni-load-more/uni-load-more", 9 | "goodlist": "/components/goodlist/goodlist" 10 | } 11 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/index/index.wxml: -------------------------------------------------------------------------------- 1 | {{item.title}} -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/index/index.wxss: -------------------------------------------------------------------------------- 1 | .home swiper{height:380rpx}.home swiper image{width:750rpx;height:380rpx}.home .uni-grid-item{text-align:center}.home .uni-grid-item .iconfont{background:pink;line-height:90rpx;width:100rpx;height:100rpx;border-radius:90px;margin:10rpx auto;font-size:25px} -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/member/member.js: -------------------------------------------------------------------------------- 1 | (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/member/member"],{"1b8a":function(e,t,n){"use strict";(function(e){n("8181"),n("921b");u(n("66fd"));var t=u(n("9473"));function u(e){return e&&e.__esModule?e:{default:e}}e(t.default)}).call(this,n("543d")["createPage"])},4624:function(e,t,n){"use strict";n.r(t);var u=n("ddfe"),r=n.n(u);for(var a in u)"default"!==a&&function(e){n.d(t,e,function(){return u[e]})}(a);t["default"]=r.a},"5e18":function(e,t,n){"use strict";var u=function(){var e=this,t=e.$createElement;e._self._c},r=[];n.d(t,"a",function(){return u}),n.d(t,"b",function(){return r})},9473:function(e,t,n){"use strict";n.r(t);var u=n("5e18"),r=n("4624");for(var a in r)"default"!==a&&function(e){n.d(t,e,function(){return r[e]})}(a);var o=n("2877"),f=Object(o["a"])(r["default"],u["a"],u["b"],!1,null,null,null);t["default"]=f.exports},ddfe:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var u={data:function(){return{}},methods:{}};t.default=u}},[["1b8a","common/runtime","common/vendor"]]]); -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/member/member.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/member/member.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/news/news.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "咨询列表", 3 | "usingComponents": { 4 | "uni-list": "/components/uni-ui/uni-list/uni-list", 5 | "uni-list-item": "/components/uni-ui/uni-list-item/uni-list-item" 6 | } 7 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/news/news.wxml: -------------------------------------------------------------------------------- 1 | {{item.$orig.title}}{{"发表时间:"+item.f0}}{{"浏览:"+(item.$orig.click+123)+"次"}} -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/news/news.wxss: -------------------------------------------------------------------------------- 1 | .item{padding:5px 10px;position:relative}.item .tit{font-size:35rpx;font-weight:800}.item .info{font-size:26rpx;margin-top:20rpx}.item .info text:nth-child(2){margin-left:20px} -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/newsdetail/newsdetail.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "咨询详情", 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/newsdetail/newsdetail.wxml: -------------------------------------------------------------------------------- 1 | {{''+newsDetail.title+''}}{{"发表时间:"+$root.f0}}{{"浏览:"+newsDetail.click}} -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/newsdetail/newsdetail.wxss: -------------------------------------------------------------------------------- 1 | .news_detail{padding:15rpx}.news_detail .news_title{text-align:center;font-size:35rpx;font-weight:800;padding:15rpx}.news_detail .info{font-size:28rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:15rpx}.news_detail .content{padding:15rpx;font-size:28rpx;color:grey} -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/pics/pics.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/pics/pics.wxml: -------------------------------------------------------------------------------- 1 | {{''+item.title+''}}{{item.title}}暂无数据 -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/pics/pics.wxss: -------------------------------------------------------------------------------- 1 | .pics{height:100%;display:-webkit-box;display:-webkit-flex;display:flex}.pics .left{width:200rpx;height:100%;border-right:1px solid #eee}.pics .left view{height:60px;line-height:60px;color:#333;text-align:center;font-size:30rpx;border-top:1px solid #eee}.pics .left .active{background:pink;color:#fff}.pics .right{height:100%;width:520rpx;margin:10rpx auto}.pics .right .item image{width:520rpx;height:520rpx;border-radius:5px}.pics .right .item text{font-size:30rpx;line-height:60rpx} -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/videos/videos.js: -------------------------------------------------------------------------------- 1 | (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/videos/videos"],{"23ec":function(t,n,e){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var u={data:function(){return{}},methods:{}};n.default=u},"25cd":function(t,n,e){"use strict";e.r(n);var u=e("4297"),r=e("44ba");for(var a in r)"default"!==a&&function(t){e.d(n,t,function(){return r[t]})}(a);var c=e("2877"),o=Object(c["a"])(r["default"],u["a"],u["b"],!1,null,null,null);n["default"]=o.exports},4297:function(t,n,e){"use strict";var u=function(){var t=this,n=t.$createElement;t._self._c},r=[];e.d(n,"a",function(){return u}),e.d(n,"b",function(){return r})},"44ba":function(t,n,e){"use strict";e.r(n);var u=e("23ec"),r=e.n(u);for(var a in u)"default"!==a&&function(t){e.d(n,t,function(){return u[t]})}(a);n["default"]=r.a},bc93:function(t,n,e){"use strict";(function(t){e("8181"),e("921b");u(e("66fd"));var n=u(e("25cd"));function u(t){return t&&t.__esModule?t:{default:t}}t(n.default)}).call(this,e("543d")["createPage"])}},[["bc93","common/runtime","common/vendor"]]]); -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/videos/videos.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/pages/videos/videos.wxml: -------------------------------------------------------------------------------- 1 | 视频 -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/project.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "项目配置文件。", 3 | "packOptions": { 4 | "ignore": [] 5 | }, 6 | "setting": { 7 | "urlCheck": false, 8 | "es6": true, 9 | "minified": true 10 | }, 11 | "compileType": "miniprogram", 12 | "libVersion": "2.9.2", 13 | "appid": "wx2b2191caf5714f87", 14 | "projectname": "%E6%9E%81%E5%AE%A2%E5%95%86%E5%9F%8E", 15 | "simulatorType": "wechat", 16 | "simulatorPluginLibVersion": {}, 17 | "condition": { 18 | "search": { 19 | "current": -1, 20 | "list": [] 21 | }, 22 | "conversation": { 23 | "current": -1, 24 | "list": [] 25 | }, 26 | "game": { 27 | "current": -1, 28 | "list": [] 29 | }, 30 | "miniprogram": { 31 | "current": -1, 32 | "list": [] 33 | } 34 | } 35 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/sitemap.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/fonts/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/mp-weixin/static/fonts/iconfont.eot -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/fonts/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/mp-weixin/static/fonts/iconfont.ttf -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/fonts/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/mp-weixin/static/fonts/iconfont.woff -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/fonts/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/mp-weixin/static/fonts/iconfont.woff2 -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/hmlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/mp-weixin/static/hmlogo.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/icon/cart-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/mp-weixin/static/icon/cart-active.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/icon/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/mp-weixin/static/icon/cart.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/icon/home-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/mp-weixin/static/icon/home-active.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/icon/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/mp-weixin/static/icon/home.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/icon/member-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/mp-weixin/static/icon/member-active.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/icon/member.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/mp-weixin/static/icon/member.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/icon/news-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/mp-weixin/static/icon/news-active.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/icon/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/mp-weixin/static/icon/news.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/mp-weixin/static/logo.png -------------------------------------------------------------------------------- /unpackage/dist/build/mp-weixin/static/uni.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/build/mp-weixin/static/uni.ttf -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/.tea/entryFiles-development/config$.js: -------------------------------------------------------------------------------- 1 | 2 | const g = typeof global !== 'undefined' ? global : self; 3 | g.appXAppJson = { 4 | "app": { 5 | "$homepage": "pages/index/index" 6 | } 7 | }; 8 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/.tea/entryFiles-development/importScripts$.js: -------------------------------------------------------------------------------- 1 | if(!self.Map || !self.Set || !self.Symbol) { 2 | importScripts('https://gw.alipayobjects.com/as/g/appx_release/deps/1.0.3/es6-set-map-symbol.js'); 3 | } 4 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/app.acss: -------------------------------------------------------------------------------- 1 | @import './common/main.acss'; 2 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/app.js: -------------------------------------------------------------------------------- 1 | 2 | require('./common/runtime.js') 3 | require('./common/vendor.js') 4 | require('./common/main.js') -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "pages": [ 3 | "pages/index/index", 4 | "pages/news/news", 5 | "pages/member/member", 6 | "pages/cart/cart", 7 | "pages/goods/goods", 8 | "pages/pics/pics", 9 | "pages/contact/contact", 10 | "pages/videos/videos", 11 | "pages/newsdetail/newsdetail", 12 | "pages/goodsdetail/goodsdetail" 13 | ], 14 | "subPackages": [], 15 | "window": { 16 | "defaultTitle": "极客商城", 17 | "titleBarColor": "#1989fa", 18 | "backgroundColor": "#F8F8F8" 19 | }, 20 | "tabBar": { 21 | "items": [ 22 | { 23 | "pagePath": "pages/index/index", 24 | "name": "首页", 25 | "icon": "static/icon/home.png", 26 | "activeIcon": "static/icon/home-active.png" 27 | }, 28 | { 29 | "pagePath": "pages/news/news", 30 | "name": "新闻", 31 | "icon": "static/icon/news.png", 32 | "activeIcon": "static/icon/news-active.png" 33 | }, 34 | { 35 | "pagePath": "pages/cart/cart", 36 | "name": "购物车", 37 | "icon": "static/icon/cart.png", 38 | "activeIcon": "static/icon/cart-active.png" 39 | }, 40 | { 41 | "pagePath": "pages/member/member", 42 | "name": "我的", 43 | "icon": "static/icon/member.png", 44 | "activeIcon": "static/icon/member-active.png" 45 | } 46 | ] 47 | }, 48 | "usingComponents": {} 49 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/components/goodlist/goodlist.axml: -------------------------------------------------------------------------------- 1 | 推荐商品{{item.sell_price}}{{item.market_price}}{{item.title}} -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/components/goodlist/goodlist.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/components/uni-ui/uni-badge/uni-badge.axml: -------------------------------------------------------------------------------- 1 | {{text}} -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/components/uni-ui/uni-badge/uni-badge.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/components/uni-ui/uni-goods-nav/uni-goods-nav.axml: -------------------------------------------------------------------------------- 1 | {{item.text}}{{item.info}}{{item.text}} -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/components/uni-ui/uni-goods-nav/uni-goods-nav.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "uni-icons": "/components/uni-ui/uni-icons/uni-icons" 4 | }, 5 | "component": true 6 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/components/uni-ui/uni-grid-item/uni-grid-item.acss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /** 3 | * 这里是uni-app内置的常用样式变量 4 | * 5 | * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 6 | * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App 7 | * 8 | */ 9 | /** 10 | * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 11 | * 12 | * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 13 | */ 14 | /* 颜色变量 */ 15 | /* 行为相关颜色 */ 16 | /* 文字基本颜色 */ 17 | /* 背景颜色 */ 18 | /* 边框颜色 */ 19 | /* 尺寸变量 */ 20 | /* 文字尺寸 */ 21 | /* 图片尺寸 */ 22 | /* Border Radius */ 23 | /* 水平间距 */ 24 | /* 垂直间距 */ 25 | /* 透明度 */ 26 | /* 文章场景相关 */ 27 | .uni-grid-item.data-v-e26cd778 { 28 | height: 100%; 29 | display: -webkit-box; 30 | display: -webkit-flex; 31 | display: flex; 32 | } 33 | .uni-grid-item__box.data-v-e26cd778 { 34 | display: -webkit-box; 35 | display: -webkit-flex; 36 | display: flex; 37 | width: 100%; 38 | position: relative; 39 | -webkit-box-flex: 1; 40 | -webkit-flex: 1; 41 | flex: 1; 42 | -webkit-box-orient: vertical; 43 | -webkit-box-direction: normal; 44 | -webkit-flex-direction: column; 45 | flex-direction: column; 46 | } 47 | .uni-grid-item--border.data-v-e26cd778 { 48 | position: relative; 49 | z-index: 0; 50 | border-bottom: 1px #c8c7cc solid; 51 | border-right: 1px #c8c7cc solid; 52 | } 53 | .uni-grid-item--border-top.data-v-e26cd778 { 54 | position: relative; 55 | border-top: 1px #c8c7cc solid; 56 | z-index: 0; 57 | } 58 | .uni-highlight.data-v-e26cd778:active { 59 | background-color: #f1f1f1; 60 | } 61 | 62 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/components/uni-ui/uni-grid-item/uni-grid-item.axml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/components/uni-ui/uni-grid-item/uni-grid-item.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/components/uni-ui/uni-grid/uni-grid.acss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /** 3 | * 这里是uni-app内置的常用样式变量 4 | * 5 | * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 6 | * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App 7 | * 8 | */ 9 | /** 10 | * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 11 | * 12 | * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 13 | */ 14 | /* 颜色变量 */ 15 | /* 行为相关颜色 */ 16 | /* 文字基本颜色 */ 17 | /* 背景颜色 */ 18 | /* 边框颜色 */ 19 | /* 尺寸变量 */ 20 | /* 文字尺寸 */ 21 | /* 图片尺寸 */ 22 | /* Border Radius */ 23 | /* 水平间距 */ 24 | /* 垂直间距 */ 25 | /* 透明度 */ 26 | /* 文章场景相关 */ 27 | .uni-grid-wrap.data-v-02d0f568 { 28 | display: -webkit-box; 29 | display: -webkit-flex; 30 | display: flex; 31 | -webkit-box-flex: 1; 32 | -webkit-flex: 1; 33 | flex: 1; 34 | -webkit-box-orient: vertical; 35 | -webkit-box-direction: normal; 36 | -webkit-flex-direction: column; 37 | flex-direction: column; 38 | } 39 | .uni-grid.data-v-02d0f568 { 40 | display: -webkit-box; 41 | display: -webkit-flex; 42 | display: flex; 43 | -webkit-box-orient: horizontal; 44 | -webkit-box-direction: normal; 45 | -webkit-flex-direction: row; 46 | flex-direction: row; 47 | -webkit-flex-wrap: wrap; 48 | flex-wrap: wrap; 49 | } 50 | .uni-grid--border.data-v-02d0f568 { 51 | position: relative; 52 | z-index: 1; 53 | border-left: 1px #c8c7cc solid; 54 | } 55 | 56 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/components/uni-ui/uni-grid/uni-grid.axml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/components/uni-ui/uni-grid/uni-grid.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/components/uni-ui/uni-icons/uni-icons.axml: -------------------------------------------------------------------------------- 1 | {{icons[type]}} -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/components/uni-ui/uni-icons/uni-icons.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/components/uni-ui/uni-list-item/uni-list-item.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "uni-icons": "/components/uni-ui/uni-icons/uni-icons", 4 | "uni-badge": "/components/uni-ui/uni-badge/uni-badge" 5 | }, 6 | "component": true 7 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/components/uni-ui/uni-list/uni-list.acss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /** 3 | * 这里是uni-app内置的常用样式变量 4 | * 5 | * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 6 | * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App 7 | * 8 | */ 9 | /** 10 | * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 11 | * 12 | * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 13 | */ 14 | /* 颜色变量 */ 15 | /* 行为相关颜色 */ 16 | /* 文字基本颜色 */ 17 | /* 背景颜色 */ 18 | /* 边框颜色 */ 19 | /* 尺寸变量 */ 20 | /* 文字尺寸 */ 21 | /* 图片尺寸 */ 22 | /* Border Radius */ 23 | /* 水平间距 */ 24 | /* 垂直间距 */ 25 | /* 透明度 */ 26 | /* 文章场景相关 */ 27 | .uni-list { 28 | display: -webkit-box; 29 | display: -webkit-flex; 30 | display: flex; 31 | background-color: #ffffff; 32 | position: relative; 33 | -webkit-box-orient: vertical; 34 | -webkit-box-direction: normal; 35 | -webkit-flex-direction: column; 36 | flex-direction: column; 37 | } 38 | .uni-list--border { 39 | position: relative; 40 | z-index: -1; 41 | } 42 | .uni-list--border-top { 43 | position: absolute; 44 | top: 0; 45 | right: 0; 46 | left: 0; 47 | height: 1px; 48 | -webkit-transform: scaleY(0.5); 49 | transform: scaleY(0.5); 50 | background-color: #c8c7cc; 51 | z-index: 1; 52 | } 53 | .uni-list--border-bottom { 54 | position: absolute; 55 | bottom: 0; 56 | right: 0; 57 | left: 0; 58 | height: 1px; 59 | -webkit-transform: scaleY(0.5); 60 | transform: scaleY(0.5); 61 | background-color: #c8c7cc; 62 | } 63 | 64 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/components/uni-ui/uni-list/uni-list.axml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/components/uni-ui/uni-list/uni-list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/components/uni-ui/uni-load-more/uni-load-more.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/pages/cart/cart.acss: -------------------------------------------------------------------------------- 1 | /* required by usingComponents */ -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/pages/cart/cart.axml: -------------------------------------------------------------------------------- 1 | {{item.name}}{{item.buynum}}{{item.sellprice}} -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/pages/cart/cart.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/pages/contact/contact.acss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /** 3 | * 这里是uni-app内置的常用样式变量 4 | * 5 | * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 6 | * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App 7 | * 8 | */ 9 | /** 10 | * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 11 | * 12 | * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 13 | */ 14 | /* 颜色变量 */ 15 | /* 行为相关颜色 */ 16 | /* 文字基本颜色 */ 17 | /* 背景颜色 */ 18 | /* 边框颜色 */ 19 | /* 尺寸变量 */ 20 | /* 文字尺寸 */ 21 | /* 图片尺寸 */ 22 | /* Border Radius */ 23 | /* 水平间距 */ 24 | /* 垂直间距 */ 25 | /* 透明度 */ 26 | /* 文章场景相关 */ 27 | .contact .img { 28 | width: 750rpx; 29 | height: 320rpx; 30 | } 31 | .contact .info { 32 | padding: 10rpx 20rpx; 33 | font-size: 30rpx; 34 | } 35 | .contact .info view { 36 | line-height: 80rpx; 37 | border-bottom: 1px solid #eee; 38 | } 39 | .contact .map { 40 | width: 750rpx; 41 | height: 750rpx; 42 | } 43 | 44 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/pages/contact/contact.axml: -------------------------------------------------------------------------------- 1 | 无锡极客信息技术有限公司:0510-81018661 ( 点击拨打 )无锡新吴区震泽路18号国家软件园巨蟹座B座一楼 -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/pages/contact/contact.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "关于我们", 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/pages/goods/goods.acss: -------------------------------------------------------------------------------- 1 | /* required by usingComponents */ -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/pages/goods/goods.axml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/pages/goods/goods.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "极客超市", 3 | "pullRefresh": true, 4 | "usingComponents": { 5 | "uni-load-more": "/components/uni-ui/uni-load-more/uni-load-more", 6 | "goodlist": "/components/goodlist/goodlist" 7 | } 8 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/pages/goodsdetail/goodsdetail.acss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /** 3 | * 这里是uni-app内置的常用样式变量 4 | * 5 | * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 6 | * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App 7 | * 8 | */ 9 | /** 10 | * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 11 | * 12 | * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 13 | */ 14 | /* 颜色变量 */ 15 | /* 行为相关颜色 */ 16 | /* 文字基本颜色 */ 17 | /* 背景颜色 */ 18 | /* 边框颜色 */ 19 | /* 尺寸变量 */ 20 | /* 文字尺寸 */ 21 | /* 图片尺寸 */ 22 | /* Border Radius */ 23 | /* 水平间距 */ 24 | /* 垂直间距 */ 25 | /* 透明度 */ 26 | /* 文章场景相关 */ 27 | .goods swiper { 28 | height: 700rpx; 29 | } 30 | .goods swiper image { 31 | width: 100%; 32 | height: 100%; 33 | } 34 | .good_info { 35 | padding: 10px; 36 | position: relative; 37 | } 38 | .good_info .price { 39 | font-size: 35rpx; 40 | color: pink; 41 | line-height: 80rpx; 42 | } 43 | .good_info .price text:nth-child(2) { 44 | color: #ccc; 45 | font-size: 28rpx; 46 | text-decoration: line-through; 47 | margin-left: 20rpx; 48 | } 49 | .good_info .goods_title { 50 | font-size: 32rpx; 51 | line-height: 60rpx; 52 | } 53 | .good_info .goods_nav { 54 | position: fixed; 55 | bottom: 0; 56 | width: 100%; 57 | } 58 | .good_detail { 59 | padding-bottom: 50px; 60 | } 61 | .good_detail .tit { 62 | font-size: 32rpx; 63 | padding-left: 10px; 64 | border-bottom: 1px solid #eee; 65 | line-height: 70rpx; 66 | } 67 | .good_detail .content { 68 | padding: 10px; 69 | font-size: 28rpx; 70 | color: #333; 71 | line-height: 50rpx; 72 | } 73 | 74 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/pages/goodsdetail/goodsdetail.axml: -------------------------------------------------------------------------------- 1 | {{"¥"+info.sell_price}}{{"¥"+info.market_price}}{{info.title}}{{"货号:"+info.goods_no}}{{"库存:"+info.stock_quantity}}详情介绍 -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/pages/goodsdetail/goodsdetail.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "商品详情", 3 | "usingComponents": { 4 | "uni-goods-nav": "/components/uni-ui/uni-goods-nav/uni-goods-nav" 5 | } 6 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/pages/index/index.acss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /** 3 | * 这里是uni-app内置的常用样式变量 4 | * 5 | * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 6 | * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App 7 | * 8 | */ 9 | /** 10 | * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 11 | * 12 | * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 13 | */ 14 | /* 颜色变量 */ 15 | /* 行为相关颜色 */ 16 | /* 文字基本颜色 */ 17 | /* 背景颜色 */ 18 | /* 边框颜色 */ 19 | /* 尺寸变量 */ 20 | /* 文字尺寸 */ 21 | /* 图片尺寸 */ 22 | /* Border Radius */ 23 | /* 水平间距 */ 24 | /* 垂直间距 */ 25 | /* 透明度 */ 26 | /* 文章场景相关 */ 27 | .home swiper { 28 | height: 380rpx; 29 | } 30 | .home swiper image { 31 | width: 750rpx; 32 | height: 380rpx; 33 | } 34 | .home .uni-grid-item { 35 | text-align: center; 36 | } 37 | .home .uni-grid-item .iconfont { 38 | background: pink; 39 | line-height: 90rpx; 40 | width: 100rpx; 41 | height: 100rpx; 42 | border-radius: 90px; 43 | margin: 10rpx auto; 44 | font-size: 25px; 45 | } 46 | 47 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/pages/index/index.axml: -------------------------------------------------------------------------------- 1 | {{item.title}} -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/pages/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "首页", 3 | "usingComponents": { 4 | "uni-badge": "/components/uni-ui/uni-badge/uni-badge", 5 | "uni-grid": "/components/uni-ui/uni-grid/uni-grid", 6 | "uni-grid-item": "/components/uni-ui/uni-grid-item/uni-grid-item", 7 | "uni-load-more": "/components/uni-ui/uni-load-more/uni-load-more", 8 | "goodlist": "/components/goodlist/goodlist" 9 | } 10 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/pages/member/member.acss: -------------------------------------------------------------------------------- 1 | /* required by usingComponents */ -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/pages/member/member.axml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/pages/member/member.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/pages/news/news.acss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /** 3 | * 这里是uni-app内置的常用样式变量 4 | * 5 | * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 6 | * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App 7 | * 8 | */ 9 | /** 10 | * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 11 | * 12 | * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 13 | */ 14 | /* 颜色变量 */ 15 | /* 行为相关颜色 */ 16 | /* 文字基本颜色 */ 17 | /* 背景颜色 */ 18 | /* 边框颜色 */ 19 | /* 尺寸变量 */ 20 | /* 文字尺寸 */ 21 | /* 图片尺寸 */ 22 | /* Border Radius */ 23 | /* 水平间距 */ 24 | /* 垂直间距 */ 25 | /* 透明度 */ 26 | /* 文章场景相关 */ 27 | .item { 28 | padding: 5px 10px; 29 | position: relative; 30 | } 31 | .item .tit { 32 | font-size: 35rpx; 33 | font-weight: 800; 34 | } 35 | .item .info { 36 | font-size: 26rpx; 37 | margin-top: 20rpx; 38 | } 39 | .item .info text:nth-child(2) { 40 | margin-left: 20px; 41 | } 42 | 43 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/pages/news/news.axml: -------------------------------------------------------------------------------- 1 | {{item.$orig.title}}{{"发表时间:"+item.f0}}{{"浏览:"+(item.$orig.click+123)+"次"}} -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/pages/news/news.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "咨询列表", 3 | "usingComponents": { 4 | "uni-list": "/components/uni-ui/uni-list/uni-list", 5 | "uni-list-item": "/components/uni-ui/uni-list-item/uni-list-item" 6 | } 7 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/pages/newsdetail/newsdetail.acss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /** 3 | * 这里是uni-app内置的常用样式变量 4 | * 5 | * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 6 | * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App 7 | * 8 | */ 9 | /** 10 | * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 11 | * 12 | * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 13 | */ 14 | /* 颜色变量 */ 15 | /* 行为相关颜色 */ 16 | /* 文字基本颜色 */ 17 | /* 背景颜色 */ 18 | /* 边框颜色 */ 19 | /* 尺寸变量 */ 20 | /* 文字尺寸 */ 21 | /* 图片尺寸 */ 22 | /* Border Radius */ 23 | /* 水平间距 */ 24 | /* 垂直间距 */ 25 | /* 透明度 */ 26 | /* 文章场景相关 */ 27 | .news_detail { 28 | padding: 15rpx; 29 | } 30 | .news_detail .news_title { 31 | text-align: center; 32 | font-size: 35rpx; 33 | font-weight: 800; 34 | padding: 15rpx; 35 | } 36 | .news_detail .info { 37 | font-size: 28rpx; 38 | display: -webkit-box; 39 | display: -webkit-flex; 40 | display: flex; 41 | -webkit-box-pack: justify; 42 | -webkit-justify-content: space-between; 43 | justify-content: space-between; 44 | padding: 15rpx; 45 | } 46 | .news_detail .content { 47 | padding: 15rpx; 48 | font-size: 28rpx; 49 | color: gray; 50 | } 51 | 52 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/pages/newsdetail/newsdetail.axml: -------------------------------------------------------------------------------- 1 | {{''+newsDetail.title+''}}{{"发表时间:"+$root.f0}}{{"浏览:"+newsDetail.click}} -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/pages/newsdetail/newsdetail.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "咨询详情", 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/pages/pics/pics.acss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /** 3 | * 这里是uni-app内置的常用样式变量 4 | * 5 | * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 6 | * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App 7 | * 8 | */ 9 | /** 10 | * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 11 | * 12 | * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 13 | */ 14 | /* 颜色变量 */ 15 | /* 行为相关颜色 */ 16 | /* 文字基本颜色 */ 17 | /* 背景颜色 */ 18 | /* 边框颜色 */ 19 | /* 尺寸变量 */ 20 | /* 文字尺寸 */ 21 | /* 图片尺寸 */ 22 | /* Border Radius */ 23 | /* 水平间距 */ 24 | /* 垂直间距 */ 25 | /* 透明度 */ 26 | /* 文章场景相关 */ 27 | .pics { 28 | height: 100%; 29 | display: -webkit-box; 30 | display: -webkit-flex; 31 | display: flex; 32 | } 33 | .pics .left { 34 | width: 200rpx; 35 | height: 100%; 36 | border-right: 1px solid #eee; 37 | } 38 | .pics .left view { 39 | height: 60px; 40 | line-height: 60px; 41 | color: #333; 42 | text-align: center; 43 | font-size: 30rpx; 44 | border-top: 1px solid #eee; 45 | } 46 | .pics .left .active { 47 | background: pink; 48 | color: #fff; 49 | } 50 | .pics .right { 51 | height: 100%; 52 | width: 520rpx; 53 | margin: 10rpx auto; 54 | } 55 | .pics .right .item image { 56 | width: 520rpx; 57 | height: 520rpx; 58 | border-radius: 5px; 59 | } 60 | .pics .right .item text { 61 | font-size: 30rpx; 62 | line-height: 60rpx; 63 | } 64 | 65 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/pages/pics/pics.axml: -------------------------------------------------------------------------------- 1 | {{''+item.title+''}}{{item.title}}暂无数据 -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/pages/pics/pics.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/pages/videos/videos.acss: -------------------------------------------------------------------------------- 1 | /* required by usingComponents */ -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/pages/videos/videos.axml: -------------------------------------------------------------------------------- 1 | 视频 -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/pages/videos/videos.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/static/fonts/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/dev/mp-alipay/static/fonts/iconfont.eot -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/static/fonts/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/dev/mp-alipay/static/fonts/iconfont.ttf -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/static/fonts/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/dev/mp-alipay/static/fonts/iconfont.woff -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/static/fonts/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/dev/mp-alipay/static/fonts/iconfont.woff2 -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/static/hmlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/dev/mp-alipay/static/hmlogo.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/static/icon/cart-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/dev/mp-alipay/static/icon/cart-active.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/static/icon/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/dev/mp-alipay/static/icon/cart.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/static/icon/home-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/dev/mp-alipay/static/icon/home-active.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/static/icon/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/dev/mp-alipay/static/icon/home.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/static/icon/member-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/dev/mp-alipay/static/icon/member-active.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/static/icon/member.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/dev/mp-alipay/static/icon/member.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/static/icon/news-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/dev/mp-alipay/static/icon/news-active.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/static/icon/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/dev/mp-alipay/static/icon/news.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/dev/mp-alipay/static/logo.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-alipay/static/uni.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/dev/mp-alipay/static/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.json: -------------------------------------------------------------------------------- 1 | { 2 | "pages": [ 3 | "pages/index/index", 4 | "pages/news/news", 5 | "pages/member/member", 6 | "pages/cart/cart", 7 | "pages/goods/goods", 8 | "pages/pics/pics", 9 | "pages/contact/contact", 10 | "pages/videos/videos", 11 | "pages/newsdetail/newsdetail", 12 | "pages/goodsdetail/goodsdetail" 13 | ], 14 | "subPackages": [], 15 | "window": { 16 | "navigationBarTextStyle": "white", 17 | "navigationBarTitleText": "极客商城", 18 | "navigationBarBackgroundColor": "#1989fa", 19 | "backgroundColor": "#F8F8F8" 20 | }, 21 | "tabBar": { 22 | "list": [ 23 | { 24 | "pagePath": "pages/index/index", 25 | "text": "首页", 26 | "iconPath": "static/icon/home.png", 27 | "selectedIconPath": "static/icon/home-active.png" 28 | }, 29 | { 30 | "pagePath": "pages/news/news", 31 | "text": "新闻", 32 | "iconPath": "static/icon/news.png", 33 | "selectedIconPath": "static/icon/news-active.png" 34 | }, 35 | { 36 | "pagePath": "pages/cart/cart", 37 | "text": "购物车", 38 | "iconPath": "static/icon/cart.png", 39 | "selectedIconPath": "static/icon/cart-active.png" 40 | }, 41 | { 42 | "pagePath": "pages/member/member", 43 | "text": "我的", 44 | "iconPath": "static/icon/member.png", 45 | "selectedIconPath": "static/icon/member-active.png" 46 | } 47 | ] 48 | }, 49 | "usingComponents": {}, 50 | "sitemapLocation": "sitemap63.json" 51 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/app.wxss: -------------------------------------------------------------------------------- 1 | @import './common/main.wxss'; 2 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/goodlist/goodlist.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/goodlist/goodlist.wxml: -------------------------------------------------------------------------------- 1 | 推荐商品{{item.sell_price}}{{item.market_price}}{{item.title}} -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/uni-ui/uni-badge/uni-badge.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/uni-ui/uni-badge/uni-badge.wxml: -------------------------------------------------------------------------------- 1 | {{text}} -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/uni-ui/uni-goods-nav/uni-goods-nav.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "uni-icons": "/components/uni-ui/uni-icons/uni-icons" 4 | }, 5 | "component": true 6 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/uni-ui/uni-goods-nav/uni-goods-nav.wxml: -------------------------------------------------------------------------------- 1 | {{item.text}}{{item.info}}{{item.text}} -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/uni-ui/uni-grid-item/uni-grid-item.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/uni-ui/uni-grid-item/uni-grid-item.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/uni-ui/uni-grid-item/uni-grid-item.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /** 3 | * 这里是uni-app内置的常用样式变量 4 | * 5 | * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 6 | * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App 7 | * 8 | */ 9 | /** 10 | * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 11 | * 12 | * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 13 | */ 14 | /* 颜色变量 */ 15 | /* 行为相关颜色 */ 16 | /* 文字基本颜色 */ 17 | /* 背景颜色 */ 18 | /* 边框颜色 */ 19 | /* 尺寸变量 */ 20 | /* 文字尺寸 */ 21 | /* 图片尺寸 */ 22 | /* Border Radius */ 23 | /* 水平间距 */ 24 | /* 垂直间距 */ 25 | /* 透明度 */ 26 | /* 文章场景相关 */ 27 | .uni-grid-item.data-v-e26cd778 { 28 | height: 100%; 29 | display: -webkit-box; 30 | display: -webkit-flex; 31 | display: flex; 32 | } 33 | .uni-grid-item__box.data-v-e26cd778 { 34 | display: -webkit-box; 35 | display: -webkit-flex; 36 | display: flex; 37 | width: 100%; 38 | position: relative; 39 | -webkit-box-flex: 1; 40 | -webkit-flex: 1; 41 | flex: 1; 42 | -webkit-box-orient: vertical; 43 | -webkit-box-direction: normal; 44 | -webkit-flex-direction: column; 45 | flex-direction: column; 46 | } 47 | .uni-grid-item--border.data-v-e26cd778 { 48 | position: relative; 49 | z-index: 0; 50 | border-bottom: 1px #c8c7cc solid; 51 | border-right: 1px #c8c7cc solid; 52 | } 53 | .uni-grid-item--border-top.data-v-e26cd778 { 54 | position: relative; 55 | border-top: 1px #c8c7cc solid; 56 | z-index: 0; 57 | } 58 | .uni-highlight.data-v-e26cd778:active { 59 | background-color: #f1f1f1; 60 | } 61 | 62 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/uni-ui/uni-grid/uni-grid.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/uni-ui/uni-grid/uni-grid.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/uni-ui/uni-grid/uni-grid.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /** 3 | * 这里是uni-app内置的常用样式变量 4 | * 5 | * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 6 | * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App 7 | * 8 | */ 9 | /** 10 | * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 11 | * 12 | * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 13 | */ 14 | /* 颜色变量 */ 15 | /* 行为相关颜色 */ 16 | /* 文字基本颜色 */ 17 | /* 背景颜色 */ 18 | /* 边框颜色 */ 19 | /* 尺寸变量 */ 20 | /* 文字尺寸 */ 21 | /* 图片尺寸 */ 22 | /* Border Radius */ 23 | /* 水平间距 */ 24 | /* 垂直间距 */ 25 | /* 透明度 */ 26 | /* 文章场景相关 */ 27 | .uni-grid-wrap.data-v-02d0f568 { 28 | display: -webkit-box; 29 | display: -webkit-flex; 30 | display: flex; 31 | -webkit-box-flex: 1; 32 | -webkit-flex: 1; 33 | flex: 1; 34 | -webkit-box-orient: vertical; 35 | -webkit-box-direction: normal; 36 | -webkit-flex-direction: column; 37 | flex-direction: column; 38 | } 39 | .uni-grid.data-v-02d0f568 { 40 | display: -webkit-box; 41 | display: -webkit-flex; 42 | display: flex; 43 | -webkit-box-orient: horizontal; 44 | -webkit-box-direction: normal; 45 | -webkit-flex-direction: row; 46 | flex-direction: row; 47 | -webkit-flex-wrap: wrap; 48 | flex-wrap: wrap; 49 | } 50 | .uni-grid--border.data-v-02d0f568 { 51 | position: relative; 52 | z-index: 1; 53 | border-left: 1px #c8c7cc solid; 54 | } 55 | 56 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/uni-ui/uni-icons/uni-icons.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/uni-ui/uni-icons/uni-icons.wxml: -------------------------------------------------------------------------------- 1 | {{icons[type]}} -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/uni-ui/uni-list-item/uni-list-item.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "uni-icons": "/components/uni-ui/uni-icons/uni-icons", 4 | "uni-badge": "/components/uni-ui/uni-badge/uni-badge" 5 | }, 6 | "component": true 7 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/uni-ui/uni-list/uni-list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/uni-ui/uni-list/uni-list.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/uni-ui/uni-list/uni-list.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /** 3 | * 这里是uni-app内置的常用样式变量 4 | * 5 | * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 6 | * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App 7 | * 8 | */ 9 | /** 10 | * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 11 | * 12 | * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 13 | */ 14 | /* 颜色变量 */ 15 | /* 行为相关颜色 */ 16 | /* 文字基本颜色 */ 17 | /* 背景颜色 */ 18 | /* 边框颜色 */ 19 | /* 尺寸变量 */ 20 | /* 文字尺寸 */ 21 | /* 图片尺寸 */ 22 | /* Border Radius */ 23 | /* 水平间距 */ 24 | /* 垂直间距 */ 25 | /* 透明度 */ 26 | /* 文章场景相关 */ 27 | .uni-list { 28 | display: -webkit-box; 29 | display: -webkit-flex; 30 | display: flex; 31 | background-color: #ffffff; 32 | position: relative; 33 | -webkit-box-orient: vertical; 34 | -webkit-box-direction: normal; 35 | -webkit-flex-direction: column; 36 | flex-direction: column; 37 | } 38 | .uni-list--border { 39 | position: relative; 40 | z-index: -1; 41 | } 42 | .uni-list--border-top { 43 | position: absolute; 44 | top: 0; 45 | right: 0; 46 | left: 0; 47 | height: 1px; 48 | -webkit-transform: scaleY(0.5); 49 | transform: scaleY(0.5); 50 | background-color: #c8c7cc; 51 | z-index: 1; 52 | } 53 | .uni-list--border-bottom { 54 | position: absolute; 55 | bottom: 0; 56 | right: 0; 57 | left: 0; 58 | height: 1px; 59 | -webkit-transform: scaleY(0.5); 60 | transform: scaleY(0.5); 61 | background-color: #c8c7cc; 62 | } 63 | 64 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/uni-ui/uni-load-more/uni-load-more.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/cart/cart.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/cart/cart.wxml: -------------------------------------------------------------------------------- 1 | {{item.name}}{{item.buynum}}{{item.sellprice}} -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/contact/contact.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "关于我们", 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/contact/contact.wxml: -------------------------------------------------------------------------------- 1 | 无锡极客信息技术有限公司:0510-81018661 ( 点击拨打 )无锡新吴区震泽路18号国家软件园巨蟹座B座一楼 -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/contact/contact.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /** 3 | * 这里是uni-app内置的常用样式变量 4 | * 5 | * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 6 | * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App 7 | * 8 | */ 9 | /** 10 | * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 11 | * 12 | * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 13 | */ 14 | /* 颜色变量 */ 15 | /* 行为相关颜色 */ 16 | /* 文字基本颜色 */ 17 | /* 背景颜色 */ 18 | /* 边框颜色 */ 19 | /* 尺寸变量 */ 20 | /* 文字尺寸 */ 21 | /* 图片尺寸 */ 22 | /* Border Radius */ 23 | /* 水平间距 */ 24 | /* 垂直间距 */ 25 | /* 透明度 */ 26 | /* 文章场景相关 */ 27 | .contact .img { 28 | width: 750rpx; 29 | height: 320rpx; 30 | } 31 | .contact .info { 32 | padding: 10rpx 20rpx; 33 | font-size: 30rpx; 34 | } 35 | .contact .info view { 36 | line-height: 80rpx; 37 | border-bottom: 1px solid #eee; 38 | } 39 | .contact .map { 40 | width: 750rpx; 41 | height: 750rpx; 42 | } 43 | 44 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/goods/goods.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "极客超市", 3 | "enablePullDownRefresh": true, 4 | "usingComponents": { 5 | "uni-load-more": "/components/uni-ui/uni-load-more/uni-load-more", 6 | "goodlist": "/components/goodlist/goodlist" 7 | } 8 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/goods/goods.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/goodsdetail/goodsdetail.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "商品详情", 3 | "usingComponents": { 4 | "uni-goods-nav": "/components/uni-ui/uni-goods-nav/uni-goods-nav" 5 | } 6 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/goodsdetail/goodsdetail.wxml: -------------------------------------------------------------------------------- 1 | {{"¥"+info.sell_price}}{{"¥"+info.market_price}}{{info.title}}{{"货号:"+info.goods_no}}{{"库存:"+info.stock_quantity}}详情介绍 -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/goodsdetail/goodsdetail.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /** 3 | * 这里是uni-app内置的常用样式变量 4 | * 5 | * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 6 | * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App 7 | * 8 | */ 9 | /** 10 | * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 11 | * 12 | * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 13 | */ 14 | /* 颜色变量 */ 15 | /* 行为相关颜色 */ 16 | /* 文字基本颜色 */ 17 | /* 背景颜色 */ 18 | /* 边框颜色 */ 19 | /* 尺寸变量 */ 20 | /* 文字尺寸 */ 21 | /* 图片尺寸 */ 22 | /* Border Radius */ 23 | /* 水平间距 */ 24 | /* 垂直间距 */ 25 | /* 透明度 */ 26 | /* 文章场景相关 */ 27 | .goods swiper { 28 | height: 700rpx; 29 | } 30 | .goods swiper image { 31 | width: 100%; 32 | height: 100%; 33 | } 34 | .good_info { 35 | padding: 10px; 36 | position: relative; 37 | } 38 | .good_info .price { 39 | font-size: 35rpx; 40 | color: pink; 41 | line-height: 80rpx; 42 | } 43 | .good_info .price text:nth-child(2) { 44 | color: #ccc; 45 | font-size: 28rpx; 46 | text-decoration: line-through; 47 | margin-left: 20rpx; 48 | } 49 | .good_info .goods_title { 50 | font-size: 32rpx; 51 | line-height: 60rpx; 52 | } 53 | .good_info .goods_nav { 54 | position: fixed; 55 | bottom: 0; 56 | width: 100%; 57 | } 58 | .good_detail { 59 | padding-bottom: 50px; 60 | } 61 | .good_detail .tit { 62 | font-size: 32rpx; 63 | padding-left: 10px; 64 | border-bottom: 1px solid #eee; 65 | line-height: 70rpx; 66 | } 67 | .good_detail .content { 68 | padding: 10px; 69 | font-size: 28rpx; 70 | color: #333; 71 | line-height: 50rpx; 72 | } 73 | 74 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "首页", 3 | "onReachBottomDistance": 20, 4 | "usingComponents": { 5 | "uni-badge": "/components/uni-ui/uni-badge/uni-badge", 6 | "uni-grid": "/components/uni-ui/uni-grid/uni-grid", 7 | "uni-grid-item": "/components/uni-ui/uni-grid-item/uni-grid-item", 8 | "uni-load-more": "/components/uni-ui/uni-load-more/uni-load-more", 9 | "goodlist": "/components/goodlist/goodlist" 10 | } 11 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/index/index.wxml: -------------------------------------------------------------------------------- 1 | {{item.title}} -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/index/index.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /** 3 | * 这里是uni-app内置的常用样式变量 4 | * 5 | * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 6 | * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App 7 | * 8 | */ 9 | /** 10 | * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 11 | * 12 | * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 13 | */ 14 | /* 颜色变量 */ 15 | /* 行为相关颜色 */ 16 | /* 文字基本颜色 */ 17 | /* 背景颜色 */ 18 | /* 边框颜色 */ 19 | /* 尺寸变量 */ 20 | /* 文字尺寸 */ 21 | /* 图片尺寸 */ 22 | /* Border Radius */ 23 | /* 水平间距 */ 24 | /* 垂直间距 */ 25 | /* 透明度 */ 26 | /* 文章场景相关 */ 27 | .home swiper { 28 | height: 380rpx; 29 | } 30 | .home swiper image { 31 | width: 750rpx; 32 | height: 380rpx; 33 | } 34 | .home .uni-grid-item { 35 | text-align: center; 36 | } 37 | .home .uni-grid-item .iconfont { 38 | background: pink; 39 | line-height: 90rpx; 40 | width: 100rpx; 41 | height: 100rpx; 42 | border-radius: 90px; 43 | margin: 10rpx auto; 44 | font-size: 25px; 45 | } 46 | 47 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/member/member.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/member/member.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/news/news.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "咨询列表", 3 | "usingComponents": { 4 | "uni-list": "/components/uni-ui/uni-list/uni-list", 5 | "uni-list-item": "/components/uni-ui/uni-list-item/uni-list-item" 6 | } 7 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/news/news.wxml: -------------------------------------------------------------------------------- 1 | {{item.$orig.title}}{{"发表时间:"+item.f0}}{{"浏览:"+(item.$orig.click+123)+"次"}} -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/news/news.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /** 3 | * 这里是uni-app内置的常用样式变量 4 | * 5 | * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 6 | * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App 7 | * 8 | */ 9 | /** 10 | * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 11 | * 12 | * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 13 | */ 14 | /* 颜色变量 */ 15 | /* 行为相关颜色 */ 16 | /* 文字基本颜色 */ 17 | /* 背景颜色 */ 18 | /* 边框颜色 */ 19 | /* 尺寸变量 */ 20 | /* 文字尺寸 */ 21 | /* 图片尺寸 */ 22 | /* Border Radius */ 23 | /* 水平间距 */ 24 | /* 垂直间距 */ 25 | /* 透明度 */ 26 | /* 文章场景相关 */ 27 | .item { 28 | padding: 5px 10px; 29 | position: relative; 30 | } 31 | .item .tit { 32 | font-size: 35rpx; 33 | font-weight: 800; 34 | } 35 | .item .info { 36 | font-size: 26rpx; 37 | margin-top: 20rpx; 38 | } 39 | .item .info text:nth-child(2) { 40 | margin-left: 20px; 41 | } 42 | 43 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/newsdetail/newsdetail.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "咨询详情", 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/newsdetail/newsdetail.wxml: -------------------------------------------------------------------------------- 1 | {{''+newsDetail.title+''}}{{"发表时间:"+$root.f0}}{{"浏览:"+newsDetail.click}} -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/newsdetail/newsdetail.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /** 3 | * 这里是uni-app内置的常用样式变量 4 | * 5 | * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 6 | * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App 7 | * 8 | */ 9 | /** 10 | * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 11 | * 12 | * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 13 | */ 14 | /* 颜色变量 */ 15 | /* 行为相关颜色 */ 16 | /* 文字基本颜色 */ 17 | /* 背景颜色 */ 18 | /* 边框颜色 */ 19 | /* 尺寸变量 */ 20 | /* 文字尺寸 */ 21 | /* 图片尺寸 */ 22 | /* Border Radius */ 23 | /* 水平间距 */ 24 | /* 垂直间距 */ 25 | /* 透明度 */ 26 | /* 文章场景相关 */ 27 | .news_detail { 28 | padding: 15rpx; 29 | } 30 | .news_detail .news_title { 31 | text-align: center; 32 | font-size: 35rpx; 33 | font-weight: 800; 34 | padding: 15rpx; 35 | } 36 | .news_detail .info { 37 | font-size: 28rpx; 38 | display: -webkit-box; 39 | display: -webkit-flex; 40 | display: flex; 41 | -webkit-box-pack: justify; 42 | -webkit-justify-content: space-between; 43 | justify-content: space-between; 44 | padding: 15rpx; 45 | } 46 | .news_detail .content { 47 | padding: 15rpx; 48 | font-size: 28rpx; 49 | color: gray; 50 | } 51 | 52 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/pics/pics.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/pics/pics.wxml: -------------------------------------------------------------------------------- 1 | {{''+item.title+''}}{{item.title}}暂无数据 -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/pics/pics.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /** 3 | * 这里是uni-app内置的常用样式变量 4 | * 5 | * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 6 | * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App 7 | * 8 | */ 9 | /** 10 | * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 11 | * 12 | * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 13 | */ 14 | /* 颜色变量 */ 15 | /* 行为相关颜色 */ 16 | /* 文字基本颜色 */ 17 | /* 背景颜色 */ 18 | /* 边框颜色 */ 19 | /* 尺寸变量 */ 20 | /* 文字尺寸 */ 21 | /* 图片尺寸 */ 22 | /* Border Radius */ 23 | /* 水平间距 */ 24 | /* 垂直间距 */ 25 | /* 透明度 */ 26 | /* 文章场景相关 */ 27 | .pics { 28 | height: 100%; 29 | display: -webkit-box; 30 | display: -webkit-flex; 31 | display: flex; 32 | } 33 | .pics .left { 34 | width: 200rpx; 35 | height: 100%; 36 | border-right: 1px solid #eee; 37 | } 38 | .pics .left view { 39 | height: 60px; 40 | line-height: 60px; 41 | color: #333; 42 | text-align: center; 43 | font-size: 30rpx; 44 | border-top: 1px solid #eee; 45 | } 46 | .pics .left .active { 47 | background: pink; 48 | color: #fff; 49 | } 50 | .pics .right { 51 | height: 100%; 52 | width: 520rpx; 53 | margin: 10rpx auto; 54 | } 55 | .pics .right .item image { 56 | width: 520rpx; 57 | height: 520rpx; 58 | border-radius: 5px; 59 | } 60 | .pics .right .item text { 61 | font-size: 30rpx; 62 | line-height: 60rpx; 63 | } 64 | 65 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/videos/videos.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/videos/videos.wxml: -------------------------------------------------------------------------------- 1 | 视频 -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/project.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "项目配置文件。", 3 | "packOptions": { 4 | "ignore": [] 5 | }, 6 | "setting": { 7 | "urlCheck": false, 8 | "es6": true, 9 | "minified": true 10 | }, 11 | "compileType": "miniprogram", 12 | "libVersion": "2.9.2", 13 | "appid": "wx2b2191caf5714f87", 14 | "projectname": "jkjk_shop", 15 | "simulatorType": "wechat", 16 | "simulatorPluginLibVersion": {}, 17 | "condition": { 18 | "search": { 19 | "current": -1, 20 | "list": [] 21 | }, 22 | "conversation": { 23 | "current": -1, 24 | "list": [] 25 | }, 26 | "game": { 27 | "current": -1, 28 | "list": [] 29 | }, 30 | "miniprogram": { 31 | "current": -1, 32 | "list": [] 33 | } 34 | } 35 | } -------------------------------------------------------------------------------- /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/sitemap34.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/sitemap63.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/fonts/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/dev/mp-weixin/static/fonts/iconfont.eot -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/fonts/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/dev/mp-weixin/static/fonts/iconfont.ttf -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/fonts/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/dev/mp-weixin/static/fonts/iconfont.woff -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/fonts/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/dev/mp-weixin/static/fonts/iconfont.woff2 -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/hmlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/dev/mp-weixin/static/hmlogo.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/icon/cart-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/dev/mp-weixin/static/icon/cart-active.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/icon/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/dev/mp-weixin/static/icon/cart.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/icon/home-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/dev/mp-weixin/static/icon/home-active.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/icon/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/dev/mp-weixin/static/icon/home.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/icon/member-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/dev/mp-weixin/static/icon/member-active.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/icon/member.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/dev/mp-weixin/static/icon/member.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/icon/news-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/dev/mp-weixin/static/icon/news-active.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/icon/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/dev/mp-weixin/static/icon/news.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/dev/mp-weixin/static/logo.png -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/static/uni.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WTTE/jikeapp/f2b3a7913b907e4bc3c206ec1e3d0461f1cdf2b4/unpackage/dist/dev/mp-weixin/static/uni.ttf -------------------------------------------------------------------------------- /utils/api.js: -------------------------------------------------------------------------------- 1 | //轮播图 get 2 | export const LunboUrl = "/api/getlunbo" 3 | 4 | //商品列表的 get 5 | export const GoodsUrl ="/api/getgoods" 6 | 7 | //缩略图 8 | export const ThumimagesUrl ="/api/getthumimages/" 9 | 10 | //商品信息 11 | export const GoodInfoUrl = "/api/goods/getinfo/" 12 | 13 | //商品详情 14 | export const GoodDescUrl = "/api/goods/getdesc/" 15 | 16 | //新闻列表 17 | export const NewsListUrl = "/api/getnewslist" 18 | 19 | //新闻详情 20 | export const NewsDetailUrl = "/api/getnew/" 21 | 22 | //图片分类 23 | export const ImageCategoryUrl = "/api/getimgcategory" 24 | 25 | //分类下的图片 26 | export const ImagesUrl= "/api/getimages/" -------------------------------------------------------------------------------- /utils/format.js: -------------------------------------------------------------------------------- 1 | export function formatRichText(html) { 2 | var html = new String(html) 3 | let newContent = html.replace(/]*>/gi, function(match, capture) { 4 | match = match.replace(/style="[^"]+"/gi, '').replace(/style='[^']+'/gi, ''); 5 | match = match.replace(/width="[^"]+"/gi, '').replace(/width='[^']+'/gi, ''); 6 | match = match.replace(/height="[^"]+"/gi, '').replace(/height='[^']+'/gi, ''); 7 | return match; 8 | }); 9 | newContent = newContent.replace(/style="[^"]+"/gi, function(match, capture) { 10 | match = match.replace(/width:[^;]+;/gi, 'max-width:100%;').replace(/width:[^;]+;/gi, 'max-width:100%;'); 11 | return match; 12 | }); 13 | newContent = newContent.replace(/]*\/>/gi, ''); 14 | newContent = newContent.replace(/\ 此时 proxy生效了,也就是说在h5中请求路径不需要加baseUrl 5 | // baseUrl + url ---> http://42.193.168.201:8082/api/getlunbo 此时配置的代理没有生效 6 | 7 | export function myRequestGet(url, data) { 8 | var requesturl = baseUrl+url; 9 | // #ifdef H5 10 | var requesturl = url; 11 | // #endif 12 | return new Promise((resolve, reject) => { 13 | uni.request({ 14 | url: requesturl, 15 | method: "GET", 16 | data: data, 17 | success: function(res) { 18 | resolve(res.data) 19 | }, 20 | fail: function(err) { 21 | reject(err) 22 | } 23 | }) 24 | }) 25 | } 26 | 27 | 28 | export function myRequestPost(url, data) { 29 | return new Promise((resolve, reject) => { 30 | uni.request({ 31 | url: baseUrl + url, 32 | header: { 33 | 'Content-Type': 'application/x-www-form-urlencoded' 34 | }, 35 | method: "POST", 36 | data: data, 37 | success: function(res) { 38 | resolve(res.data) 39 | }, 40 | fail: function(err) { 41 | reject(err) 42 | } 43 | }) 44 | }) 45 | } 46 | --------------------------------------------------------------------------------