├── .gitignore ├── LICENSE ├── README.md ├── app.js ├── app.json ├── app.wxss ├── components ├── bind-mobile │ ├── index.js │ ├── index.json │ ├── index.wxml │ ├── index.wxss │ └── sn.txt ├── date-time-selecter │ ├── index.js │ ├── index.json │ ├── index.wxml │ ├── index.wxss │ └── sn.txt ├── fuwuxieyi │ ├── index.js │ ├── index.json │ ├── index.wxml │ ├── index.wxss │ └── sn.txt ├── goods-pop │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── login │ ├── index.js │ ├── index.json │ ├── index.wxml │ ├── index.wxss │ └── sn.txt └── payment │ ├── index.js │ ├── index.json │ ├── index.wxml │ ├── index.wxss │ └── sn.txt ├── config.js ├── images ├── default.png ├── gift.png ├── home │ ├── goodslist.png │ ├── kanjia.png │ ├── miaosha.png │ ├── notice.png │ ├── pingtuan.png │ └── recommend.png ├── icon │ ├── car.svg │ ├── close.svg │ ├── close0.svg │ ├── coupons-active.svg │ ├── coupons-off.svg │ ├── delete.svg │ ├── edit.svg │ ├── fav0.svg │ ├── fav1.svg │ ├── go-l.svg │ ├── go-r.svg │ ├── kf.svg │ ├── list1.svg │ ├── list2.svg │ ├── next.png │ ├── next.svg │ ├── pos-gray.svg │ ├── search.svg │ ├── shop-on.svg │ ├── shop.svg │ ├── tel-gray.svg │ └── time-gray.svg ├── live.png ├── nav │ ├── cart-off.png │ ├── cart-on.png │ ├── coupon-off.png │ ├── coupon-on.png │ ├── fl-off.png │ ├── fl-on.png │ ├── home-off.png │ ├── home-on.png │ ├── my-off.png │ ├── my-on.png │ ├── order-off.png │ └── order-on.png ├── nologin.png ├── order-details │ ├── icon-address.png │ ├── icon-ddfh.png │ ├── icon-ddfk.png │ ├── icon-ddgb.png │ ├── icon-ddsh.png │ ├── icon-jycg.png │ └── icon-wuliu.png ├── order │ ├── fahuo.png │ ├── pj.png │ ├── shouhou.png │ ├── shouhuo.png │ └── topay.png ├── share │ ├── share1.png │ └── share2.png ├── start-left.png ├── start-right.png ├── trtc │ ├── avatar1_100.png │ ├── back.png │ ├── call.png │ ├── doubleroom.png │ └── hangup.png ├── upload.png ├── wx.jpg └── zw.png ├── jsconfig.json ├── miniprogram_npm ├── @vant │ └── weapp │ │ ├── action-sheet │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── area │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ └── index.wxss │ │ ├── button │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ └── index.wxss │ │ ├── calendar │ │ ├── calendar.wxml │ │ ├── components │ │ │ ├── header │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ └── month │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ ├── index.wxs │ │ │ │ └── index.wxss │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ ├── index.wxss │ │ ├── utils.d.ts │ │ ├── utils.js │ │ └── utils.wxs │ │ ├── card │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── cascader │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ └── index.wxss │ │ ├── cell-group │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── cell │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ └── index.wxss │ │ ├── checkbox-group │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── checkbox │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ └── index.wxss │ │ ├── circle │ │ ├── canvas.d.ts │ │ ├── canvas.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── col │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ └── index.wxss │ │ ├── collapse-item │ │ ├── animate.d.ts │ │ ├── animate.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── collapse │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── common │ │ ├── color.d.ts │ │ ├── color.js │ │ ├── component.d.ts │ │ ├── component.js │ │ ├── index.wxss │ │ ├── relation.d.ts │ │ ├── relation.js │ │ ├── style │ │ │ ├── clearfix.wxss │ │ │ ├── ellipsis.wxss │ │ │ ├── hairline.wxss │ │ │ ├── mixins │ │ │ │ ├── clearfix.wxss │ │ │ │ ├── ellipsis.wxss │ │ │ │ └── hairline.wxss │ │ │ └── var.wxss │ │ ├── utils.d.ts │ │ ├── utils.js │ │ ├── validator.d.ts │ │ ├── validator.js │ │ ├── version.d.ts │ │ └── version.js │ │ ├── config-provider │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxs │ │ ├── count-down │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxss │ │ ├── utils.d.ts │ │ └── utils.js │ │ ├── datetime-picker │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── definitions │ │ ├── index.d.ts │ │ └── index.js │ │ ├── dialog │ │ ├── dialog.d.ts │ │ ├── dialog.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── divider │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ └── index.wxss │ │ ├── dropdown-item │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxss │ │ ├── shared.d.ts │ │ └── shared.js │ │ ├── dropdown-menu │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ └── index.wxss │ │ ├── empty │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ └── index.wxss │ │ ├── field │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ ├── index.wxss │ │ ├── input.wxml │ │ ├── props.d.ts │ │ ├── props.js │ │ ├── textarea.wxml │ │ ├── types.d.ts │ │ └── types.js │ │ ├── goods-action-button │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── goods-action-icon │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── goods-action │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── grid-item │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ └── index.wxss │ │ ├── grid │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ └── index.wxss │ │ ├── icon │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ └── index.wxss │ │ ├── image │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ └── index.wxss │ │ ├── index-anchor │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── index-bar │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── info │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── loading │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ └── index.wxss │ │ ├── mixins │ │ ├── basic.d.ts │ │ ├── basic.js │ │ ├── button.d.ts │ │ ├── button.js │ │ ├── link.d.ts │ │ ├── link.js │ │ ├── page-scroll.d.ts │ │ ├── page-scroll.js │ │ ├── touch.d.ts │ │ ├── touch.js │ │ ├── transition.d.ts │ │ └── transition.js │ │ ├── nav-bar │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ └── index.wxss │ │ ├── notice-bar │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ └── index.wxss │ │ ├── notify │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ ├── index.wxss │ │ ├── notify.d.ts │ │ └── notify.js │ │ ├── overlay │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxss │ │ └── overlay.wxml │ │ ├── panel │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── picker-column │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ └── index.wxss │ │ ├── picker │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ ├── index.wxss │ │ ├── shared.d.ts │ │ ├── shared.js │ │ └── toolbar.wxml │ │ ├── popup │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ ├── index.wxss │ │ └── popup.wxml │ │ ├── progress │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ └── index.wxss │ │ ├── radio-group │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── radio │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ └── index.wxss │ │ ├── rate │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── row │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ └── index.wxss │ │ ├── search │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── share-sheet │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ ├── index.wxss │ │ ├── options.d.ts │ │ ├── options.js │ │ ├── options.json │ │ ├── options.wxml │ │ ├── options.wxs │ │ └── options.wxss │ │ ├── sidebar-item │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── sidebar │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── skeleton │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── slider │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ └── index.wxss │ │ ├── stepper │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ └── index.wxss │ │ ├── steps │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── sticky │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ └── index.wxss │ │ ├── submit-bar │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── swipe-cell │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── switch │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ └── index.wxss │ │ ├── tab │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── tabbar-item │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── tabbar │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── tabs │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ └── index.wxss │ │ ├── tag │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ └── index.wxss │ │ ├── toast │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxss │ │ ├── toast.d.ts │ │ └── toast.js │ │ ├── transition │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ └── index.wxss │ │ ├── tree-select │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ └── index.wxss │ │ ├── uploader │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxs │ │ ├── index.wxss │ │ ├── shared.d.ts │ │ ├── shared.js │ │ ├── utils.d.ts │ │ └── utils.js │ │ └── wxs │ │ ├── add-unit.wxs │ │ ├── array.wxs │ │ ├── bem.wxs │ │ ├── memoize.wxs │ │ ├── object.wxs │ │ ├── style.wxs │ │ └── utils.wxs ├── apifm-wxapi │ └── index.js ├── dayjs │ ├── index.js │ └── index.js.map ├── mp-html │ ├── index.js │ ├── index.json │ ├── index.wxml │ ├── index.wxss │ ├── node │ │ ├── node.js │ │ ├── node.json │ │ ├── node.wxml │ │ └── node.wxss │ └── parser.js ├── wxa-plugin-canvas │ ├── index │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ └── poster │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxss │ │ └── poster.js └── wxbarcode │ ├── index.js │ └── index.js.map ├── package.json ├── packageCps └── pages │ ├── goods-details │ ├── cps-jd.js │ ├── cps-jd.json │ ├── cps-jd.wxml │ ├── cps-jd.wxss │ ├── cps-pdd.js │ ├── cps-pdd.json │ ├── cps-pdd.wxml │ ├── cps-pdd.wxss │ ├── cps-taobao.js │ ├── cps-taobao.json │ ├── cps-taobao.wxml │ └── cps-taobao.wxss │ └── order-list │ ├── cps.js │ ├── cps.json │ ├── cps.wxml │ └── cps.wxss ├── packageFx ├── images │ └── index-top-bg.png └── pages │ ├── apply │ ├── form.js │ ├── form.json │ ├── form.wxml │ ├── form.wxss │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss │ ├── commisionLog │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss │ ├── hehuorenfenxiao │ ├── fxmember.js │ ├── fxmember.json │ ├── fxmember.wxml │ ├── fxmember.wxss │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss │ ├── index │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss │ ├── myusers │ ├── index.js │ ├── index.json │ ├── index.wxml │ ├── index.wxss │ ├── myusers-detail.js │ ├── myusers-detail.json │ ├── myusers-detail.wxml │ └── myusers-detail.wxss │ └── report │ ├── city.js │ ├── city.json │ ├── city.wxml │ ├── city.wxss │ ├── team.js │ ├── team.json │ ├── team.wxml │ └── team.wxss ├── packageStreamMedia ├── components │ ├── TRTCCalling │ │ ├── TRTCCalling.js │ │ ├── TRTCCalling.json │ │ ├── TRTCCalling.wxml │ │ ├── TRTCCalling.wxss │ │ ├── common │ │ │ └── constants.js │ │ ├── controller │ │ │ └── user-controller.js │ │ ├── libs │ │ │ └── mta_analysis.js │ │ ├── model │ │ │ ├── stream.js │ │ │ └── user.js │ │ ├── static │ │ │ ├── audio-active.png │ │ │ ├── audio-false.png │ │ │ ├── audio-true.png │ │ │ ├── avatar0_100.png │ │ │ ├── avatar1_100.png │ │ │ ├── avatar2_100.png │ │ │ ├── avatar3_100.png │ │ │ ├── avatar4_100.png │ │ │ ├── avatar5_100.png │ │ │ ├── hangup.png │ │ │ ├── micro-open.png │ │ │ ├── phone.png │ │ │ └── speaker-true.png │ │ ├── template │ │ │ ├── audio-template │ │ │ │ ├── audio-template.wxml │ │ │ │ └── audio-template.wxss │ │ │ └── video-template │ │ │ │ ├── video-template.wxml │ │ │ │ └── video-template.wxss │ │ └── utils │ │ │ ├── compare-version.js │ │ │ ├── environment.js │ │ │ ├── event.js │ │ │ └── tsignaling-wx.js │ └── like-dz │ │ ├── images-v2 │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png │ │ ├── images │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 16.png │ │ ├── 17.png │ │ ├── 18.png │ │ ├── 19.png │ │ ├── 2.png │ │ ├── 20.png │ │ ├── 21.png │ │ ├── 22.png │ │ ├── 23.png │ │ ├── 24.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png │ │ ├── like-dz.js │ │ ├── like-dz.json │ │ ├── like-dz.wxml │ │ └── like-dz.wxss ├── images │ ├── back.png │ ├── cart-icon.png │ ├── chat.png │ ├── chat02.png │ ├── fabulous.png │ ├── forward.png │ ├── goods.png │ ├── line.png │ ├── live │ │ ├── display.png │ │ ├── like.png │ │ ├── living.png │ │ ├── nav01.png │ │ ├── nav02.png │ │ ├── nav03.png │ │ └── nav04.png │ ├── meiyan2.png │ ├── people.png │ └── rotate.png └── pages │ ├── live-anchor │ ├── index.js │ ├── index.json │ ├── index.wxml │ ├── index.wxss │ ├── list.js │ ├── list.json │ ├── list.wxml │ └── list.wxss │ ├── live-client │ ├── client.js │ ├── client.json │ ├── client.wxml │ ├── client.wxss │ ├── list.js │ ├── list.json │ ├── list.wxml │ └── list.wxss │ └── videoCall │ ├── videoCall.js │ ├── videoCall.json │ ├── videoCall.wxml │ └── videoCall.wxss ├── pages ├── about │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── address-add │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── asset │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── card │ ├── logs.js │ ├── logs.json │ ├── logs.wxml │ └── logs.wxss ├── category │ ├── category.js │ ├── category.json │ ├── category.wxml │ └── category.wxss ├── cms │ ├── list.js │ ├── list.json │ ├── list.wxml │ └── list.wxss ├── coupons │ ├── index.js │ ├── index.json │ ├── index.wxml │ ├── index.wxss │ ├── merge.js │ ├── merge.json │ ├── merge.wxml │ └── merge.wxss ├── deposit │ ├── pay.js │ ├── pay.json │ ├── pay.wxml │ └── pay.wxss ├── goods-details │ ├── day.js │ ├── day.json │ ├── day.wxml │ ├── day.wxss │ ├── index.js │ ├── index.json │ ├── index.wxml │ ├── index.wxss │ ├── times01.js │ ├── times01.json │ ├── times01.wxml │ ├── times01.wxss │ ├── times02.js │ ├── times02.json │ ├── times02.wxml │ ├── times02.wxss │ ├── vop.js │ ├── vop.json │ ├── vop.wxml │ └── vop.wxss ├── goods │ ├── fav.js │ ├── fav.json │ ├── fav.wxml │ ├── fav.wxss │ ├── his.js │ ├── his.json │ ├── his.wxml │ ├── his.wxss │ ├── list-vop.js │ ├── list-vop.json │ ├── list-vop.wxml │ ├── list-vop.wxss │ ├── list.js │ ├── list.json │ ├── list.wxml │ └── list.wxss ├── help │ ├── detail.js │ ├── detail.json │ ├── detail.wxml │ ├── detail.wxss │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── idCheck │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── index │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── invoice │ ├── apply.js │ ├── apply.json │ ├── apply.wxml │ ├── apply.wxss │ ├── list.js │ ├── list.json │ ├── list.wxml │ └── list.wxss ├── live │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── login │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── maidan │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── my │ ├── feedback.js │ ├── feedback.json │ ├── feedback.wxml │ ├── feedback.wxss │ ├── index.js │ ├── index.json │ ├── index.wxml │ ├── index.wxss │ ├── info-menu.js │ ├── info-menu.json │ ├── info-menu.wxml │ ├── info-menu.wxss │ ├── info.js │ ├── info.json │ ├── info.wxml │ ├── info.wxss │ ├── setting.js │ ├── setting.json │ ├── setting.wxml │ ├── setting.wxss │ ├── user-code.js │ ├── user-code.json │ ├── user-code.wxml │ └── user-code.wxss ├── notagree │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── notice │ ├── index.js │ ├── index.json │ ├── index.wxml │ ├── index.wxss │ ├── show.js │ ├── show.json │ ├── show.wxml │ └── show.wxss ├── order-details │ ├── index.js │ ├── index.json │ ├── index.wxml │ ├── index.wxss │ ├── scan-result.js │ ├── scan-result.json │ ├── scan-result.wxml │ └── scan-result.wxss ├── order-list │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── order │ ├── refundApply.js │ ├── refundApply.json │ ├── refundApply.wxml │ └── refundApply.wxss ├── peisong │ ├── detail.js │ ├── detail.json │ ├── detail.wxml │ ├── detail.wxss │ ├── orders.js │ ├── orders.json │ ├── orders.wxml │ ├── orders.wxss │ ├── statistics.js │ ├── statistics.json │ ├── statistics.wxml │ └── statistics.wxss ├── pwd-pay │ ├── modify.js │ ├── modify.json │ ├── modify.wxml │ ├── modify.wxss │ ├── reset.js │ ├── reset.json │ ├── reset.wxml │ ├── reset.wxss │ ├── set.js │ ├── set.json │ ├── set.wxml │ └── set.wxss ├── raffle │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── recharge │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── recycle │ ├── index.js │ ├── index.json │ ├── index.wxml │ ├── index.wxss │ ├── order-detail.js │ ├── order-detail.json │ ├── order-detail.wxml │ ├── order-detail.wxss │ ├── orders.js │ ├── orders.json │ ├── orders.wxml │ └── orders.wxss ├── score-excharge │ ├── growth.js │ ├── growth.json │ ├── growth.wxml │ ├── growth.wxss │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── score │ ├── growth.js │ ├── growth.json │ ├── growth.wxml │ ├── growth.wxss │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── search │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── select-address │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── shop-cart │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── shop │ ├── select.js │ ├── select.json │ ├── select.wxml │ └── select.wxss ├── sign │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── start │ ├── start.js │ ├── start.json │ ├── start.wxml │ └── start.wxss ├── template-cart │ ├── template-cart.js │ ├── template-cart.wxml │ └── template-cart.wxss ├── test │ ├── wifi.js │ ├── wifi.json │ ├── wifi.wxml │ └── wifi.wxss ├── to-pay-order │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── withdraw │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss └── wuliu │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── project.config.json ├── project.private.config.json ├── sitemap.json ├── typings └── wx.d.ts └── utils ├── address_parse.js ├── auth.js ├── image.js ├── pay.js ├── tools.js └── tools.wxs /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | package-lock.json 3 | node_modules/ 4 | .DS_Store -------------------------------------------------------------------------------- /components/bind-mobile/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | 5 | } 6 | } -------------------------------------------------------------------------------- /components/bind-mobile/index.wxml: -------------------------------------------------------------------------------- 1 | 8 | 9 | {{ title }} 10 | 15 | 16 | 立即绑定 17 | 18 | 19 | -------------------------------------------------------------------------------- /components/bind-mobile/index.wxss: -------------------------------------------------------------------------------- 1 | .pop-main { 2 | display: flex; 3 | flex-direction: column; 4 | } 5 | .title { 6 | padding: 32rpx; 7 | text-align: center; 8 | } 9 | .btn-box { 10 | padding: 32rpx; 11 | } -------------------------------------------------------------------------------- /components/bind-mobile/sn.txt: -------------------------------------------------------------------------------- 1 | app.json usingComponents 加上 2 | "bind-mobile": "/components/bind-mobile/index", 3 | 4 | 5 | 在需要的页面上加这句代码即可 6 | 13 | 14 | bindMobileOk(e) { 15 | console.log(e.detail); // 这里是组件里data的数据 16 | this.setData({ 17 | bindMobileShow: false 18 | }) 19 | }, 20 | bindMobileCancel() { 21 | this.setData({ 22 | bindMobileShow: false 23 | }) 24 | }, -------------------------------------------------------------------------------- /components/date-time-selecter/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | 5 | } 6 | } -------------------------------------------------------------------------------- /components/date-time-selecter/index.wxss: -------------------------------------------------------------------------------- 1 | .pop-main { 2 | height: 80vh; 3 | display: flex; 4 | flex-direction: column; 5 | } 6 | .title { 7 | padding: 32rpx; 8 | text-align: center; 9 | } 10 | .main { 11 | flex: 1; 12 | overflow: hidden; 13 | display: flex; 14 | } 15 | .l { 16 | width: 250rpx; 17 | height: 100%; 18 | } 19 | .ll { 20 | width: 250rpx; 21 | } 22 | .r { 23 | flex: 1; 24 | } 25 | .time-box { 26 | padding: 32rpx; 27 | display: flex; 28 | justify-content: space-between; 29 | } 30 | .time-l-active { 31 | font-weight: bold; 32 | } 33 | .btn-box { 34 | padding: 32rpx; 35 | } -------------------------------------------------------------------------------- /components/date-time-selecter/sn.txt: -------------------------------------------------------------------------------- 1 | app.json usingComponents 加上 2 | "date-time-selecter": "/components/date-time-selecter/index", 3 | 4 | 5 | 在需要的页面上加这句代码即可 6 | 14 | 15 | dayTimeSelectOK(e) { 16 | console.log(e.detail); // 这里是组件里data的数据 17 | this.setData({ 18 | show: false 19 | }) 20 | }, 21 | dayTimeSelectCancel() { 22 | this.setData({ 23 | show: false 24 | }) 25 | }, -------------------------------------------------------------------------------- /components/fuwuxieyi/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | 5 | } 6 | } -------------------------------------------------------------------------------- /components/fuwuxieyi/index.wxss: -------------------------------------------------------------------------------- 1 | .btn-add-box-popup .t { 2 | font-size: 36rpx; 3 | text-align: center; 4 | height: 88rpx; 5 | line-height: 88rpx; 6 | font-weight: bold; 7 | } 8 | .btn-add-box-popup .bd { 9 | padding: 0 32rpx; 10 | padding-bottom: 32rpx; 11 | } 12 | .btn-add-box-popup .del-btn { 13 | margin-top: 32rpx; 14 | } 15 | 16 | .content { 17 | width: 600rpx; 18 | padding: 32rpx; 19 | font-size: 32rpx; 20 | line-height: 54rpx; 21 | } 22 | .link { 23 | color: #10AEFF; 24 | } 25 | .btn-group { 26 | padding: 32rpx; 27 | display: flex; 28 | justify-content: space-around; 29 | } 30 | .mt32 { 31 | margin-top: 32rpx; 32 | } -------------------------------------------------------------------------------- /components/fuwuxieyi/sn.txt: -------------------------------------------------------------------------------- 1 | 在需要的页面上加这句代码即可 2 | 3 | k 为页面唯一编号,随便命名即可 4 | 不传k,每次都会弹出 -------------------------------------------------------------------------------- /components/goods-pop/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | 5 | } 6 | } -------------------------------------------------------------------------------- /components/login/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | 5 | } 6 | } -------------------------------------------------------------------------------- /components/login/sn.txt: -------------------------------------------------------------------------------- 1 | 1. app.json, usingComponents "login": "/components/login/index", 2 | 2. 在需要的页面上加这句代码即可 3 | 4 | show 控制弹框是否显示 5 | avatarUrl 回显的头像 6 | name 回显的昵称 -------------------------------------------------------------------------------- /components/payment/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | 5 | } 6 | } -------------------------------------------------------------------------------- /components/payment/index.wxss: -------------------------------------------------------------------------------- 1 | .pop-main { 2 | display: flex; 3 | flex-direction: column; 4 | } 5 | .title { 6 | padding: 32rpx; 7 | text-align: center; 8 | } 9 | .btn-box { 10 | padding: 32rpx; 11 | } 12 | .alipayQrcode { 13 | margin-left: 50rpx; 14 | } 15 | .alipayQrcodeText { 16 | text-align: center; 17 | color: rgb(201, 25, 48); 18 | font-size: 24rpx; 19 | } 20 | .amount { 21 | padding: 16rpx; 22 | text-align: center; 23 | color: #e64340; 24 | font-weight: bold; 25 | font-size: 52rpx; 26 | } 27 | .amount text { 28 | font-weight: normal; 29 | font-size: 28rpx; 30 | } -------------------------------------------------------------------------------- /components/payment/sn.txt: -------------------------------------------------------------------------------- 1 | app.json usingComponents 加上 2 | "payment": "/components/payment/index", 3 | 4 | 5 | 在需要的页面上加这句代码即可 6 | 15 | 16 | paymentOk(e) { 17 | console.log(e.detail); // 这里是组件里data的数据 18 | this.setData({ 19 | paymentShow: false 20 | }) 21 | }, 22 | paymentCancel() { 23 | this.setData({ 24 | paymentShow: false 25 | }) 26 | }, -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | version: '25.04.29', 3 | note: '申请发票转发的图片更新', // 这个为版本描述,无需修改 4 | subDomain: 'tz', // 此处改成你自己的专属域名。什么是专属域名?请看教程 https://www.it120.cc/help/qr6l4m.html 5 | merchantId: 951, // 商户ID,可在后台工厂设置-->商户信息查看 6 | sdkAppID: 1400450467, // 腾讯实时音视频应用编号,请看教程 https://www.it120.cc/help/nxoqsl.html 7 | bindSeller: false, // true 开启三级分销抢客; false 为不开启 8 | customerServiceType: 'QW', // 客服类型,QW为企业微信,需要在后台系统参数配置企业ID和客服URL,XCX 为小程序的默认客服 9 | openIdAutoRegister: true, // 用户打开小程序的时候自动注册新用户【用户不存在的时候】 10 | } -------------------------------------------------------------------------------- /images/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/default.png -------------------------------------------------------------------------------- /images/gift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/gift.png -------------------------------------------------------------------------------- /images/home/goodslist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/home/goodslist.png -------------------------------------------------------------------------------- /images/home/kanjia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/home/kanjia.png -------------------------------------------------------------------------------- /images/home/miaosha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/home/miaosha.png -------------------------------------------------------------------------------- /images/home/notice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/home/notice.png -------------------------------------------------------------------------------- /images/home/pingtuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/home/pingtuan.png -------------------------------------------------------------------------------- /images/home/recommend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/home/recommend.png -------------------------------------------------------------------------------- /images/icon/close.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/icon/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/icon/next.png -------------------------------------------------------------------------------- /images/live.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/live.png -------------------------------------------------------------------------------- /images/nav/cart-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/nav/cart-off.png -------------------------------------------------------------------------------- /images/nav/cart-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/nav/cart-on.png -------------------------------------------------------------------------------- /images/nav/coupon-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/nav/coupon-off.png -------------------------------------------------------------------------------- /images/nav/coupon-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/nav/coupon-on.png -------------------------------------------------------------------------------- /images/nav/fl-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/nav/fl-off.png -------------------------------------------------------------------------------- /images/nav/fl-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/nav/fl-on.png -------------------------------------------------------------------------------- /images/nav/home-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/nav/home-off.png -------------------------------------------------------------------------------- /images/nav/home-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/nav/home-on.png -------------------------------------------------------------------------------- /images/nav/my-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/nav/my-off.png -------------------------------------------------------------------------------- /images/nav/my-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/nav/my-on.png -------------------------------------------------------------------------------- /images/nav/order-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/nav/order-off.png -------------------------------------------------------------------------------- /images/nav/order-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/nav/order-on.png -------------------------------------------------------------------------------- /images/nologin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/nologin.png -------------------------------------------------------------------------------- /images/order-details/icon-address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/order-details/icon-address.png -------------------------------------------------------------------------------- /images/order-details/icon-ddfh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/order-details/icon-ddfh.png -------------------------------------------------------------------------------- /images/order-details/icon-ddfk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/order-details/icon-ddfk.png -------------------------------------------------------------------------------- /images/order-details/icon-ddgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/order-details/icon-ddgb.png -------------------------------------------------------------------------------- /images/order-details/icon-ddsh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/order-details/icon-ddsh.png -------------------------------------------------------------------------------- /images/order-details/icon-jycg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/order-details/icon-jycg.png -------------------------------------------------------------------------------- /images/order-details/icon-wuliu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/order-details/icon-wuliu.png -------------------------------------------------------------------------------- /images/order/fahuo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/order/fahuo.png -------------------------------------------------------------------------------- /images/order/pj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/order/pj.png -------------------------------------------------------------------------------- /images/order/shouhou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/order/shouhou.png -------------------------------------------------------------------------------- /images/order/shouhuo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/order/shouhuo.png -------------------------------------------------------------------------------- /images/order/topay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/order/topay.png -------------------------------------------------------------------------------- /images/share/share1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/share/share1.png -------------------------------------------------------------------------------- /images/share/share2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/share/share2.png -------------------------------------------------------------------------------- /images/start-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/start-left.png -------------------------------------------------------------------------------- /images/start-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/start-right.png -------------------------------------------------------------------------------- /images/trtc/avatar1_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/trtc/avatar1_100.png -------------------------------------------------------------------------------- /images/trtc/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/trtc/back.png -------------------------------------------------------------------------------- /images/trtc/call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/trtc/call.png -------------------------------------------------------------------------------- /images/trtc/doubleroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/trtc/doubleroom.png -------------------------------------------------------------------------------- /images/trtc/hangup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/trtc/hangup.png -------------------------------------------------------------------------------- /images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/upload.png -------------------------------------------------------------------------------- /images/wx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/wx.jpg -------------------------------------------------------------------------------- /images/zw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/images/zw.png -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es2015", 4 | "module": "commonjs" 5 | } 6 | } -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/action-sheet/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/action-sheet/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-popup": "../popup/index", 6 | "van-loading": "../loading/index" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/area/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/area/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-picker": "../picker/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/area/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 21 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/area/index.wxs: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | function displayColumns(columns, columnsNum) { 3 | return columns.slice(0, +columnsNum); 4 | } 5 | 6 | module.exports = { 7 | displayColumns: displayColumns, 8 | }; 9 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/area/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss'; -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/button/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/button/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-loading": "../loading/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/calendar/components/header/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/calendar/components/header/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/calendar/components/header/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {{ title }} 5 | 6 | 7 | 8 | {{ subtitle }} 9 | 10 | 11 | 12 | 13 | {{ item }} 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/calendar/components/header/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../common/index.wxss';.van-calendar__header{box-shadow:var(--calendar-header-box-shadow,0 2px 10px hsla(220,1%,50%,.16));flex-shrink:0}.van-calendar__header-subtitle,.van-calendar__header-title{font-weight:var(--font-weight-bold,500);height:var(--calendar-header-title-height,44px);line-height:var(--calendar-header-title-height,44px);text-align:center}.van-calendar__header-title+.van-calendar__header-title,.van-calendar__header-title:empty{display:none}.van-calendar__header-title:empty+.van-calendar__header-title{display:block!important}.van-calendar__weekdays{display:flex}.van-calendar__weekday{flex:1;font-size:var(--calendar-weekdays-font-size,12px);line-height:var(--calendar-weekdays-height,30px);text-align:center} -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/calendar/components/month/index.d.ts: -------------------------------------------------------------------------------- 1 | export interface Day { 2 | date: Date; 3 | type: string; 4 | text: number; 5 | bottomInfo?: string; 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/calendar/components/month/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/calendar/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/calendar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "header": "./components/header/index", 5 | "month": "./components/month/index", 6 | "van-button": "../button/index", 7 | "van-popup": "../popup/index", 8 | "van-toast": "../toast/index" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/calendar/utils.wxs: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | function getMonthEndDay(year, month) { 3 | return 32 - getDate(year, month - 1, 32).getDate(); 4 | } 5 | 6 | function compareMonth(date1, date2) { 7 | date1 = getDate(date1); 8 | date2 = getDate(date2); 9 | 10 | var year1 = date1.getFullYear(); 11 | var year2 = date2.getFullYear(); 12 | var month1 = date1.getMonth(); 13 | var month2 = date2.getMonth(); 14 | 15 | if (year1 === year2) { 16 | return month1 === month2 ? 0 : month1 > month2 ? 1 : -1; 17 | } 18 | 19 | return year1 > year2 ? 1 : -1; 20 | } 21 | 22 | module.exports = { 23 | getMonthEndDay: getMonthEndDay, 24 | compareMonth: compareMonth 25 | }; 26 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/card/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/card/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-tag": "../tag/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/cascader/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/cascader/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-tab": "../tab/index", 6 | "van-tabs": "../tabs/index" 7 | } 8 | } -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/cascader/index.wxs: -------------------------------------------------------------------------------- 1 | var utils = require('../wxs/utils.wxs'); 2 | var style = require('../wxs/style.wxs'); 3 | 4 | function isSelected(tab, valueKey, option) { 5 | return tab.selected && tab.selected[valueKey] === option[valueKey] 6 | } 7 | 8 | function optionClass(tab, valueKey, option) { 9 | return utils.bem('cascader__option', { selected: isSelected(tab, valueKey, option), disabled: option.disabled }) 10 | } 11 | 12 | function optionStyle(data) { 13 | var color = data.option.color || (isSelected(data.tab, data.valueKey, data.option) ? data.activeColor : undefined); 14 | return style({ 15 | color 16 | }); 17 | } 18 | 19 | 20 | module.exports = { 21 | isSelected: isSelected, 22 | optionClass: optionClass, 23 | optionStyle: optionStyle, 24 | }; -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/cell-group/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/cell-group/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | var component_1 = require("../common/component"); 4 | (0, component_1.VantComponent)({ 5 | props: { 6 | title: String, 7 | border: { 8 | type: Boolean, 9 | value: true, 10 | }, 11 | inset: Boolean, 12 | }, 13 | }); 14 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/cell-group/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/cell-group/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | {{ title }} 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/cell-group/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-cell-group--inset{border-radius:var(--cell-group-inset-border-radius,8px);margin:var(--cell-group-inset-padding,0 16px);overflow:hidden}.van-cell-group__title{color:var(--cell-group-title-color,#969799);font-size:var(--cell-group-title-font-size,14px);line-height:var(--cell-group-title-line-height,16px);padding:var(--cell-group-title-padding,16px 16px 8px)}.van-cell-group__title--inset{padding:var(--cell-group-inset-title-padding,16px 16px 8px 32px)} -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/cell/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/cell/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/cell/index.wxs: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | var style = require('../wxs/style.wxs'); 3 | var addUnit = require('../wxs/add-unit.wxs'); 4 | 5 | function titleStyle(data) { 6 | return style([ 7 | { 8 | 'max-width': addUnit(data.titleWidth), 9 | 'min-width': addUnit(data.titleWidth), 10 | }, 11 | data.titleStyle, 12 | ]); 13 | } 14 | 15 | module.exports = { 16 | titleStyle: titleStyle, 17 | }; 18 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/checkbox-group/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/checkbox-group/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/checkbox-group/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/checkbox-group/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-checkbox-group--horizontal{display:flex;flex-wrap:wrap} -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/checkbox/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/checkbox/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/checkbox/index.wxs: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | var style = require('../wxs/style.wxs'); 3 | var addUnit = require('../wxs/add-unit.wxs'); 4 | 5 | function iconStyle(checkedColor, value, disabled, parentDisabled, iconSize) { 6 | var styles = { 7 | 'font-size': addUnit(iconSize), 8 | }; 9 | 10 | if (checkedColor && value && !disabled && !parentDisabled) { 11 | styles['border-color'] = checkedColor; 12 | styles['background-color'] = checkedColor; 13 | } 14 | 15 | return style(styles); 16 | } 17 | 18 | module.exports = { 19 | iconStyle: iconStyle, 20 | }; 21 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/circle/canvas.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | type CanvasContext = WechatMiniprogram.CanvasContext; 3 | export declare function adaptor(ctx: CanvasContext & Record): CanvasContext; 4 | export {}; 5 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/circle/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/circle/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/circle/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | {{ text }} 9 | 10 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/circle/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-circle{display:inline-block;position:relative;text-align:center}.van-circle__text{color:var(--circle-text-color,#323233);left:0;position:absolute;top:50%;transform:translateY(-50%);width:100%} -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/col/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/col/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | var relation_1 = require("../common/relation"); 4 | var component_1 = require("../common/component"); 5 | (0, component_1.VantComponent)({ 6 | relation: (0, relation_1.useParent)('row'), 7 | props: { 8 | span: Number, 9 | offset: Number, 10 | }, 11 | }); 12 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/col/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/col/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/col/index.wxs: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | var style = require('../wxs/style.wxs'); 3 | var addUnit = require('../wxs/add-unit.wxs'); 4 | 5 | function rootStyle(data) { 6 | if (!data.gutter) { 7 | return ''; 8 | } 9 | 10 | return style({ 11 | 'padding-right': addUnit(data.gutter / 2), 12 | 'padding-left': addUnit(data.gutter / 2), 13 | }); 14 | } 15 | 16 | module.exports = { 17 | rootStyle: rootStyle, 18 | }; 19 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/collapse-item/animate.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export declare function setContentAnimate(context: WechatMiniprogram.Component.TrivialInstance, expanded: boolean, mounted: boolean): void; 3 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/collapse-item/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/collapse-item/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-cell": "../cell/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/collapse/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/collapse/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/collapse/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/collapse/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss'; -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/common/color.d.ts: -------------------------------------------------------------------------------- 1 | export declare const RED = "#ee0a24"; 2 | export declare const BLUE = "#1989fa"; 3 | export declare const WHITE = "#fff"; 4 | export declare const GREEN = "#07c160"; 5 | export declare const ORANGE = "#ff976a"; 6 | export declare const GRAY = "#323233"; 7 | export declare const GRAY_DARK = "#969799"; 8 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/common/color.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.GRAY_DARK = exports.GRAY = exports.ORANGE = exports.GREEN = exports.WHITE = exports.BLUE = exports.RED = void 0; 4 | exports.RED = '#ee0a24'; 5 | exports.BLUE = '#1989fa'; 6 | exports.WHITE = '#fff'; 7 | exports.GREEN = '#07c160'; 8 | exports.ORANGE = '#ff976a'; 9 | exports.GRAY = '#323233'; 10 | exports.GRAY_DARK = '#969799'; 11 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/common/component.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | import { VantComponentOptions } from 'definitions/index'; 3 | declare function VantComponent(vantOptions: VantComponentOptions): void; 4 | export { VantComponent }; 5 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/common/relation.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | type TrivialInstance = WechatMiniprogram.Component.TrivialInstance; 3 | export declare function useParent(name: string, onEffect?: (this: TrivialInstance) => void): { 4 | relations: { 5 | [x: string]: WechatMiniprogram.Component.RelationOption; 6 | }; 7 | mixin: string; 8 | }; 9 | export declare function useChildren(name: string, onEffect?: (this: TrivialInstance, target: TrivialInstance) => void): { 10 | relations: { 11 | [x: string]: WechatMiniprogram.Component.RelationOption; 12 | }; 13 | mixin: string; 14 | }; 15 | export {}; 16 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/common/style/clearfix.wxss: -------------------------------------------------------------------------------- 1 | .van-clearfix:after{clear:both;content:"";display:table} -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/common/style/ellipsis.wxss: -------------------------------------------------------------------------------- 1 | .van-ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.van-multi-ellipsis--l2{-webkit-line-clamp:2}.van-multi-ellipsis--l2,.van-multi-ellipsis--l3{-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden;text-overflow:ellipsis}.van-multi-ellipsis--l3{-webkit-line-clamp:3} -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/common/style/mixins/clearfix.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/miniprogram_npm/@vant/weapp/common/style/mixins/clearfix.wxss -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/common/style/mixins/ellipsis.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/miniprogram_npm/@vant/weapp/common/style/mixins/ellipsis.wxss -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/common/style/mixins/hairline.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/miniprogram_npm/@vant/weapp/common/style/mixins/hairline.wxss -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/common/style/var.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/miniprogram_npm/@vant/weapp/common/style/var.wxss -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/common/validator.d.ts: -------------------------------------------------------------------------------- 1 | export declare function isFunction(val: unknown): val is Function; 2 | export declare function isPlainObject(val: unknown): val is Record; 3 | export declare function isPromise(val: unknown): val is Promise; 4 | export declare function isDef(value: unknown): boolean; 5 | export declare function isObj(x: unknown): x is Record; 6 | export declare function isNumber(value: string): boolean; 7 | export declare function isBoolean(value: unknown): value is boolean; 8 | export declare function isImageUrl(url: string): boolean; 9 | export declare function isVideoUrl(url: string): boolean; 10 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/common/version.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | interface WxWorkSystemInfo extends WechatMiniprogram.SystemInfo { 3 | environment?: 'wxwork'; 4 | } 5 | interface SystemInfo extends WxWorkSystemInfo, WechatMiniprogram.SystemInfo { 6 | } 7 | export declare function getSystemInfoSync(): SystemInfo; 8 | export declare function canIUseModel(): boolean; 9 | export declare function canIUseFormFieldButton(): boolean; 10 | export declare function canIUseAnimate(): boolean; 11 | export declare function canIUseGroupSetData(): boolean; 12 | export declare function canIUseNextTick(): boolean; 13 | export declare function canIUseCanvas2d(): boolean; 14 | export declare function canIUseGetUserProfile(): boolean; 15 | export {}; 16 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/config-provider/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/config-provider/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | var component_1 = require("../common/component"); 4 | (0, component_1.VantComponent)({ 5 | props: { 6 | themeVars: { 7 | type: Object, 8 | value: {}, 9 | }, 10 | }, 11 | }); 12 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/config-provider/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/config-provider/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/count-down/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/count-down/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/count-down/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{ formattedTime }} 4 | 5 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/count-down/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-count-down{color:var(--count-down-text-color,#323233);font-size:var(--count-down-font-size,14px);line-height:var(--count-down-line-height,20px)} -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/count-down/utils.d.ts: -------------------------------------------------------------------------------- 1 | export type TimeData = { 2 | days: number; 3 | hours: number; 4 | minutes: number; 5 | seconds: number; 6 | milliseconds: number; 7 | }; 8 | export declare function parseTimeData(time: number): TimeData; 9 | export declare function parseFormat(format: string, timeData: TimeData): string; 10 | export declare function isSameSecond(time1: number, time2: number): boolean; 11 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/datetime-picker/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/datetime-picker/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-picker": "../picker/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/datetime-picker/index.wxml: -------------------------------------------------------------------------------- 1 | 17 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/datetime-picker/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss'; -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/definitions/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/dialog/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/dialog/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-popup": "../popup/index", 5 | "van-button": "../button/index", 6 | "van-goods-action": "../goods-action/index", 7 | "van-goods-action-button": "../goods-action-button/index" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/divider/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/divider/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | var component_1 = require("../common/component"); 4 | (0, component_1.VantComponent)({ 5 | props: { 6 | dashed: Boolean, 7 | hairline: Boolean, 8 | contentPosition: String, 9 | fontSize: String, 10 | borderColor: String, 11 | textColor: String, 12 | customStyle: String, 13 | }, 14 | }); 15 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/divider/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/divider/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/divider/index.wxs: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | var style = require('../wxs/style.wxs'); 3 | var addUnit = require('../wxs/add-unit.wxs'); 4 | 5 | function rootStyle(data) { 6 | return style([ 7 | { 8 | 'border-color': data.borderColor, 9 | color: data.textColor, 10 | 'font-size': addUnit(data.fontSize), 11 | }, 12 | data.customStyle, 13 | ]); 14 | } 15 | 16 | module.exports = { 17 | rootStyle: rootStyle, 18 | }; 19 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/dropdown-item/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/dropdown-item/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-popup": "../popup/index", 5 | "van-cell": "../cell/index", 6 | "van-icon": "../icon/index" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/dropdown-item/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-dropdown-item{left:0;overflow:hidden;position:fixed;right:0}.van-dropdown-item__option{text-align:left}.van-dropdown-item__option--active .van-dropdown-item__icon,.van-dropdown-item__option--active .van-dropdown-item__title{color:var(--dropdown-menu-option-active-color,#ee0a24)}.van-dropdown-item--up{top:0}.van-dropdown-item--down{bottom:0}.van-dropdown-item__icon{display:block;line-height:inherit} -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/dropdown-item/shared.d.ts: -------------------------------------------------------------------------------- 1 | export interface Option { 2 | text: string; 3 | value: string | number; 4 | icon: string; 5 | } 6 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/dropdown-item/shared.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/dropdown-menu/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/dropdown-menu/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/dropdown-menu/index.wxs: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | function displayTitle(item) { 3 | if (item.title) { 4 | return item.title; 5 | } 6 | 7 | var match = item.options.filter(function(option) { 8 | return option.value === item.value; 9 | }); 10 | var displayTitle = match.length ? match[0].text : ''; 11 | return displayTitle; 12 | } 13 | 14 | module.exports = { 15 | displayTitle: displayTitle 16 | }; 17 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/empty/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/empty/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | var component_1 = require("../common/component"); 4 | (0, component_1.VantComponent)({ 5 | props: { 6 | description: String, 7 | image: { 8 | type: String, 9 | value: 'default', 10 | }, 11 | }, 12 | }); 13 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/empty/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/empty/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | {{ description }} 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/empty/index.wxs: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | var PRESETS = ['error', 'search', 'default', 'network']; 3 | 4 | function imageUrl(image) { 5 | if (PRESETS.indexOf(image) !== -1) { 6 | return 'https://img.yzcdn.cn/vant/empty-image-' + image + '.png'; 7 | } 8 | 9 | return image; 10 | } 11 | 12 | module.exports = { 13 | imageUrl: imageUrl, 14 | }; 15 | 16 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/empty/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-empty{align-items:center;box-sizing:border-box;display:flex;flex-direction:column;justify-content:center;padding:32px 0}.van-empty__image{height:160px;width:160px}.van-empty__image:empty{display:none}.van-empty__image__img{height:100%;width:100%}.van-empty__image:not(:empty)+.van-empty__image{display:none}.van-empty__description{color:#969799;font-size:14px;line-height:20px;margin-top:16px;padding:0 60px}.van-empty__description:empty,.van-empty__description:not(:empty)+.van-empty__description{display:none}.van-empty__bottom{margin-top:24px} -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/field/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/field/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-cell": "../cell/index", 5 | "van-icon": "../icon/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/field/index.wxs: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | var style = require('../wxs/style.wxs'); 3 | var addUnit = require('../wxs/add-unit.wxs'); 4 | 5 | function inputStyle(autosize) { 6 | if (autosize && autosize.constructor === 'Object') { 7 | return style({ 8 | 'min-height': addUnit(autosize.minHeight), 9 | 'max-height': addUnit(autosize.maxHeight), 10 | }); 11 | } 12 | 13 | return ''; 14 | } 15 | 16 | module.exports = { 17 | inputStyle: inputStyle, 18 | }; 19 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/field/props.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export declare const commonProps: WechatMiniprogram.Component.PropertyOption; 3 | export declare const inputProps: WechatMiniprogram.Component.PropertyOption; 4 | export declare const textareaProps: WechatMiniprogram.Component.PropertyOption; 5 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/field/types.d.ts: -------------------------------------------------------------------------------- 1 | export interface InputDetails { 2 | /** 输入框内容 */ 3 | value: string; 4 | /** 光标位置 */ 5 | cursor?: number; 6 | /** keyCode 为键值 (目前工具还不支持返回keyCode参数) `2.1.0` 起支持 */ 7 | keyCode?: number; 8 | } 9 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/field/types.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/goods-action-button/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/goods-action-button/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-button": "../button/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/goods-action-icon/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/goods-action-icon/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-button": "../button/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/goods-action-icon/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-goods-action-icon{border:none!important;color:var(--goods-action-icon-text-color,#646566)!important;display:flex!important;flex-direction:column;font-size:var(--goods-action-icon-font-size,10px)!important;height:var(--goods-action-icon-height,50px)!important;justify-content:center!important;line-height:1!important;min-width:var(--goods-action-icon-width,48px)}.van-goods-action-icon__icon{color:var(--goods-action-icon-color,#323233);display:flex;font-size:var(--goods-action-icon-size,18px);margin:0 auto 5px} -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/goods-action/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/goods-action/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | var component_1 = require("../common/component"); 4 | var relation_1 = require("../common/relation"); 5 | (0, component_1.VantComponent)({ 6 | relation: (0, relation_1.useChildren)('goods-action-button', function () { 7 | this.children.forEach(function (item) { 8 | item.updateStyle(); 9 | }); 10 | }), 11 | props: { 12 | safeAreaInsetBottom: { 13 | type: Boolean, 14 | value: true, 15 | }, 16 | }, 17 | }); 18 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/goods-action/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/goods-action/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/goods-action/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-goods-action{align-items:center;background-color:var(--goods-action-background-color,#fff);bottom:0;box-sizing:initial;display:flex;height:var(--goods-action-height,50px);left:0;position:fixed;right:0}.van-goods-action--safe{padding-bottom:env(safe-area-inset-bottom)} -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/grid-item/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/grid-item/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/grid/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/grid/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/grid/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/grid/index.wxs: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | var style = require('../wxs/style.wxs'); 3 | var addUnit = require('../wxs/add-unit.wxs'); 4 | 5 | function rootStyle(data) { 6 | return style({ 7 | 'padding-left': addUnit(data.gutter), 8 | }); 9 | } 10 | 11 | module.exports = { 12 | rootStyle: rootStyle, 13 | }; 14 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/grid/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-grid{box-sizing:border-box;overflow:hidden;position:relative} -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/icon/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/icon/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | var component_1 = require("../common/component"); 4 | (0, component_1.VantComponent)({ 5 | classes: ['info-class'], 6 | props: { 7 | dot: Boolean, 8 | info: null, 9 | size: null, 10 | color: String, 11 | customStyle: String, 12 | classPrefix: { 13 | type: String, 14 | value: 'van-icon', 15 | }, 16 | name: String, 17 | }, 18 | methods: { 19 | onClick: function () { 20 | this.$emit('click'); 21 | }, 22 | }, 23 | }); 24 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/icon/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-info": "../info/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/icon/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 14 | 20 | 21 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/image/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/image/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-loading": "../loading/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/index-anchor/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/index-anchor/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/index-anchor/index.wxml: -------------------------------------------------------------------------------- 1 | 5 | 9 | 10 | 11 | {{ index }} 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/index-anchor/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-index-anchor{background-color:var(--index-anchor-background-color,transparent);color:var(--index-anchor-text-color,#323233);font-size:var(--index-anchor-font-size,14px);font-weight:var(--index-anchor-font-weight,500);line-height:var(--index-anchor-line-height,32px);padding:var(--index-anchor-padding,0 16px)}.van-index-anchor--active{background-color:var(--index-anchor-active-background-color,#fff);color:var(--index-anchor-active-text-color,#07c160);left:0;right:0} -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/index-bar/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/index-bar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/index-bar/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 12 | 19 | {{ item }} 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/index-bar/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-index-bar{position:relative}.van-index-bar__sidebar{display:flex;flex-direction:column;position:fixed;right:0;text-align:center;top:50%;transform:translateY(-50%);-webkit-user-select:none;user-select:none}.van-index-bar__index{font-size:var(--index-bar-index-font-size,10px);font-weight:500;line-height:var(--index-bar-index-line-height,14px);padding:0 var(--padding-base,4px) 0 var(--padding-md,16px)} -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/info/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/info/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | var component_1 = require("../common/component"); 4 | (0, component_1.VantComponent)({ 5 | props: { 6 | dot: Boolean, 7 | info: null, 8 | customStyle: String, 9 | }, 10 | }); 11 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/info/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/info/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{ dot ? '' : info }} 8 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/loading/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/loading/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | var component_1 = require("../common/component"); 4 | (0, component_1.VantComponent)({ 5 | props: { 6 | color: String, 7 | vertical: Boolean, 8 | type: { 9 | type: String, 10 | value: 'circular', 11 | }, 12 | size: String, 13 | textSize: String, 14 | }, 15 | data: { 16 | array12: Array.from({ length: 12 }), 17 | }, 18 | }); 19 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/loading/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/loading/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/loading/index.wxs: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | var style = require('../wxs/style.wxs'); 3 | var addUnit = require('../wxs/add-unit.wxs'); 4 | 5 | function spinnerStyle(data) { 6 | return style({ 7 | color: data.color, 8 | width: addUnit(data.size), 9 | height: addUnit(data.size), 10 | }); 11 | } 12 | 13 | function textStyle(data) { 14 | return style({ 15 | 'font-size': addUnit(data.textSize), 16 | }); 17 | } 18 | 19 | module.exports = { 20 | spinnerStyle: spinnerStyle, 21 | textStyle: textStyle, 22 | }; 23 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/mixins/basic.d.ts: -------------------------------------------------------------------------------- 1 | export declare const basic: string; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/mixins/button.d.ts: -------------------------------------------------------------------------------- 1 | export declare const button: string; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/mixins/link.d.ts: -------------------------------------------------------------------------------- 1 | export declare const link: string; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/mixins/page-scroll.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// 3 | type IPageScrollOption = WechatMiniprogram.Page.IPageScrollOption; 4 | type Scroller = (this: WechatMiniprogram.Component.TrivialInstance, event?: IPageScrollOption) => void; 5 | export declare function pageScrollMixin(scroller: Scroller): string; 6 | export {}; 7 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/mixins/touch.d.ts: -------------------------------------------------------------------------------- 1 | export declare const touch: string; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/mixins/transition.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transition(showDefaultValue: boolean): string; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/nav-bar/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/nav-bar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/nav-bar/index.wxs: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | var style = require('../wxs/style.wxs'); 3 | 4 | function barStyle(data) { 5 | return style({ 6 | 'z-index': data.zIndex, 7 | 'padding-top': data.safeAreaInsetTop ? data.statusBarHeight + 'px' : 0, 8 | }); 9 | } 10 | 11 | module.exports = { 12 | barStyle: barStyle, 13 | }; 14 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/notice-bar/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/notice-bar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/notice-bar/index.wxs: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | var style = require('../wxs/style.wxs'); 3 | var addUnit = require('../wxs/add-unit.wxs'); 4 | 5 | function rootStyle(data) { 6 | return style({ 7 | color: data.color, 8 | 'background-color': data.backgroundColor, 9 | background: data.background, 10 | }); 11 | } 12 | 13 | module.exports = { 14 | rootStyle: rootStyle, 15 | }; 16 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/notify/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/notify/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-transition": "../transition/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/notify/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 15 | 19 | {{ message }} 20 | 21 | 22 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/notify/index.wxs: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | var style = require('../wxs/style.wxs'); 3 | var addUnit = require('../wxs/add-unit.wxs'); 4 | 5 | function rootStyle(data) { 6 | return style({ 7 | 'z-index': data.zIndex, 8 | top: addUnit(data.top), 9 | }); 10 | } 11 | 12 | function notifyStyle(data) { 13 | return style({ 14 | background: data.background, 15 | color: data.color, 16 | }); 17 | } 18 | 19 | module.exports = { 20 | rootStyle: rootStyle, 21 | notifyStyle: notifyStyle, 22 | }; 23 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/notify/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-notify{word-wrap:break-word;font-size:var(--notify-font-size,14px);line-height:var(--notify-line-height,20px);padding:var(--notify-padding,6px 15px);text-align:center}.van-notify__container{box-sizing:border-box;left:0;position:fixed;top:0;width:100%}.van-notify--primary{background-color:var(--notify-primary-background-color,#1989fa)}.van-notify--success{background-color:var(--notify-success-background-color,#07c160)}.van-notify--danger{background-color:var(--notify-danger-background-color,#ee0a24)}.van-notify--warning{background-color:var(--notify-warning-background-color,#ff976a)} -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/notify/notify.d.ts: -------------------------------------------------------------------------------- 1 | interface NotifyOptions { 2 | type?: 'primary' | 'success' | 'danger' | 'warning'; 3 | color?: string; 4 | zIndex?: number; 5 | top?: number; 6 | message: string; 7 | context?: any; 8 | duration?: number; 9 | selector?: string; 10 | background?: string; 11 | safeAreaInsetTop?: boolean; 12 | onClick?: () => void; 13 | onOpened?: () => void; 14 | onClose?: () => void; 15 | } 16 | declare function Notify(options: NotifyOptions | string): any; 17 | declare namespace Notify { 18 | var clear: (options?: NotifyOptions | undefined) => void; 19 | var setDefaultOptions: (options: NotifyOptions) => void; 20 | var resetDefaultOptions: () => void; 21 | } 22 | export default Notify; 23 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/overlay/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/overlay/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-transition": "../transition/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/overlay/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/overlay/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-overlay{background-color:var(--overlay-background-color,rgba(0,0,0,.7));height:100%;left:0;position:fixed;top:0;width:100%} -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/overlay/overlay.wxml: -------------------------------------------------------------------------------- 1 | 9 | 10 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/panel/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/panel/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | var component_1 = require("../common/component"); 4 | (0, component_1.VantComponent)({ 5 | classes: ['header-class', 'footer-class'], 6 | props: { 7 | desc: String, 8 | title: String, 9 | status: String, 10 | }, 11 | }); 12 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/panel/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-cell": "../cell/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/panel/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/panel/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-panel{background:var(--panel-background-color,#fff)}.van-panel__header-value{color:var(--panel-header-value-color,#ee0a24)}.van-panel__footer{padding:var(--panel-footer-padding,8px 16px)}.van-panel__footer:empty{display:none} -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/picker-column/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/picker-column/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/picker-column/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-picker-column{color:var(--picker-option-text-color,#000);font-size:var(--picker-option-font-size,16px);overflow:hidden;text-align:center}.van-picker-column__item{padding:0 5px}.van-picker-column__item--selected{color:var(--picker-option-selected-text-color,#323233);font-weight:var(--font-weight-bold,500)}.van-picker-column__item--disabled{opacity:var(--picker-option-disabled-opacity,.3)} -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/picker/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/picker/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "picker-column": "../picker-column/index", 5 | "loading": "../loading/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/picker/shared.d.ts: -------------------------------------------------------------------------------- 1 | export declare const pickerProps: { 2 | title: StringConstructor; 3 | loading: BooleanConstructor; 4 | showToolbar: BooleanConstructor; 5 | cancelButtonText: { 6 | type: StringConstructor; 7 | value: string; 8 | }; 9 | confirmButtonText: { 10 | type: StringConstructor; 11 | value: string; 12 | }; 13 | visibleItemCount: { 14 | type: NumberConstructor; 15 | value: number; 16 | }; 17 | itemHeight: { 18 | type: NumberConstructor; 19 | value: number; 20 | }; 21 | }; 22 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/picker/shared.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.pickerProps = void 0; 4 | exports.pickerProps = { 5 | title: String, 6 | loading: Boolean, 7 | showToolbar: Boolean, 8 | cancelButtonText: { 9 | type: String, 10 | value: '取消', 11 | }, 12 | confirmButtonText: { 13 | type: String, 14 | value: '确认', 15 | }, 16 | visibleItemCount: { 17 | type: Number, 18 | value: 6, 19 | }, 20 | itemHeight: { 21 | type: Number, 22 | value: 44, 23 | }, 24 | }; 25 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/picker/toolbar.wxml: -------------------------------------------------------------------------------- 1 | 2 | 9 | {{ cancelButtonText }} 10 | 11 | {{ 12 | title 13 | }} 14 | 21 | {{ confirmButtonText }} 22 | 23 | 24 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/popup/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/popup/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-overlay": "../overlay/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/popup/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/popup/index.wxs: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | var style = require('../wxs/style.wxs'); 3 | 4 | function popupStyle(data) { 5 | return style([ 6 | { 7 | 'z-index': data.zIndex, 8 | '-webkit-transition-duration': data.currentDuration + 'ms', 9 | 'transition-duration': data.currentDuration + 'ms', 10 | }, 11 | data.display ? null : 'display: none', 12 | data.customStyle, 13 | ]); 14 | } 15 | 16 | module.exports = { 17 | popupStyle: popupStyle, 18 | }; 19 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/popup/popup.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | 16 | 17 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/progress/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/progress/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/progress/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 12 | 17 | {{ computed.pivotText(pivotText, percentage) }} 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/progress/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-progress{background:var(--progress-background-color,#ebedf0);border-radius:var(--progress-height,4px);height:var(--progress-height,4px);position:relative}.van-progress__portion{background:var(--progress-color,#1989fa);border-radius:inherit;height:100%;left:0;position:absolute}.van-progress__pivot{background-color:var(--progress-pivot-background-color,#1989fa);border-radius:1em;box-sizing:border-box;color:var(--progress-pivot-text-color,#fff);font-size:var(--progress-pivot-font-size,10px);line-height:var(--progress-pivot-line-height,1.6);min-width:3.6em;padding:var(--progress-pivot-padding,0 5px);position:absolute;text-align:center;top:50%;transform:translateY(-50%);word-break:keep-all} -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/radio-group/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/radio-group/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/radio-group/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/radio-group/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-radio-group--horizontal{display:flex;flex-wrap:wrap} -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/radio/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/radio/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/rate/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/rate/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/rate/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-rate{display:inline-flex;-webkit-user-select:none;user-select:none}.van-rate__item{padding:0 var(--rate-horizontal-padding,2px);position:relative}.van-rate__item:not(:last-child){padding-right:var(--rate-icon-gutter,4px)}.van-rate__icon{color:var(--rate-icon-void-color,#c8c9cc);display:block;font-size:var(--rate-icon-size,20px);height:100%}.van-rate__icon--half{left:var(--rate-horizontal-padding,2px);overflow:hidden;position:absolute;top:0;width:.5em}.van-rate__icon--full,.van-rate__icon--half{color:var(--rate-icon-full-color,#ee0a24)}.van-rate__icon--disabled{color:var(--rate-icon-disabled-color,#c8c9cc)} -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/row/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/row/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/row/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/row/index.wxs: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | var style = require('../wxs/style.wxs'); 3 | var addUnit = require('../wxs/add-unit.wxs'); 4 | 5 | function rootStyle(data) { 6 | if (!data.gutter) { 7 | return ''; 8 | } 9 | 10 | return style({ 11 | 'margin-right': addUnit(-data.gutter / 2), 12 | 'margin-left': addUnit(-data.gutter / 2), 13 | }); 14 | } 15 | 16 | module.exports = { 17 | rootStyle: rootStyle, 18 | }; 19 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/row/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-row:after{clear:both;content:"";display:table} -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/search/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/search/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-field": "../field/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/share-sheet/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/share-sheet/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-popup": "../popup/index", 5 | "options": "./options" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/share-sheet/index.wxs: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | function isMulti(options) { 3 | if (options == null || options[0] == null) { 4 | return false; 5 | } 6 | 7 | return "Array" === options.constructor && "Array" === options[0].constructor; 8 | } 9 | 10 | module.exports = { 11 | isMulti: isMulti 12 | }; 13 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/share-sheet/options.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/share-sheet/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/share-sheet/options.wxs: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | var PRESET_ICONS = ['qq', 'link', 'weibo', 'wechat', 'poster', 'qrcode', 'weapp-qrcode', 'wechat-moments']; 3 | 4 | function getIconURL(icon) { 5 | if (PRESET_ICONS.indexOf(icon) !== -1) { 6 | return 'https://img.yzcdn.cn/vant/share-sheet-' + icon + '.png'; 7 | } 8 | 9 | return icon; 10 | } 11 | 12 | module.exports = { 13 | getIconURL: getIconURL, 14 | }; 15 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/sidebar-item/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/sidebar-item/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-info": "../info/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/sidebar-item/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | 15 | {{ title }} 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/sidebar/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/sidebar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/sidebar/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/sidebar/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-sidebar{width:var(--sidebar-width,80px)} -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/skeleton/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/skeleton/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/slider/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/slider/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/slider/index.wxs: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | var style = require('../wxs/style.wxs'); 3 | var addUnit = require('../wxs/add-unit.wxs'); 4 | 5 | function barStyle(barHeight, activeColor) { 6 | return style({ 7 | height: addUnit(barHeight), 8 | background: activeColor, 9 | }); 10 | } 11 | 12 | module.exports = { 13 | barStyle: barStyle, 14 | }; 15 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/stepper/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/stepper/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/stepper/index.wxs: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | var style = require('../wxs/style.wxs'); 3 | var addUnit = require('../wxs/add-unit.wxs'); 4 | 5 | function buttonStyle(data) { 6 | return style({ 7 | width: addUnit(data.buttonSize), 8 | height: addUnit(data.buttonSize), 9 | }); 10 | } 11 | 12 | function inputStyle(data) { 13 | return style({ 14 | width: addUnit(data.inputWidth), 15 | height: addUnit(data.buttonSize), 16 | }); 17 | } 18 | 19 | module.exports = { 20 | buttonStyle: buttonStyle, 21 | inputStyle: inputStyle, 22 | }; 23 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/steps/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/steps/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/sticky/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/sticky/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/sticky/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/sticky/index.wxs: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | var style = require('../wxs/style.wxs'); 3 | var addUnit = require('../wxs/add-unit.wxs'); 4 | 5 | function wrapStyle(data) { 6 | return style({ 7 | transform: data.transform 8 | ? 'translate3d(0, ' + data.transform + 'px, 0)' 9 | : '', 10 | top: data.fixed ? addUnit(data.offsetTop) : '', 11 | 'z-index': data.zIndex, 12 | }); 13 | } 14 | 15 | function containerStyle(data) { 16 | return style({ 17 | height: data.fixed ? addUnit(data.height) : '', 18 | 'z-index': data.zIndex, 19 | }); 20 | } 21 | 22 | module.exports = { 23 | wrapStyle: wrapStyle, 24 | containerStyle: containerStyle, 25 | }; 26 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/sticky/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-sticky{position:relative}.van-sticky-wrap--fixed{left:0;position:fixed;right:0} -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/submit-bar/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/submit-bar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-button": "../button/index", 5 | "van-icon": "../icon/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/swipe-cell/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/swipe-cell/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/swipe-cell/index.wxml: -------------------------------------------------------------------------------- 1 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/swipe-cell/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-swipe-cell{overflow:hidden;position:relative}.van-swipe-cell__left,.van-swipe-cell__right{height:100%;position:absolute;top:0}.van-swipe-cell__left{left:0;transform:translate3d(-100%,0,0)}.van-swipe-cell__right{right:0;transform:translate3d(100%,0,0)} -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/switch/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/switch/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-loading": "../loading/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/switch/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/switch/index.wxs: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | var style = require('../wxs/style.wxs'); 3 | var addUnit = require('../wxs/add-unit.wxs'); 4 | 5 | function rootStyle(data) { 6 | var currentColor = data.checked === data.activeValue ? data.activeColor : data.inactiveColor; 7 | 8 | return style({ 9 | 'font-size': addUnit(data.size), 10 | 'background-color': currentColor, 11 | }); 12 | } 13 | 14 | var BLUE = '#1989fa'; 15 | var GRAY_DARK = '#969799'; 16 | 17 | function loadingColor(data) { 18 | return data.checked === data.activeValue 19 | ? data.activeColor || BLUE 20 | : data.inactiveColor || GRAY_DARK; 21 | } 22 | 23 | module.exports = { 24 | rootStyle: rootStyle, 25 | loadingColor: loadingColor, 26 | }; 27 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/tab/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/tab/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/tab/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/tab/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';:host{box-sizing:border-box;flex-shrink:0;width:100%}.van-tab__pane{-webkit-overflow-scrolling:touch;box-sizing:border-box;overflow-y:auto}.van-tab__pane--active{height:auto}.van-tab__pane--inactive{height:0;overflow:visible} -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/tabbar-item/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/tabbar-item/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-info": "../info/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/tabbar-item/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';:host{flex:1}.van-tabbar-item{align-items:center;color:var(--tabbar-item-text-color,#646566);display:flex;flex-direction:column;font-size:var(--tabbar-item-font-size,12px);height:100%;justify-content:center;line-height:var(--tabbar-item-line-height,1)}.van-tabbar-item__icon{font-size:var(--tabbar-item-icon-size,22px);margin-bottom:var(--tabbar-item-margin-bottom,4px);position:relative}.van-tabbar-item__icon__inner{display:block;min-width:1em}.van-tabbar-item--active{color:var(--tabbar-item-active-color,#1989fa)}.van-tabbar-item__info{margin-top:2px} -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/tabbar/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/tabbar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/tabbar/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/tabbar/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-tabbar{background-color:var(--tabbar-background-color,#fff);box-sizing:initial;display:flex;height:var(--tabbar-height,50px);width:100%}.van-tabbar--fixed{bottom:0;left:0;position:fixed}.van-tabbar--safe{padding-bottom:env(safe-area-inset-bottom)} -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/tabs/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/tabs/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-info": "../info/index", 5 | "van-sticky": "../sticky/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/tag/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/tag/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | var component_1 = require("../common/component"); 4 | (0, component_1.VantComponent)({ 5 | props: { 6 | size: String, 7 | mark: Boolean, 8 | color: String, 9 | plain: Boolean, 10 | round: Boolean, 11 | textColor: String, 12 | type: { 13 | type: String, 14 | value: 'default', 15 | }, 16 | closeable: Boolean, 17 | }, 18 | methods: { 19 | onClose: function () { 20 | this.$emit('close'); 21 | }, 22 | }, 23 | }); 24 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/tag/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/tag/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | 15 | 16 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/tag/index.wxs: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | var style = require('../wxs/style.wxs'); 3 | 4 | function rootStyle(data) { 5 | return style({ 6 | 'background-color': data.plain ? '' : data.color, 7 | color: data.textColor || data.plain ? data.textColor || data.color : '', 8 | }); 9 | } 10 | 11 | module.exports = { 12 | rootStyle: rootStyle, 13 | }; 14 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/toast/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/toast/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-loading": "../loading/index", 6 | "van-overlay": "../overlay/index", 7 | "van-transition": "../transition/index" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/transition/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/transition/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | var component_1 = require("../common/component"); 4 | var transition_1 = require("../mixins/transition"); 5 | (0, component_1.VantComponent)({ 6 | classes: [ 7 | 'enter-class', 8 | 'enter-active-class', 9 | 'enter-to-class', 10 | 'leave-class', 11 | 'leave-active-class', 12 | 'leave-to-class', 13 | ], 14 | mixins: [(0, transition_1.transition)(true)], 15 | }); 16 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/transition/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/transition/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/transition/index.wxs: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | var style = require('../wxs/style.wxs'); 3 | 4 | function rootStyle(data) { 5 | return style([ 6 | { 7 | '-webkit-transition-duration': data.currentDuration + 'ms', 8 | 'transition-duration': data.currentDuration + 'ms', 9 | }, 10 | data.display ? null : 'display: none', 11 | data.customStyle, 12 | ]); 13 | } 14 | 15 | module.exports = { 16 | rootStyle: rootStyle, 17 | }; 18 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/tree-select/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/tree-select/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-sidebar": "../sidebar/index", 6 | "van-sidebar-item": "../sidebar-item/index" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/tree-select/index.wxs: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | var array = require('../wxs/array.wxs'); 3 | 4 | function isActive (activeList, itemId) { 5 | if (array.isArray(activeList)) { 6 | return activeList.indexOf(itemId) > -1; 7 | } 8 | 9 | return activeList === itemId; 10 | } 11 | 12 | module.exports.isActive = isActive; 13 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/uploader/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/uploader/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-loading": "../loading/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/uploader/index.wxs: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | var style = require('../wxs/style.wxs'); 3 | var addUnit = require('../wxs/add-unit.wxs'); 4 | 5 | function sizeStyle(data) { 6 | return "Array" === data.previewSize.constructor ? style({ 7 | width: addUnit(data.previewSize[0]), 8 | height: addUnit(data.previewSize[1]), 9 | }) : style({ 10 | width: addUnit(data.previewSize), 11 | height: addUnit(data.previewSize), 12 | }); 13 | } 14 | 15 | module.exports = { 16 | sizeStyle: sizeStyle, 17 | }; 18 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/wxs/add-unit.wxs: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | var REGEXP = getRegExp('^-?\d+(\.\d+)?$'); 3 | 4 | function addUnit(value) { 5 | if (value == null) { 6 | return undefined; 7 | } 8 | 9 | return REGEXP.test('' + value) ? value + 'px' : value; 10 | } 11 | 12 | module.exports = addUnit; 13 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/wxs/array.wxs: -------------------------------------------------------------------------------- 1 | function isArray(array) { 2 | return array && array.constructor === 'Array'; 3 | } 4 | 5 | module.exports.isArray = isArray; 6 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/wxs/object.wxs: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | var REGEXP = getRegExp('{|}|"', 'g'); 3 | 4 | function keys(obj) { 5 | return JSON.stringify(obj) 6 | .replace(REGEXP, '') 7 | .split(',') 8 | .map(function(item) { 9 | return item.split(':')[0]; 10 | }); 11 | } 12 | 13 | module.exports.keys = keys; 14 | -------------------------------------------------------------------------------- /miniprogram_npm/@vant/weapp/wxs/utils.wxs: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | var bem = require('./bem.wxs'); 3 | var memoize = require('./memoize.wxs'); 4 | var addUnit = require('./add-unit.wxs'); 5 | 6 | module.exports = { 7 | bem: memoize(bem), 8 | memoize: memoize, 9 | addUnit: addUnit 10 | }; 11 | -------------------------------------------------------------------------------- /miniprogram_npm/mp-html/index.json: -------------------------------------------------------------------------------- 1 | {"component":true,"usingComponents":{"node":"./node/node"}} -------------------------------------------------------------------------------- /miniprogram_npm/mp-html/index.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /miniprogram_npm/mp-html/index.wxss: -------------------------------------------------------------------------------- 1 | ._root{padding:1px 0;overflow-x:auto;overflow-y:hidden;-webkit-overflow-scrolling:touch}._select{-webkit-user-select:text;user-select:text} -------------------------------------------------------------------------------- /miniprogram_npm/mp-html/node/node.json: -------------------------------------------------------------------------------- 1 | {"component":true,"usingComponents":{"node":"./node"}} -------------------------------------------------------------------------------- /miniprogram_npm/wxa-plugin-canvas/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /miniprogram_npm/wxa-plugin-canvas/index/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /miniprogram_npm/wxa-plugin-canvas/index/index.wxss: -------------------------------------------------------------------------------- 1 | .canvas { 2 | width: 750rpx; 3 | height: 750rpx; 4 | } 5 | .canvas.pro { 6 | position: absolute; 7 | bottom: 0; 8 | left: 0; 9 | transform: translate3d(-9999rpx, 0, 0); 10 | } 11 | .canvas.debug { 12 | position: absolute; 13 | bottom: 0; 14 | left: 0; 15 | border: 1rpx solid #ccc; 16 | } -------------------------------------------------------------------------------- /miniprogram_npm/wxa-plugin-canvas/poster/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "we-canvas": "../index/index" 5 | } 6 | } -------------------------------------------------------------------------------- /miniprogram_npm/wxa-plugin-canvas/poster/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /miniprogram_npm/wxa-plugin-canvas/poster/index.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/miniprogram_npm/wxa-plugin-canvas/poster/index.wxss -------------------------------------------------------------------------------- /miniprogram_npm/wxa-plugin-canvas/poster/poster.js: -------------------------------------------------------------------------------- 1 | const defaultOptions = { 2 | selector: '#poster' 3 | }; 4 | 5 | function Poster(options = {}, that) { 6 | options = { 7 | ...defaultOptions, 8 | ...options, 9 | }; 10 | 11 | const pages = getCurrentPages(); 12 | let ctx = pages[pages.length - 1]; 13 | if (that) ctx = that 14 | const poster = ctx.selectComponent(options.selector); 15 | delete options.selector; 16 | 17 | return poster; 18 | }; 19 | 20 | Poster.create = (reset = false, that) => { 21 | const poster = Poster({}, that); 22 | if (!poster) { 23 | console.error('请设置组件的id="poster"!!!'); 24 | } else { 25 | return Poster({}, that).onCreate(reset); 26 | } 27 | } 28 | 29 | export default Poster; 30 | -------------------------------------------------------------------------------- /packageCps/pages/goods-details/cps-jd.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "商品详情", 3 | "usingComponents": { 4 | "poster": "wxa-plugin-canvas/poster" 5 | } 6 | } -------------------------------------------------------------------------------- /packageCps/pages/goods-details/cps-pdd.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "商品详情", 3 | "usingComponents": { 4 | "poster": "wxa-plugin-canvas/poster" 5 | } 6 | } -------------------------------------------------------------------------------- /packageCps/pages/goods-details/cps-taobao.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "商品详情", 3 | "usingComponents": { 4 | "poster": "wxa-plugin-canvas/poster" 5 | } 6 | } -------------------------------------------------------------------------------- /packageCps/pages/order-list/cps.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText":"CPS订单", 3 | "enablePullDownRefresh": true 4 | } -------------------------------------------------------------------------------- /packageCps/pages/order-list/cps.wxss: -------------------------------------------------------------------------------- 1 | /* pages/order-list/cps.wxss */ -------------------------------------------------------------------------------- /packageFx/images/index-top-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageFx/images/index-top-bg.png -------------------------------------------------------------------------------- /packageFx/pages/apply/form.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "申请成为分销商" 3 | } -------------------------------------------------------------------------------- /packageFx/pages/apply/form.wxss: -------------------------------------------------------------------------------- 1 | .logo { 2 | width: 750rpx; 3 | } 4 | .tips { 5 | color: #666; 6 | font-size: 28rpx; 7 | padding: 32rpx; 8 | } 9 | .btns { 10 | padding: 32rpx; 11 | } -------------------------------------------------------------------------------- /packageFx/pages/apply/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "成为分销商" 3 | } -------------------------------------------------------------------------------- /packageFx/pages/apply/index.wxss: -------------------------------------------------------------------------------- 1 | .noApply { 2 | margin-top: 150rpx; 3 | text-align: center; 4 | } 5 | .noApply image { 6 | width: 300rpx; 7 | } 8 | .profile { 9 | text-align: center; 10 | margin-top:30rpx; 11 | font-size: 14px; 12 | color:#888; 13 | } 14 | .mini-btn{ 15 | margin-top: 50rpx; 16 | margin-left: 50px; 17 | margin-right: 50px; 18 | } 19 | .qrcode-button { 20 | padding:30rpx; 21 | } 22 | .canvas { 23 | width:750rpx; 24 | } 25 | .block-btn { 26 | padding: 8rpx 32rpx; 27 | } -------------------------------------------------------------------------------- /packageFx/pages/commisionLog/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText":"推广订单" 3 | } -------------------------------------------------------------------------------- /packageFx/pages/hehuorenfenxiao/fxmember.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /packageFx/pages/hehuorenfenxiao/fxmember.wxss: -------------------------------------------------------------------------------- 1 | /* pages/packageA/pages/vip/fxmember.wxss */ 2 | page{ 3 | background-color: #F5F5F5; 4 | } 5 | .listItem{ 6 | width: 670rpx; 7 | background: #FFFFFF; 8 | border-radius: 8rpx; 9 | margin-left:20rpx; 10 | margin-top:10rpx ; 11 | padding: 20rpx; 12 | } 13 | 14 | .nickName{ 15 | height: 40px; 16 | font-size: 26rpx; 17 | font-family: PingFangSC-Regular, PingFang SC; 18 | font-weight: 400; 19 | color: #333333; 20 | line-height: 40px; 21 | margin-left: 20rpx; 22 | } 23 | 24 | .t1{ 25 | height: 40rpx; 26 | font-size: 26rpx; 27 | font-family: PingFangSC-Regular, PingFang SC; 28 | font-weight: 400; 29 | color: #666666; 30 | line-height: 40rpx; 31 | } 32 | 33 | .t2{ 34 | color:#333333; 35 | } -------------------------------------------------------------------------------- /packageFx/pages/hehuorenfenxiao/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "分销中心" 3 | } -------------------------------------------------------------------------------- /packageFx/pages/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "分销中心" 3 | } -------------------------------------------------------------------------------- /packageFx/pages/myusers/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "我的团队", 3 | "enablePullDownRefresh": true 4 | } -------------------------------------------------------------------------------- /packageFx/pages/myusers/index.wxss: -------------------------------------------------------------------------------- 1 | .list { 2 | display: flex; 3 | align-items: center; 4 | width: 100vw; 5 | padding: 8rpx 32rpx; 6 | box-sizing: border-box; 7 | } 8 | .list .l { 9 | width: 100rpx; 10 | height: 100rpx; 11 | border-radius: 50%; 12 | } 13 | .list .r { 14 | flex: 1; 15 | } -------------------------------------------------------------------------------- /packageFx/pages/myusers/myusers-detail.js: -------------------------------------------------------------------------------- 1 | const WXAPI = require('apifm-wxapi') 2 | Page({ 3 | 4 | /** 5 | * 页面的初始数据 6 | */ 7 | data: { 8 | 9 | }, 10 | 11 | /** 12 | * 生命周期函数--监听页面加载 13 | */ 14 | onLoad: function (options) { 15 | // options.id = 1871848 16 | this.userDetailSpreadUser(options.id) 17 | }, 18 | onShow: function () { 19 | 20 | }, 21 | async userDetailSpreadUser(uid) { 22 | const res = await WXAPI.userDetailSpreadUser(wx.getStorageSync('token'), uid) 23 | if (res.code != 0) { 24 | wx.showModal({ 25 | title: '错误', 26 | content: res.msg, 27 | showCancel: false 28 | }) 29 | return 30 | } 31 | this.setData({ 32 | userInfoMap: res.data 33 | }) 34 | }, 35 | }) -------------------------------------------------------------------------------- /packageFx/pages/myusers/myusers-detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "用户详情" 3 | } -------------------------------------------------------------------------------- /packageFx/pages/myusers/myusers-detail.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /packageFx/pages/myusers/myusers-detail.wxss: -------------------------------------------------------------------------------- 1 | .avatar { 2 | width: 100vw; 3 | text-align: center; 4 | margin-top: 32rpx; 5 | } 6 | .avatar image { 7 | width: 280rpx; 8 | border-radius: 50%; 9 | } 10 | -------------------------------------------------------------------------------- /packageFx/pages/report/city.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "合伙人月报表", 3 | "enablePullDownRefresh": true 4 | } -------------------------------------------------------------------------------- /packageFx/pages/report/city.wxml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /packageFx/pages/report/city.wxss: -------------------------------------------------------------------------------- 1 | .list { 2 | display: flex; 3 | align-items: center; 4 | width: 100vw; 5 | padding: 8rpx 32rpx; 6 | box-sizing: border-box; 7 | } 8 | .list .l { 9 | width: 88rpx; 10 | height: 88rpx; 11 | } 12 | .list .r { 13 | flex: 1; 14 | } -------------------------------------------------------------------------------- /packageFx/pages/report/team.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "团队月报表", 3 | "enablePullDownRefresh": true 4 | } -------------------------------------------------------------------------------- /packageFx/pages/report/team.wxml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /packageFx/pages/report/team.wxss: -------------------------------------------------------------------------------- 1 | .list { 2 | display: flex; 3 | align-items: center; 4 | width: 100vw; 5 | padding: 8rpx 32rpx; 6 | box-sizing: border-box; 7 | } 8 | .list .l { 9 | width: 88rpx; 10 | height: 88rpx; 11 | } 12 | .list .r { 13 | flex: 1; 14 | } -------------------------------------------------------------------------------- /packageStreamMedia/components/TRTCCalling/TRTCCalling.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "TRTCCalling": "../../components/TRTCCalling/TRTCCalling" 5 | }, 6 | "navigationStyle": "custom", 7 | "disableScroll": true 8 | } -------------------------------------------------------------------------------- /packageStreamMedia/components/TRTCCalling/TRTCCalling.wxss: -------------------------------------------------------------------------------- 1 | @import "./template/audio-template/audio-template.wxss"; 2 | @import "./template/video-template/video-template.wxss"; 3 | 4 | .TRTCCaling-container { 5 | width: 100vw; 6 | height: 100vh; 7 | overflow: hidden; 8 | background-image: url(https://mc.qcloudimg.com/static/img/7da57e0050d308e2e1b1e31afbc42929/bg.png); 9 | margin: 0; 10 | } 11 | -------------------------------------------------------------------------------- /packageStreamMedia/components/TRTCCalling/model/user.js: -------------------------------------------------------------------------------- 1 | class User { 2 | constructor(options) { 3 | Object.assign(this, { 4 | userID: '', 5 | // hasMainStream: false, // 触发 1034 且stream type 为 main 即为true 6 | // hasAuxStream: false, // 触发 1034 且stream type 为 aux 即为true 7 | // hasSmallStream: false, // 触发 1034 且stream type 为 small 即为true 8 | streams: { 9 | // main: mainStream 10 | // aux: auxStream 11 | }, // 有0~2个Stream, 进房没有推流,main aux, small 特殊处理,small 和 main 同时只播放一路 12 | // stream 是用于渲染 live-player 的数据源 13 | }, options) 14 | } 15 | } 16 | 17 | export default User 18 | -------------------------------------------------------------------------------- /packageStreamMedia/components/TRTCCalling/static/audio-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/TRTCCalling/static/audio-active.png -------------------------------------------------------------------------------- /packageStreamMedia/components/TRTCCalling/static/audio-false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/TRTCCalling/static/audio-false.png -------------------------------------------------------------------------------- /packageStreamMedia/components/TRTCCalling/static/audio-true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/TRTCCalling/static/audio-true.png -------------------------------------------------------------------------------- /packageStreamMedia/components/TRTCCalling/static/avatar0_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/TRTCCalling/static/avatar0_100.png -------------------------------------------------------------------------------- /packageStreamMedia/components/TRTCCalling/static/avatar1_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/TRTCCalling/static/avatar1_100.png -------------------------------------------------------------------------------- /packageStreamMedia/components/TRTCCalling/static/avatar2_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/TRTCCalling/static/avatar2_100.png -------------------------------------------------------------------------------- /packageStreamMedia/components/TRTCCalling/static/avatar3_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/TRTCCalling/static/avatar3_100.png -------------------------------------------------------------------------------- /packageStreamMedia/components/TRTCCalling/static/avatar4_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/TRTCCalling/static/avatar4_100.png -------------------------------------------------------------------------------- /packageStreamMedia/components/TRTCCalling/static/avatar5_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/TRTCCalling/static/avatar5_100.png -------------------------------------------------------------------------------- /packageStreamMedia/components/TRTCCalling/static/hangup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/TRTCCalling/static/hangup.png -------------------------------------------------------------------------------- /packageStreamMedia/components/TRTCCalling/static/micro-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/TRTCCalling/static/micro-open.png -------------------------------------------------------------------------------- /packageStreamMedia/components/TRTCCalling/static/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/TRTCCalling/static/phone.png -------------------------------------------------------------------------------- /packageStreamMedia/components/TRTCCalling/static/speaker-true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/TRTCCalling/static/speaker-true.png -------------------------------------------------------------------------------- /packageStreamMedia/components/TRTCCalling/utils/compare-version.js: -------------------------------------------------------------------------------- 1 | export default function compareVersion(v1, v2) { 2 | v1 = v1.split('.') 3 | v2 = v2.split('.') 4 | const len = Math.max(v1.length, v2.length) 5 | while (v1.length < len) { 6 | v1.push('0') 7 | } 8 | while (v2.length < len) { 9 | v2.push('0') 10 | } 11 | for (let i = 0; i < len; i++) { 12 | const num1 = parseInt(v1[i]) 13 | const num2 = parseInt(v2[i]) 14 | if (num1 > num2) { 15 | return 1 16 | } if (num1 < num2) { 17 | return -1 18 | } 19 | } 20 | return 0 21 | } 22 | -------------------------------------------------------------------------------- /packageStreamMedia/components/like-dz/images-v2/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images-v2/1.png -------------------------------------------------------------------------------- /packageStreamMedia/components/like-dz/images-v2/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images-v2/10.png -------------------------------------------------------------------------------- /packageStreamMedia/components/like-dz/images-v2/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images-v2/11.png -------------------------------------------------------------------------------- /packageStreamMedia/components/like-dz/images-v2/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images-v2/12.png -------------------------------------------------------------------------------- /packageStreamMedia/components/like-dz/images-v2/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images-v2/13.png -------------------------------------------------------------------------------- /packageStreamMedia/components/like-dz/images-v2/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images-v2/2.png -------------------------------------------------------------------------------- /packageStreamMedia/components/like-dz/images-v2/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images-v2/3.png -------------------------------------------------------------------------------- /packageStreamMedia/components/like-dz/images-v2/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images-v2/4.png -------------------------------------------------------------------------------- /packageStreamMedia/components/like-dz/images-v2/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images-v2/5.png -------------------------------------------------------------------------------- /packageStreamMedia/components/like-dz/images-v2/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images-v2/6.png -------------------------------------------------------------------------------- /packageStreamMedia/components/like-dz/images-v2/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images-v2/7.png -------------------------------------------------------------------------------- /packageStreamMedia/components/like-dz/images-v2/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images-v2/8.png -------------------------------------------------------------------------------- /packageStreamMedia/components/like-dz/images-v2/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images-v2/9.png -------------------------------------------------------------------------------- /packageStreamMedia/components/like-dz/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/1.png -------------------------------------------------------------------------------- /packageStreamMedia/components/like-dz/images/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/10.png -------------------------------------------------------------------------------- /packageStreamMedia/components/like-dz/images/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/11.png -------------------------------------------------------------------------------- /packageStreamMedia/components/like-dz/images/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/12.png -------------------------------------------------------------------------------- /packageStreamMedia/components/like-dz/images/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/13.png -------------------------------------------------------------------------------- /packageStreamMedia/components/like-dz/images/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/14.png -------------------------------------------------------------------------------- /packageStreamMedia/components/like-dz/images/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/15.png -------------------------------------------------------------------------------- /packageStreamMedia/components/like-dz/images/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/16.png -------------------------------------------------------------------------------- /packageStreamMedia/components/like-dz/images/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/17.png -------------------------------------------------------------------------------- /packageStreamMedia/components/like-dz/images/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/18.png -------------------------------------------------------------------------------- /packageStreamMedia/components/like-dz/images/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/19.png -------------------------------------------------------------------------------- /packageStreamMedia/components/like-dz/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/2.png -------------------------------------------------------------------------------- /packageStreamMedia/components/like-dz/images/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/20.png -------------------------------------------------------------------------------- /packageStreamMedia/components/like-dz/images/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/21.png -------------------------------------------------------------------------------- /packageStreamMedia/components/like-dz/images/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/22.png -------------------------------------------------------------------------------- /packageStreamMedia/components/like-dz/images/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/23.png -------------------------------------------------------------------------------- /packageStreamMedia/components/like-dz/images/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/24.png -------------------------------------------------------------------------------- /packageStreamMedia/components/like-dz/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/3.png -------------------------------------------------------------------------------- /packageStreamMedia/components/like-dz/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/4.png -------------------------------------------------------------------------------- /packageStreamMedia/components/like-dz/images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/5.png -------------------------------------------------------------------------------- /packageStreamMedia/components/like-dz/images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/6.png -------------------------------------------------------------------------------- /packageStreamMedia/components/like-dz/images/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/7.png -------------------------------------------------------------------------------- /packageStreamMedia/components/like-dz/images/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/8.png -------------------------------------------------------------------------------- /packageStreamMedia/components/like-dz/images/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/components/like-dz/images/9.png -------------------------------------------------------------------------------- /packageStreamMedia/components/like-dz/like-dz.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /packageStreamMedia/components/like-dz/like-dz.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packageStreamMedia/components/like-dz/like-dz.wxss: -------------------------------------------------------------------------------- 1 | .like-fx { 2 | position: absolute; 3 | right: 0; 4 | bottom: 140rpx; 5 | pointer-events: none; 6 | z-index: 9999999; 7 | } 8 | -------------------------------------------------------------------------------- /packageStreamMedia/images/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/images/back.png -------------------------------------------------------------------------------- /packageStreamMedia/images/cart-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/images/cart-icon.png -------------------------------------------------------------------------------- /packageStreamMedia/images/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/images/chat.png -------------------------------------------------------------------------------- /packageStreamMedia/images/chat02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/images/chat02.png -------------------------------------------------------------------------------- /packageStreamMedia/images/fabulous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/images/fabulous.png -------------------------------------------------------------------------------- /packageStreamMedia/images/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/images/forward.png -------------------------------------------------------------------------------- /packageStreamMedia/images/goods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/images/goods.png -------------------------------------------------------------------------------- /packageStreamMedia/images/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/images/line.png -------------------------------------------------------------------------------- /packageStreamMedia/images/live/display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/images/live/display.png -------------------------------------------------------------------------------- /packageStreamMedia/images/live/like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/images/live/like.png -------------------------------------------------------------------------------- /packageStreamMedia/images/live/living.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/images/live/living.png -------------------------------------------------------------------------------- /packageStreamMedia/images/live/nav01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/images/live/nav01.png -------------------------------------------------------------------------------- /packageStreamMedia/images/live/nav02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/images/live/nav02.png -------------------------------------------------------------------------------- /packageStreamMedia/images/live/nav03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/images/live/nav03.png -------------------------------------------------------------------------------- /packageStreamMedia/images/live/nav04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/images/live/nav04.png -------------------------------------------------------------------------------- /packageStreamMedia/images/meiyan2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/images/meiyan2.png -------------------------------------------------------------------------------- /packageStreamMedia/images/people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/images/people.png -------------------------------------------------------------------------------- /packageStreamMedia/images/rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/packageStreamMedia/images/rotate.png -------------------------------------------------------------------------------- /packageStreamMedia/pages/live-anchor/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "disableScroll": true, 4 | "navigationStyle": "custom" 5 | } -------------------------------------------------------------------------------- /packageStreamMedia/pages/live-anchor/list.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "我的直播间" 3 | } -------------------------------------------------------------------------------- /packageStreamMedia/pages/live-anchor/list.wxss: -------------------------------------------------------------------------------- 1 | .coverImage { 2 | width: 100vw; 3 | } 4 | .btn-group { 5 | padding: 0 16rpx; 6 | text-align: right; 7 | } -------------------------------------------------------------------------------- /packageStreamMedia/pages/live-client/client.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationStyle": "custom", 3 | "usingComponents": { 4 | "like-dz":"../../components/like-dz/like-dz" 5 | }, 6 | "disableScroll": true 7 | } -------------------------------------------------------------------------------- /packageStreamMedia/pages/live-client/list.json: -------------------------------------------------------------------------------- 1 | { 2 | "enablePullDownRefresh": true, 3 | "navigationBarTitleText": "直播中心" 4 | } -------------------------------------------------------------------------------- /packageStreamMedia/pages/videoCall/videoCall.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "TRTCCalling": "../../components/TRTCCalling/TRTCCalling" 4 | }, 5 | "navigationStyle": "custom", 6 | "disableScroll": true 7 | } -------------------------------------------------------------------------------- /pages/about/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "" 3 | } -------------------------------------------------------------------------------- /pages/about/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /pages/about/index.wxss: -------------------------------------------------------------------------------- 1 | .content { 2 | padding: 32rpx; 3 | color: #333; 4 | line-height: 64rpx; 5 | } -------------------------------------------------------------------------------- /pages/address-add/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "收货地址" 3 | } -------------------------------------------------------------------------------- /pages/asset/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "我的资产" 3 | } -------------------------------------------------------------------------------- /pages/card/logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "会员卡消费明细", 3 | "enablePullDownRefresh": true 4 | } -------------------------------------------------------------------------------- /pages/card/logs.wxml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pages/card/logs.wxss: -------------------------------------------------------------------------------- 1 | /* pages/card/logs.wxss */ -------------------------------------------------------------------------------- /pages/category/category.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "分类" 3 | } -------------------------------------------------------------------------------- /pages/cms/list.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "" 3 | } -------------------------------------------------------------------------------- /pages/cms/list.wxml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pages/cms/list.wxss: -------------------------------------------------------------------------------- 1 | /* pages/cms/list.wxss */ -------------------------------------------------------------------------------- /pages/coupons/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "优惠券", 3 | "enablePullDownRefresh": true 4 | } -------------------------------------------------------------------------------- /pages/coupons/merge.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "优惠券合成", 3 | "enablePullDownRefresh": true 4 | } -------------------------------------------------------------------------------- /pages/coupons/merge.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 12 | 13 | 立即合成 14 | 15 | -------------------------------------------------------------------------------- /pages/coupons/merge.wxss: -------------------------------------------------------------------------------- 1 | /* pages/coupons/merge.wxss */ -------------------------------------------------------------------------------- /pages/deposit/pay.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "navigationBarTitleText": "支付押金" 4 | } -------------------------------------------------------------------------------- /pages/deposit/pay.wxml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 押金金额 6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 |
14 | -------------------------------------------------------------------------------- /pages/goods-details/day.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "按天定价演示" 3 | } -------------------------------------------------------------------------------- /pages/goods-details/day.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /pages/goods-details/day.wxss: -------------------------------------------------------------------------------- 1 | /* pages/goods-details/day.wxss */ -------------------------------------------------------------------------------- /pages/goods-details/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "商品详情", 3 | "usingComponents": { 4 | "poster": "wxa-plugin-canvas/poster" 5 | } 6 | } -------------------------------------------------------------------------------- /pages/goods-details/times01.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "时段定价演示" 3 | } -------------------------------------------------------------------------------- /pages/goods-details/times01.wxml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pages/goods-details/times01.wxss: -------------------------------------------------------------------------------- 1 | /* pages/goods-details/times01.wxss */ -------------------------------------------------------------------------------- /pages/goods-details/times02.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "选择时段" 3 | } -------------------------------------------------------------------------------- /pages/goods-details/times02.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /pages/goods-details/times02.wxss: -------------------------------------------------------------------------------- 1 | /* pages/goods-details/times02.wxss */ -------------------------------------------------------------------------------- /pages/goods-details/vop.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "商品详情", 3 | "usingComponents": { 4 | "poster": "wxa-plugin-canvas/poster" 5 | } 6 | } -------------------------------------------------------------------------------- /pages/goods/fav.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "我的收藏" 3 | } -------------------------------------------------------------------------------- /pages/goods/his.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "navigationBarTitleText": "历史购买记录" 4 | } -------------------------------------------------------------------------------- /pages/goods/list-vop.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "商品列表" 3 | } -------------------------------------------------------------------------------- /pages/goods/list.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "商品列表" 3 | } -------------------------------------------------------------------------------- /pages/help/detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "" 3 | } -------------------------------------------------------------------------------- /pages/help/detail.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /pages/help/detail.wxss: -------------------------------------------------------------------------------- 1 | .content { 2 | padding: 32rpx; 3 | color: #333; 4 | line-height: 64rpx; 5 | } -------------------------------------------------------------------------------- /pages/help/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "帮助中心" 3 | } -------------------------------------------------------------------------------- /pages/help/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pages/help/index.wxss: -------------------------------------------------------------------------------- 1 | page { 2 | width: 100vw; 3 | height: 100vh; 4 | display: flex; 5 | } 6 | .category { 7 | width: 176rpx; 8 | height: 100vh; 9 | flex-shrink: 0; 10 | } 11 | .articles { 12 | height: 100vh; 13 | flex: 1; 14 | } -------------------------------------------------------------------------------- /pages/idCheck/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "实名认证" 3 | } -------------------------------------------------------------------------------- /pages/idCheck/index.wxml: -------------------------------------------------------------------------------- 1 | 8 | 16 | 17 | 立即认证 18 | -------------------------------------------------------------------------------- /pages/idCheck/index.wxss: -------------------------------------------------------------------------------- 1 | .btn { 2 | width: 700rpx; 3 | margin: 64rpx auto; 4 | } -------------------------------------------------------------------------------- /pages/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "enablePullDownRefresh": true, 3 | "navigationStyle": "custom" 4 | } 5 | -------------------------------------------------------------------------------- /pages/invoice/apply.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "发票申请" 3 | } -------------------------------------------------------------------------------- /pages/invoice/list.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "开票记录" 3 | } -------------------------------------------------------------------------------- /pages/invoice/list.wxss: -------------------------------------------------------------------------------- 1 | .date-btn { 2 | display: flex; 3 | justify-content: space-between; 4 | } -------------------------------------------------------------------------------- /pages/live/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "特卖直播" 3 | } -------------------------------------------------------------------------------- /pages/login/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "navigationBarTitleText": "账户登录" 4 | } -------------------------------------------------------------------------------- /pages/login/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 本次操作需要先登陆 3 | 4 | 手机号安全登录 5 | 手机号安全登录 6 | 7 | 8 | 一键登录 9 | 10 | 11 | 12 | 阅读并同意 13 | 《用户协议》、 14 | 《隐私协议》 15 | 16 | -------------------------------------------------------------------------------- /pages/login/index.wxss: -------------------------------------------------------------------------------- 1 | page { 2 | background: rgb(236, 236, 236); 3 | } 4 | .box { 5 | margin: 32rpx; 6 | background: #fff; 7 | border-radius: 24rpx; 8 | padding-bottom: 64rpx; 9 | } 10 | .title { 11 | padding: 88rpx 0 56rpx 0; 12 | text-align: center; 13 | } 14 | .btn { 15 | box-sizing: border-box; 16 | margin: 32rpx 125rpx 0 125rpx; 17 | } 18 | .van-button--default { 19 | background: #000 !important; 20 | color: #fff !important; 21 | padding: 16rpx !important; 22 | border-radius: 64rpx; 23 | } 24 | .xieyi { 25 | padding: 0 32rpx; 26 | font-size: 24rpx; 27 | color: #000; 28 | display: flex; 29 | align-items: center; 30 | } -------------------------------------------------------------------------------- /pages/maidan/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "优惠买单" 3 | } -------------------------------------------------------------------------------- /pages/maidan/index.wxss: -------------------------------------------------------------------------------- 1 | .btn { 2 | margin-top: 32rpx; 3 | } -------------------------------------------------------------------------------- /pages/my/feedback.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "意见反馈" 3 | } -------------------------------------------------------------------------------- /pages/my/feedback.wxss: -------------------------------------------------------------------------------- 1 | .btn { 2 | margin-top: 32rpx; 3 | } -------------------------------------------------------------------------------- /pages/my/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "会员中心" 3 | } -------------------------------------------------------------------------------- /pages/my/info-menu.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "个人信息" 3 | } -------------------------------------------------------------------------------- /pages/my/info-menu.wxss: -------------------------------------------------------------------------------- 1 | /* pages/my/info-menu.wxss */ -------------------------------------------------------------------------------- /pages/my/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "编辑资料" 3 | } -------------------------------------------------------------------------------- /pages/my/info.wxss: -------------------------------------------------------------------------------- 1 | .btn { 2 | margin: 32rpx; 3 | } 4 | .avatar { 5 | width: 88rpx; 6 | height: 88rpx; 7 | border-radius: 50%; 8 | margin-right: 0rpx; 9 | } 10 | .avatar-img { 11 | width: 88rpx; 12 | height: 88rpx; 13 | margin-left: -30rpx; 14 | } -------------------------------------------------------------------------------- /pages/my/setting.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "设置" 3 | } -------------------------------------------------------------------------------- /pages/my/setting.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 退出登录 10 | -------------------------------------------------------------------------------- /pages/my/setting.wxss: -------------------------------------------------------------------------------- 1 | .btn { 2 | padding: 32rpx; 3 | } -------------------------------------------------------------------------------- /pages/my/user-code.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "会员码" 3 | } -------------------------------------------------------------------------------- /pages/my/user-code.wxml: -------------------------------------------------------------------------------- 1 | 2 | {{ userCode }} 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /pages/my/user-code.wxss: -------------------------------------------------------------------------------- 1 | .title { 2 | text-align: center; 3 | color: #666; 4 | margin: 32rpx; 5 | } 6 | 7 | .van-grid-item__text { 8 | color: #e64340 !important; 9 | font-size: 28rpx !important; 10 | } 11 | 12 | .user-code-bar { 13 | width: 650rpx; 14 | height: 200rpx; 15 | margin-left: 50rpx; 16 | } 17 | 18 | .user-code { 19 | width: 650rpx; 20 | height: 650rpx; 21 | margin-left: 50rpx; 22 | } -------------------------------------------------------------------------------- /pages/notagree/index.js: -------------------------------------------------------------------------------- 1 | Page({ 2 | data: { 3 | 4 | }, 5 | onLoad: function (options) { 6 | 7 | }, 8 | onShow: function () { 9 | 10 | }, 11 | }) -------------------------------------------------------------------------------- /pages/notagree/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "很抱歉~" 3 | } -------------------------------------------------------------------------------- /pages/notagree/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | Oops! 3 | 4 | 很遗憾,若您不同意《用户协议》和《隐私协议》,将无法继续使用我们的服务。 5 | 6 | 7 | -------------------------------------------------------------------------------- /pages/notagree/index.wxss: -------------------------------------------------------------------------------- 1 | .notagree { 2 | padding: 64rpx; 3 | } 4 | .title { 5 | font-size: 100rpx; 6 | font-weight: bold; 7 | } 8 | .profile { 9 | margin-top: 64rpx; 10 | color: #666; 11 | line-height: 48rpx; 12 | } 13 | .img { 14 | margin-top: 64rpx; 15 | } -------------------------------------------------------------------------------- /pages/notice/index.js: -------------------------------------------------------------------------------- 1 | const WXAPI = require('apifm-wxapi') 2 | Page({ 3 | 4 | /** 5 | * 页面的初始数据 6 | */ 7 | data: { 8 | 9 | }, 10 | 11 | /** 12 | * 生命周期函数--监听页面加载 13 | */ 14 | onLoad: function (options) { 15 | WXAPI.noticeList().then(res => { 16 | this.setData({ 17 | noticeList: res.data.dataList 18 | }) 19 | }) 20 | }, 21 | onShow: function () { 22 | 23 | }, 24 | }) -------------------------------------------------------------------------------- /pages/notice/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "公告" 3 | } -------------------------------------------------------------------------------- /pages/notice/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {{item.title}} 5 | {{ item.dateAdd }} 6 | 7 | 查看 > 8 | 9 | -------------------------------------------------------------------------------- /pages/notice/show.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "公告详情" 3 | } -------------------------------------------------------------------------------- /pages/notice/show.wxml: -------------------------------------------------------------------------------- 1 | 2 | {{notice.title}} 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /pages/notice/show.wxss: -------------------------------------------------------------------------------- 1 | .notice { 2 | padding: 32rpx; 3 | font-size: 26rpx; 4 | color: #333; 5 | } 6 | .title { 7 | width: 100%; 8 | font-weight: bold; 9 | border-bottom: 1rpx solid #eaeaea; 10 | padding-bottom: 32rpx; 11 | } 12 | .text { 13 | margin-top: 32rpx; 14 | line-height: 64rpx; 15 | } 16 | .text image { 17 | max-width: 100%; 18 | } -------------------------------------------------------------------------------- /pages/order-details/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "订单详情" 3 | } -------------------------------------------------------------------------------- /pages/order-details/scan-result.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "订单详情" 3 | } -------------------------------------------------------------------------------- /pages/order-list/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText":"订单列表", 3 | "enablePullDownRefresh": true 4 | } -------------------------------------------------------------------------------- /pages/order/refundApply.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "申请售后" 3 | } -------------------------------------------------------------------------------- /pages/order/refundApply.wxss: -------------------------------------------------------------------------------- 1 | .price { 2 | color:#e64340; 3 | font-weight: bold; 4 | } 5 | .pic-box { 6 | display: flex; 7 | flex-wrap: wrap; 8 | } 9 | .pic-box .pic { 10 | margin: 16rpx 0 0 16rpx; 11 | width: 228rpx; 12 | height: 228rpx; 13 | } -------------------------------------------------------------------------------- /pages/peisong/detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "订单详情" 3 | } -------------------------------------------------------------------------------- /pages/peisong/orders.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "" 3 | } -------------------------------------------------------------------------------- /pages/peisong/orders.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /pages/peisong/orders.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/pages/peisong/orders.wxss -------------------------------------------------------------------------------- /pages/peisong/statistics.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "navigationBarTitleText": "业绩统计" 4 | } -------------------------------------------------------------------------------- /pages/peisong/statistics.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /pages/peisong/statistics.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/pages/peisong/statistics.wxss -------------------------------------------------------------------------------- /pages/pwd-pay/modify.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "修改交易密码" 3 | } -------------------------------------------------------------------------------- /pages/pwd-pay/modify.wxml: -------------------------------------------------------------------------------- 1 | 8 | 15 | 22 | 23 | 24 | 修改交易密码 25 | 26 | 27 | -------------------------------------------------------------------------------- /pages/pwd-pay/modify.wxss: -------------------------------------------------------------------------------- 1 | .btn { 2 | margin-top: 32rpx; 3 | } -------------------------------------------------------------------------------- /pages/pwd-pay/reset.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "重置交易密码" 3 | } -------------------------------------------------------------------------------- /pages/pwd-pay/reset.wxss: -------------------------------------------------------------------------------- 1 | .btn { 2 | margin-top: 32rpx; 3 | } -------------------------------------------------------------------------------- /pages/pwd-pay/set.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "设置交易密码" 3 | } -------------------------------------------------------------------------------- /pages/pwd-pay/set.wxml: -------------------------------------------------------------------------------- 1 | 8 | 15 | 16 | 17 | 设置交易密码 18 | 19 | -------------------------------------------------------------------------------- /pages/pwd-pay/set.wxss: -------------------------------------------------------------------------------- 1 | .btn { 2 | margin-top: 32rpx; 3 | } -------------------------------------------------------------------------------- /pages/raffle/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "抽奖" 3 | } -------------------------------------------------------------------------------- /pages/recharge/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "在线充值" 3 | } -------------------------------------------------------------------------------- /pages/recharge/index.wxss: -------------------------------------------------------------------------------- 1 | .rechargeSendRules { 2 | margin-top: 32rpx; 3 | } -------------------------------------------------------------------------------- /pages/recycle/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText":"申请回收" 3 | } -------------------------------------------------------------------------------- /pages/recycle/index.wxss: -------------------------------------------------------------------------------- 1 | .btn { 2 | padding: 32rpx; 3 | } -------------------------------------------------------------------------------- /pages/recycle/order-detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText":"回收订单详情" 3 | } -------------------------------------------------------------------------------- /pages/recycle/order-detail.wxss: -------------------------------------------------------------------------------- 1 | .btn { 2 | padding: 32rpx; 3 | } 4 | .hx-qrcode { 5 | padding: 32rpx; 6 | text-align: center; 7 | color: #333; 8 | } 9 | .hx-qrcode .t { 10 | font-weight: bold; 11 | } 12 | .hx-qrcode .t2 { 13 | font-size: 26rpx; 14 | color: #666; 15 | } 16 | .hx-qrcode .hx-canvas { 17 | width: 650rpx; 18 | height: 650rpx; 19 | } 20 | .statusStr { 21 | color: #e64340 !important; 22 | font-weight: bold; 23 | } -------------------------------------------------------------------------------- /pages/recycle/orders.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText":"回收订单", 3 | "enablePullDownRefresh": true 4 | } -------------------------------------------------------------------------------- /pages/recycle/orders.wxss: -------------------------------------------------------------------------------- 1 | .btn { 2 | margin-left: 16rpx; 3 | } -------------------------------------------------------------------------------- /pages/score-excharge/growth.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "积分兑换成长值" 3 | } -------------------------------------------------------------------------------- /pages/score-excharge/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "积分券兑换积分" 3 | } -------------------------------------------------------------------------------- /pages/score-excharge/index.wxml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 券号 6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 |
14 | -------------------------------------------------------------------------------- /pages/score/growth.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "成长值明细" 3 | } -------------------------------------------------------------------------------- /pages/score/growth.wxml: -------------------------------------------------------------------------------- 1 | 2 | 当前成长值 3 | {{growth}} 4 | 5 | 暂无成长值明细~ 6 | 7 | 8 | {{ item.typeStr }} {{ item.remark? '('+ item.remark +')' : '' }} 9 | {{ item.dateAdd }} 10 | 11 | {{ (item.behavior ==0 ) ? '+' : '' }} {{ item.growth }} 12 | 13 | -------------------------------------------------------------------------------- /pages/score/growth.wxss: -------------------------------------------------------------------------------- 1 | .score { 2 | display: flex; 3 | flex-direction: column; 4 | width: 750rpx; 5 | padding-top:50rpx; 6 | height: 150rpx; 7 | background-color: #e85654; 8 | text-align: center; 9 | font-size: 14px; 10 | line-height: 30px; 11 | color:#fff; 12 | } 13 | 14 | .no-data { 15 | margin-top: 100rpx; 16 | text-align: center; 17 | font-size: 13px; 18 | color:#ccc; 19 | } 20 | 21 | .cashlogs { 22 | display: flex; 23 | font-size: 12px; 24 | margin-top: 20rpx; 25 | padding-bottom: 20rpx; 26 | border-bottom: 1px solid #eee; 27 | line-height: 20px; 28 | } 29 | .cashlogs .profile { 30 | width:600rpx; 31 | padding-left: 30rpx; 32 | } 33 | .cashlogs .amount { 34 | width:150rpx; 35 | } -------------------------------------------------------------------------------- /pages/score/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "积分明细" 3 | } -------------------------------------------------------------------------------- /pages/score/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 可用积分 3 | {{score}} 4 | 5 | 暂无积分明细~ 6 | 7 | 8 | {{ item.typeStr }} {{ item.remark? '('+ item.remark +')' : '' }} 9 | {{ item.dateAdd }} 10 | 11 | {{ (item.behavior ==0 ) ? '+' : '' }} {{ item.score }} 12 | 13 | -------------------------------------------------------------------------------- /pages/score/index.wxss: -------------------------------------------------------------------------------- 1 | .score { 2 | display: flex; 3 | flex-direction: column; 4 | width: 750rpx; 5 | padding-top:50rpx; 6 | height: 150rpx; 7 | background-color: #e85654; 8 | text-align: center; 9 | font-size: 14px; 10 | line-height: 30px; 11 | color:#fff; 12 | } 13 | 14 | .no-data { 15 | margin-top: 100rpx; 16 | text-align: center; 17 | font-size: 13px; 18 | color:#ccc; 19 | } 20 | 21 | .cashlogs { 22 | display: flex; 23 | font-size: 12px; 24 | margin-top: 20rpx; 25 | padding-bottom: 20rpx; 26 | border-bottom: 1px solid #eee; 27 | line-height: 20px; 28 | } 29 | .cashlogs .profile { 30 | width:600rpx; 31 | padding-left: 30rpx; 32 | } 33 | .cashlogs .amount { 34 | width:150rpx; 35 | } -------------------------------------------------------------------------------- /pages/search/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "搜一搜" 3 | } -------------------------------------------------------------------------------- /pages/search/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | {{ item }} 9 | 10 | 18 | 删除 19 | 20 | 21 | -------------------------------------------------------------------------------- /pages/search/index.wxss: -------------------------------------------------------------------------------- 1 | /* pages/search/index.wxss */ -------------------------------------------------------------------------------- /pages/select-address/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "选择收货地址", 3 | "enablePullDownRefresh": true 4 | } -------------------------------------------------------------------------------- /pages/select-address/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 新增收货地址 13 | 14 | -------------------------------------------------------------------------------- /pages/select-address/index.wxss: -------------------------------------------------------------------------------- 1 | .list { 2 | display: flex; 3 | justify-content: space-between; 4 | align-items: center; 5 | padding-right: 32rpx; 6 | border-bottom: solid 2rpx #eeeeee; 7 | } 8 | .aaa { 9 | flex: 1; 10 | } -------------------------------------------------------------------------------- /pages/shop-cart/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "购物车" 3 | } 4 | -------------------------------------------------------------------------------- /pages/shop-cart/index.wxss: -------------------------------------------------------------------------------- 1 | @import "../template-cart/template-cart.wxss"; 2 | page{ 3 | min-height: 100%; 4 | background-color: #F2f2f2; 5 | } 6 | .container { 7 | background-color: #F2f2f2; 8 | min-height: 100%; 9 | } 10 | .pos-fiexd{ 11 | position: fixed; 12 | bottom: 0; 13 | left: 0; 14 | } 15 | .vtabs{ 16 | width: 100vw; 17 | } -------------------------------------------------------------------------------- /pages/shop/select.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "navigationBarTitleText": "选择门店" 4 | } -------------------------------------------------------------------------------- /pages/sign/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "每日签到" 3 | } -------------------------------------------------------------------------------- /pages/sign/index.wxml: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | 点击签到 12 | 13 | -------------------------------------------------------------------------------- /pages/sign/index.wxss: -------------------------------------------------------------------------------- 1 | .todo-dot-bottom { 2 | color: red !important; 3 | } 4 | .zwqd-box { 5 | text-align: center; 6 | margin: auto; 7 | margin-top: 32rpx; 8 | } 9 | .zwqd-box image { 10 | width: 140rpx; 11 | height: 140rpx; 12 | margin: auto; 13 | } 14 | .zwqd-box view { 15 | margin-top: 16rpx; 16 | color: #999; 17 | font-size: 26rpx; 18 | } -------------------------------------------------------------------------------- /pages/start/start.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": " ", 3 | "enablePullDownRefresh": false, 4 | "disableScroll": true, 5 | "navigationStyle": "custom" 6 | } -------------------------------------------------------------------------------- /pages/start/start.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 进入小程序 14 | 15 | -------------------------------------------------------------------------------- /pages/template-cart/template-cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EastWorld/wechat-app-mall/11aab67cec4c7e1038391f9da363fb09672bb070/pages/template-cart/template-cart.js -------------------------------------------------------------------------------- /pages/test/wifi.js: -------------------------------------------------------------------------------- 1 | Page({ 2 | data: { 3 | test: '

1893年
奥斯曼大街上诞生了一间70平米的商铺。在128年间,它发展成为一家7万平方米的大型百货商场。它就是巴黎老佛爷奥斯曼旗舰店。

' 4 | }, 5 | onLoad(options) { 6 | }, 7 | onShow() { 8 | 9 | }, 10 | }) -------------------------------------------------------------------------------- /pages/test/wifi.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /pages/test/wifi.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/test/wifi.wxss: -------------------------------------------------------------------------------- 1 | /* pages/test/wifi.wxss */ -------------------------------------------------------------------------------- /pages/to-pay-order/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "确认订单" 3 | } 4 | -------------------------------------------------------------------------------- /pages/withdraw/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "申请提现" 3 | } -------------------------------------------------------------------------------- /pages/withdraw/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 16 | 24 | 25 | 申请提现 26 | 27 | -------------------------------------------------------------------------------- /pages/withdraw/index.wxss: -------------------------------------------------------------------------------- 1 | .btn { 2 | margin-top: 32rpx; 3 | } -------------------------------------------------------------------------------- /pages/wuliu/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "物流信息" 3 | } -------------------------------------------------------------------------------- /project.private.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "setting": { 3 | "compileHotReLoad": true, 4 | "urlCheck": false, 5 | "bigPackageSizeSupport": false 6 | }, 7 | "condition": {}, 8 | "description": "项目私有配置文件。此文件中的内容将覆盖 project.config.json 中的相同字段。项目的改动优先同步到此文件中。详见文档:https://developers.weixin.qq.com/miniprogram/dev/devtools/projectconfig.html", 9 | "libVersion": "3.7.12", 10 | "projectname": "%E5%A4%A9%E4%BD%BF%E7%AB%A5%E8%A3%85" 11 | } -------------------------------------------------------------------------------- /sitemap.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /utils/image.js: -------------------------------------------------------------------------------- 1 | function imageUtil (originalWidth, originalHeight) { 2 | let imageSize = {} 3 | wx.getSystemInfo({ 4 | success: function (res) { 5 | const windowWidth = res.windowWidth 6 | imageSize.x = 0 7 | imageSize.y = 0 8 | imageSize.windowWidth = windowWidth 9 | imageSize.imageWidth = originalWidth 10 | imageSize.imageHeight = originalHeight 11 | if (originalWidth > windowWidth) { 12 | imageSize.imageWidth = windowWidth 13 | imageSize.imageHeight = windowWidth * originalHeight / originalWidth 14 | } else { 15 | imageSize.x = (windowWidth - originalWidth) / 2 16 | } 17 | } 18 | }) 19 | return imageSize 20 | } 21 | 22 | module.exports = { 23 | imageUtil: imageUtil 24 | } 25 | -------------------------------------------------------------------------------- /utils/tools.wxs: -------------------------------------------------------------------------------- 1 | // 页面上使用的公共类 2 | // 3 | // tools.tofix2(12.33333) 4 | module.exports = { 5 | msg: 'wxs-tools', 6 | tofix2: function(num) { 7 | return num.toFixed(2) 8 | } 9 | }; --------------------------------------------------------------------------------