├── .babelrc ├── .gitignore ├── README.md ├── alipay ├── npm │ ├── README.md │ ├── dist │ │ ├── __antmove │ │ │ ├── README.MD │ │ │ ├── api │ │ │ │ ├── config.js │ │ │ │ ├── desc.js │ │ │ │ ├── index.js │ │ │ │ ├── log.js │ │ │ │ ├── my.js │ │ │ │ ├── propsPolyfill.js │ │ │ │ ├── relations.js │ │ │ │ ├── runtimeProcess.js │ │ │ │ └── utils.js │ │ │ ├── component │ │ │ │ ├── btn │ │ │ │ │ ├── btn.acss │ │ │ │ │ ├── btn.axml │ │ │ │ │ ├── btn.js │ │ │ │ │ └── btn.json │ │ │ │ ├── classSubdirectory │ │ │ │ │ ├── app.js │ │ │ │ │ ├── component.js │ │ │ │ │ ├── page.js │ │ │ │ │ ├── processRelation.js │ │ │ │ │ ├── promise.js │ │ │ │ │ ├── relation.js │ │ │ │ │ ├── selectComponent.js │ │ │ │ │ └── utils.js │ │ │ │ ├── componentClass.js │ │ │ │ ├── custom-input │ │ │ │ │ ├── custom-input.acss │ │ │ │ │ ├── custom-input.axml │ │ │ │ │ ├── custom-input.js │ │ │ │ │ └── custom-input.json │ │ │ │ ├── custom-loading │ │ │ │ │ ├── Loading.png │ │ │ │ │ ├── custom-loading.acss │ │ │ │ │ ├── custom-loading.axml │ │ │ │ │ ├── custom-loading.js │ │ │ │ │ └── custom-loading.json │ │ │ │ ├── custom-navigator │ │ │ │ │ ├── custom-navigator.acss │ │ │ │ │ ├── custom-navigator.axml │ │ │ │ │ ├── custom-navigator.js │ │ │ │ │ └── custom-navigator.json │ │ │ │ ├── lifeCyclesMap.js │ │ │ │ └── utils │ │ │ │ │ ├── _relationNode.js │ │ │ │ │ ├── cloneDeep.js │ │ │ │ │ ├── collectObserver.js │ │ │ │ │ ├── collectObservers.js │ │ │ │ │ ├── compatibleLifetime.js │ │ │ │ │ ├── findRelationNode.js │ │ │ │ │ ├── getUrl.js │ │ │ │ │ ├── handleAfterInit.js │ │ │ │ │ ├── handleExternalClasses.js │ │ │ │ │ ├── handleProps.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── mergeOptions.js │ │ │ │ │ ├── nextUid.js │ │ │ │ │ ├── observerHandle.js │ │ │ │ │ ├── processDataSet.js │ │ │ │ │ ├── processRelationPath.js │ │ │ │ │ ├── processTriggerEvent.js │ │ │ │ │ ├── updateData.js │ │ │ │ │ └── watchShakes.js │ │ │ └── static │ │ │ │ └── app.acss │ │ ├── app.acss │ │ ├── app.js │ │ ├── app.json │ │ ├── common │ │ │ └── page.js │ │ ├── components │ │ │ ├── demo-block │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── demo-home-nav │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ └── demo-home │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ ├── config.js │ │ ├── database_area.js │ │ ├── database_area.json │ │ ├── dist │ │ │ ├── _vant │ │ │ │ └── icons │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── README.md │ │ │ │ │ ├── package.json │ │ │ │ │ └── src │ │ │ │ │ ├── config.js │ │ │ │ │ ├── encode.less │ │ │ │ │ ├── index.less │ │ │ │ │ ├── vant-icon-96970a.ttf │ │ │ │ │ ├── vant-icon-96970a.woff │ │ │ │ │ └── vant-icon-96970a.woff2 │ │ │ ├── action-sheet │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── area │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── button │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.axmlloadingColor.sjs │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── calendar │ │ │ │ ├── calendar.axml │ │ │ │ ├── calendar.json │ │ │ │ ├── components │ │ │ │ │ ├── header │ │ │ │ │ │ ├── index.acss │ │ │ │ │ │ ├── index.axml │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.json │ │ │ │ │ └── month │ │ │ │ │ │ ├── index.acss │ │ │ │ │ │ ├── index.axml │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── index.sjs │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.sjs │ │ │ │ ├── utils.d.ts │ │ │ │ ├── utils.js │ │ │ │ └── utils.sjs │ │ │ ├── card │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── cell-group │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── cell │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── checkbox-group │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── checkbox │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ └── index.sjs │ │ │ ├── circle │ │ │ │ ├── canvas.d.ts │ │ │ │ ├── canvas.js │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── col │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── collapse-item │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── collapse │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── common │ │ │ │ ├── color.d.ts │ │ │ │ ├── color.js │ │ │ │ ├── component.d.ts │ │ │ │ ├── component.js │ │ │ │ ├── index.acss │ │ │ │ ├── style │ │ │ │ │ ├── clearfix.acss │ │ │ │ │ ├── ellipsis.acss │ │ │ │ │ ├── hairline.acss │ │ │ │ │ ├── mixins │ │ │ │ │ │ ├── clearfix.acss │ │ │ │ │ │ ├── ellipsis.acss │ │ │ │ │ │ └── hairline.acss │ │ │ │ │ ├── theme.acss │ │ │ │ │ └── var.acss │ │ │ │ ├── utils.d.ts │ │ │ │ ├── utils.js │ │ │ │ ├── validator.d.ts │ │ │ │ ├── validator.js │ │ │ │ ├── version.d.ts │ │ │ │ └── version.js │ │ │ ├── count-down │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── utils.d.ts │ │ │ │ └── utils.js │ │ │ ├── datetime-picker │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── definitions │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── weapp.d.ts │ │ │ │ └── weapp.js │ │ │ ├── dialog │ │ │ │ ├── dialog.d.ts │ │ │ │ ├── dialog.js │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── divider │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── dropdown-item │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── shared.d.ts │ │ │ │ └── shared.js │ │ │ ├── dropdown-menu │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ └── index.sjs │ │ │ ├── empty │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── field │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.sjs │ │ │ │ ├── props.d.ts │ │ │ │ └── props.js │ │ │ ├── goods-action-button │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── goods-action-icon │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── goods-action │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── grid-item │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── grid │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── icon │ │ │ │ ├── computed.sjs │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── image │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── index-anchor │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── index-bar │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── info │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── loading │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── mixins │ │ │ │ ├── basic.d.ts │ │ │ │ ├── basic.js │ │ │ │ ├── button.d.ts │ │ │ │ ├── button.js │ │ │ │ ├── link.d.ts │ │ │ │ ├── link.js │ │ │ │ ├── open-type.d.ts │ │ │ │ ├── open-type.js │ │ │ │ ├── page-scroll.d.ts │ │ │ │ ├── page-scroll.js │ │ │ │ ├── touch.d.ts │ │ │ │ ├── touch.js │ │ │ │ ├── transition.d.ts │ │ │ │ └── transition.js │ │ │ ├── nav-bar │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ └── index.sjs │ │ │ ├── notice-bar │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── notify │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── notify.d.ts │ │ │ │ └── notify.js │ │ │ ├── overlay │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── panel │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── picker-column │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ └── index.sjs │ │ │ ├── picker │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.axmlisSimple.sjs │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── shared.d.ts │ │ │ │ ├── shared.js │ │ │ │ ├── toolbar.axml │ │ │ │ └── toolbar.json │ │ │ ├── popup │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── progress │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ └── index.sjs │ │ │ ├── radio-group │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── radio │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── rate │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── row │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── search │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── share-sheet │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.sjs │ │ │ │ ├── options.acss │ │ │ │ ├── options.axml │ │ │ │ ├── options.d.ts │ │ │ │ ├── options.js │ │ │ │ ├── options.json │ │ │ │ └── options.sjs │ │ │ ├── sidebar-item │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── sidebar │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── skeleton │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── slider │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ └── index.sjs │ │ │ ├── stepper │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── steps │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.axmlstatus.sjs │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── sticky │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ └── index.sjs │ │ │ ├── submit-bar │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── swipe-cell │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── switch │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── tab │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── tabbar-item │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── tabbar │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── tabs │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ └── index.sjs │ │ │ ├── tag │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── toast │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── toast.d.ts │ │ │ │ └── toast.js │ │ │ ├── transition │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── tree-select │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ └── index.sjs │ │ │ ├── uploader │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── shared.d.ts │ │ │ │ ├── shared.js │ │ │ │ ├── utils.d.ts │ │ │ │ └── utils.js │ │ │ └── wxs │ │ │ │ ├── add-unit.sjs │ │ │ │ ├── array.sjs │ │ │ │ ├── bem.sjs │ │ │ │ ├── memoize.sjs │ │ │ │ ├── object.sjs │ │ │ │ ├── style.sjs │ │ │ │ └── utils.sjs │ │ ├── functions │ │ │ └── foo │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ ├── mini.project.json │ │ ├── pages │ │ │ ├── action-sheet │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── area │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── button │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── calendar │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ └── index.sjs │ │ │ ├── card │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── cell │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── checkbox │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── circle │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── col │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── collapse │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── count-down │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── dashboard │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── datetime-picker │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── dialog │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── divider │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── dropdown-menu │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── empty │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── field │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── goods-action │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── grid │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── icon │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── image │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── index-bar │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── loading │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── nav-bar │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── notice-bar │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── notify │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── overlay │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── panel │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── picker │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── popup │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── progress │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── radio │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── rate │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── search │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── share-sheet │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── sidebar │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── skeleton │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── slider │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── stepper │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── steps │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── sticky │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── submit-bar │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── swipe-cell │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── switch │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── tab │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── tabbar │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── tag │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── toast │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── transition │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ ├── tree-select │ │ │ │ ├── config.js │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ │ └── uploader │ │ │ │ ├── index.acss │ │ │ │ ├── index.axml │ │ │ │ ├── index.js │ │ │ │ └── index.json │ │ └── sitemap.json │ ├── package.json │ └── postinstall.js └── vant-app │ ├── __antmove │ ├── README.MD │ ├── api │ │ ├── config.js │ │ ├── desc.js │ │ ├── index.js │ │ ├── log.js │ │ ├── my.js │ │ ├── propsPolyfill.js │ │ ├── relations.js │ │ ├── runtimeProcess.js │ │ └── utils.js │ ├── component │ │ ├── btn │ │ │ ├── btn.acss │ │ │ ├── btn.axml │ │ │ ├── btn.js │ │ │ └── btn.json │ │ ├── classSubdirectory │ │ │ ├── app.js │ │ │ ├── component.js │ │ │ ├── page.js │ │ │ ├── processRelation.js │ │ │ ├── promise.js │ │ │ ├── relation.js │ │ │ ├── selectComponent.js │ │ │ └── utils.js │ │ ├── componentClass.js │ │ ├── custom-input │ │ │ ├── custom-input.acss │ │ │ ├── custom-input.axml │ │ │ ├── custom-input.js │ │ │ └── custom-input.json │ │ ├── custom-loading │ │ │ ├── Loading.png │ │ │ ├── custom-loading.acss │ │ │ ├── custom-loading.axml │ │ │ ├── custom-loading.js │ │ │ └── custom-loading.json │ │ ├── custom-navigator │ │ │ ├── custom-navigator.acss │ │ │ ├── custom-navigator.axml │ │ │ ├── custom-navigator.js │ │ │ └── custom-navigator.json │ │ ├── lifeCyclesMap.js │ │ └── utils │ │ │ ├── _relationNode.js │ │ │ ├── cloneDeep.js │ │ │ ├── collectObserver.js │ │ │ ├── collectObservers.js │ │ │ ├── compatibleLifetime.js │ │ │ ├── findRelationNode.js │ │ │ ├── getUrl.js │ │ │ ├── handleAfterInit.js │ │ │ ├── handleExternalClasses.js │ │ │ ├── handleProps.js │ │ │ ├── index.js │ │ │ ├── mergeOptions.js │ │ │ ├── nextUid.js │ │ │ ├── observerHandle.js │ │ │ ├── processDataSet.js │ │ │ ├── processRelationPath.js │ │ │ ├── processTriggerEvent.js │ │ │ ├── updateData.js │ │ │ └── watchShakes.js │ └── static │ │ └── app.acss │ ├── app.acss │ ├── app.js │ ├── app.json │ ├── common │ └── page.js │ ├── config.js │ ├── database_area.js │ ├── database_area.json │ ├── functions │ └── foo │ │ ├── index.js │ │ └── package.json │ ├── mini.project.json │ ├── package.json │ ├── pages │ ├── action-sheet │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── area │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── button │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── calendar │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ ├── index.json │ │ └── index.sjs │ ├── card │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── cell │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── checkbox │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── circle │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── col │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── collapse │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── count-down │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── dashboard │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── datetime-picker │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── dialog │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── divider │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── dropdown-menu │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── empty │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── field │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── goods-action │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── grid │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── icon │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── image │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── index-bar │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── loading │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── nav-bar │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── notice-bar │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── notify │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── overlay │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── panel │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── picker │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── popup │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── progress │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── radio │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── rate │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── search │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── share-sheet │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── sidebar │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── skeleton │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── slider │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── stepper │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── steps │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── sticky │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── submit-bar │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── swipe-cell │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── switch │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── tab │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── tabbar │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── tag │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── toast │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── transition │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── tree-select │ │ ├── config.js │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ └── uploader │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── project.config.json │ └── sitemap.json ├── dd └── vant-app │ ├── __antmove │ ├── api │ │ ├── config.js │ │ ├── desc.js │ │ ├── index.js │ │ ├── log.js │ │ ├── my.js │ │ ├── relations.js │ │ ├── runtimeProcess.js │ │ └── utils.js │ ├── component │ │ ├── classSubdirectory │ │ │ ├── app.js │ │ │ ├── component.js │ │ │ ├── page.js │ │ │ ├── processRelation.js │ │ │ ├── promise.js │ │ │ ├── relation.js │ │ │ ├── selectComponent.js │ │ │ └── utils.js │ │ ├── componentClass.js │ │ ├── custom-loading │ │ │ ├── Loading.png │ │ │ ├── custom-loading.acss │ │ │ ├── custom-loading.axml │ │ │ ├── custom-loading.js │ │ │ └── custom-loading.json │ │ ├── lifeCyclesMap.js │ │ └── utils │ │ │ ├── _relationNode.js │ │ │ ├── collectObserver.js │ │ │ ├── collectObservers.js │ │ │ ├── compatibleLifetime.js │ │ │ ├── findRelationNode.js │ │ │ ├── getUrl.js │ │ │ ├── handleAfterInit.js │ │ │ ├── handleExternalClasses.js │ │ │ ├── handleProps.js │ │ │ ├── index.js │ │ │ ├── mergeOptions.js │ │ │ ├── observerHandle.js │ │ │ ├── processDataSet.js │ │ │ ├── processMethods.js │ │ │ ├── processRelationPath.js │ │ │ ├── processTriggerEvent.js │ │ │ ├── updateData.js │ │ │ └── watchShakes.js │ └── static │ │ └── app.acss │ ├── app.acss │ ├── app.js │ ├── app.json │ ├── common │ └── page.js │ ├── components │ └── demo-block │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── config.js │ ├── custom-tab-bar │ ├── index.axml │ ├── index.js │ └── index.json │ ├── dist │ ├── _vant │ │ └── icons │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ ├── config.js │ │ │ ├── encode.less │ │ │ ├── index.less │ │ │ ├── vant-icon-3a7dc2.ttf │ │ │ ├── vant-icon-3a7dc2.woff │ │ │ └── vant-icon-3a7dc2.woff2 │ ├── action-sheet │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── area │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── badge-group │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── badge │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── button │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── card │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── cell-group │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── cell │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── checkbox-group │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── checkbox │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── col │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── collapse-item │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── collapse │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── common │ │ ├── color.d.ts │ │ ├── color.js │ │ ├── component.d.ts │ │ ├── component.js │ │ ├── index.acss │ │ ├── style │ │ │ ├── clearfix.acss │ │ │ ├── ellipsis.acss │ │ │ ├── hairline.acss │ │ │ ├── mixins │ │ │ │ ├── clearfix.acss │ │ │ │ ├── ellipsis.acss │ │ │ │ └── hairline.acss │ │ │ └── var.acss │ │ ├── utils.d.ts │ │ └── utils.js │ ├── datetime-picker │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── definitions │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── weapp.d.ts │ │ └── weapp.js │ ├── dialog │ │ ├── dialog.d.ts │ │ ├── dialog.js │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── field │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── goods-action-button │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── goods-action-icon │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── goods-action │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── icon │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── info │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── loading │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── mixins │ │ ├── basic.d.ts │ │ ├── basic.js │ │ ├── button.d.ts │ │ ├── button.js │ │ ├── link.d.ts │ │ ├── link.js │ │ ├── observer │ │ │ ├── behavior.d.ts │ │ │ ├── behavior.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── props.d.ts │ │ │ └── props.js │ │ ├── open-type.d.ts │ │ ├── open-type.js │ │ ├── safe-area.d.ts │ │ ├── safe-area.js │ │ ├── touch.d.ts │ │ ├── touch.js │ │ ├── transition.d.ts │ │ └── transition.js │ ├── nav-bar │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── notice-bar │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── notify │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── notify.d.ts │ │ └── notify.js │ ├── overlay │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── panel │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── picker-column │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ └── index.sjs │ ├── picker │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.axmlisSimple.sjs │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── shared.d.ts │ │ └── shared.js │ ├── popup │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── progress │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ └── index.sjs │ ├── radio-group │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── radio │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── rate │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── row │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── search │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── slider │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── stepper │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── steps │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.axmlstatus.sjs │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── submit-bar │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── swipe-cell │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── switch-cell │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── switch │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── tab │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── tabbar-item │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── tabbar │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── tabs │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── tag │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── toast │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.json │ │ ├── toast.d.ts │ │ └── toast.js │ ├── transition │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ ├── tree-select │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.axmltsUtil.sjs │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.json │ └── wxs │ │ ├── array.sjs │ │ ├── bem.sjs │ │ ├── memoize.sjs │ │ ├── object.sjs │ │ └── utils.sjs │ ├── pages │ ├── action-sheet │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── area │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── badge │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── button │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── card │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── cell │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── checkbox │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── col │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── collapse │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── dashboard │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── datetime-picker │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── dialog │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── field │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── goods-action │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── icon │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── loading │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── nav-bar │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── notice-bar │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── notify │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── panel │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── picker │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── popup │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── progress │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── radio │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── rate │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── search │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── slider │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── stepper │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── steps │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── submit-bar │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── swipe-cell │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── switch-cell │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── switch │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── tab │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── tabbar │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── tabbar1 │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── tag │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── toast │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ ├── transition │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ └── tree-select │ │ ├── config.js │ │ ├── index.acss │ │ ├── index.axml │ │ ├── index.js │ │ └── index.json │ └── sitemap.json ├── package-lock.json ├── package.json └── wx ├── README.md └── vant-app ├── antmove.config.js ├── app.js ├── app.json ├── app.wxss ├── common └── page.js ├── components ├── demo-block │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── demo-home-nav │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss └── demo-home │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── config.js ├── database_area.js ├── database_area.json ├── dist ├── _vant │ └── icons │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── package.json │ │ └── src │ │ ├── config.js │ │ ├── encode.less │ │ ├── index.less │ │ ├── vant-icon-96970a.ttf │ │ ├── vant-icon-96970a.woff │ │ └── vant-icon-96970a.woff2 ├── action-sheet │ ├── index.d.ts │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── area │ ├── index.d.ts │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── button │ ├── index.d.ts │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── 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 ├── cell-group │ ├── index.d.ts │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── cell │ ├── index.d.ts │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── 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.wxss ├── collapse-item │ ├── 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 │ ├── style │ │ ├── clearfix.wxss │ │ ├── ellipsis.wxss │ │ ├── hairline.wxss │ │ ├── mixins │ │ │ ├── clearfix.wxss │ │ │ ├── ellipsis.wxss │ │ │ └── hairline.wxss │ │ ├── theme.wxss │ │ └── var.wxss │ ├── utils.d.ts │ ├── utils.js │ ├── validator.d.ts │ ├── validator.js │ ├── version.d.ts │ └── version.js ├── 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 │ ├── weapp.d.ts │ └── weapp.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.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.wxss ├── field │ ├── index.d.ts │ ├── index.js │ ├── index.json │ ├── index.wxml │ ├── index.wxs │ ├── index.wxss │ ├── props.d.ts │ └── props.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.wxss ├── grid │ ├── index.d.ts │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── icon │ ├── computed.wxs │ ├── index.d.ts │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── image │ ├── index.d.ts │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── 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.wxss ├── mixins │ ├── basic.d.ts │ ├── basic.js │ ├── button.d.ts │ ├── button.js │ ├── link.d.ts │ ├── link.js │ ├── open-type.d.ts │ ├── open-type.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.wxss ├── notify │ ├── index.d.ts │ ├── index.js │ ├── index.json │ ├── index.wxml │ ├── index.wxss │ ├── notify.d.ts │ └── notify.js ├── overlay │ ├── index.d.ts │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── 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.wxss │ ├── shared.d.ts │ ├── shared.js │ └── toolbar.wxml ├── popup │ ├── index.d.ts │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── 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.wxss ├── rate │ ├── index.d.ts │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── row │ ├── index.d.ts │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── 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.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.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.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.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.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 ├── functions └── foo │ ├── index.js │ └── package.json ├── pages ├── action-sheet │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── area │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── button │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── calendar │ ├── index.js │ ├── index.json │ ├── index.wxml │ ├── index.wxs │ └── index.wxss ├── card │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── cell │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── checkbox │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── circle │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── col │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── collapse │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── count-down │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── dashboard │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── datetime-picker │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── dialog │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── divider │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── dropdown-menu │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── empty │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── field │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── goods-action │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── grid │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── icon │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── image │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── index-bar │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── loading │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── nav-bar │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── notice-bar │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── notify │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── overlay │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── panel │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── picker │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── popup │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── progress │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── radio │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── rate │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── search │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── share-sheet │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── sidebar │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── skeleton │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── slider │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── stepper │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── steps │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── sticky │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── submit-bar │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── swipe-cell │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── switch │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── tab │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── tabbar │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── tag │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── toast │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── transition │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── tree-select │ ├── config.js │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss └── uploader │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── project.config.json └── sitemap.json /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["@babel/preset-env"] 3 | } -------------------------------------------------------------------------------- /alipay/npm/dist/__antmove/README.MD: -------------------------------------------------------------------------------- 1 | ### __antmove 的用途 2 | 3 | __antmove 是Antmove编译之后在输出路径生成的运行时文件夹,它的作用就是抹平编译转换难以抹平的差异。包括 './api' 目录下对API的封装, ' ./component' 目录对框架能力、自定义组件的处理等。该目录请勿删除及修改 4 | -------------------------------------------------------------------------------- /alipay/npm/dist/__antmove/api/config.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | module.exports = { 4 | env: "production", 5 | global: my, 6 | useRuntimeLog: false 7 | }; -------------------------------------------------------------------------------- /alipay/npm/dist/__antmove/api/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | var runtimeProcess = require('./runtimeProcess.js'); 4 | 5 | module.exports = runtimeProcess; -------------------------------------------------------------------------------- /alipay/npm/dist/__antmove/component/btn/btn.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /alipay/npm/dist/__antmove/component/custom-input/custom-input.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/alipay/npm/dist/__antmove/component/custom-input/custom-input.acss -------------------------------------------------------------------------------- /alipay/npm/dist/__antmove/component/custom-input/custom-input.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /alipay/npm/dist/__antmove/component/custom-loading/custom-loading.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /alipay/npm/dist/__antmove/component/custom-navigator/custom-navigator.acss: -------------------------------------------------------------------------------- 1 | .am-navigator-wrap { 2 | width: 100%; 3 | height: 100%; 4 | } 5 | -------------------------------------------------------------------------------- /alipay/npm/dist/__antmove/component/custom-navigator/custom-navigator.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /alipay/npm/dist/__antmove/component/utils/nextUid.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | module.exports = function nextUid() { 4 | var len = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 8; 5 | return Math.random().toString(36).substr(len + 1); 6 | }; -------------------------------------------------------------------------------- /alipay/npm/dist/components/demo-block/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | Component({ 4 | properties: { 5 | title: String, 6 | padding: Boolean, 7 | card: Boolean 8 | }, 9 | externalClasses: ["custom-class"] 10 | }); -------------------------------------------------------------------------------- /alipay/npm/dist/components/demo-block/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/components/demo-home-nav/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { "van-icon": "../../dist/icon/index" } 4 | } 5 | -------------------------------------------------------------------------------- /alipay/npm/dist/components/demo-home/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { "demo-home-nav": "../demo-home-nav/index" } 4 | } 5 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/_vant/icons/src/vant-icon-96970a.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/alipay/npm/dist/dist/_vant/icons/src/vant-icon-96970a.ttf -------------------------------------------------------------------------------- /alipay/npm/dist/dist/_vant/icons/src/vant-icon-96970a.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/alipay/npm/dist/dist/_vant/icons/src/vant-icon-96970a.woff -------------------------------------------------------------------------------- /alipay/npm/dist/dist/_vant/icons/src/vant-icon-96970a.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/alipay/npm/dist/dist/_vant/icons/src/vant-icon-96970a.woff2 -------------------------------------------------------------------------------- /alipay/npm/dist/dist/action-sheet/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/area/index.acss: -------------------------------------------------------------------------------- 1 | @import "../common/index.acss"; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/area/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/area/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": { "van-picker": "../picker/index" } } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/button/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/button/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-loading": "../loading/index", 6 | "btn": "../../__antmove/component/btn/btn" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/calendar/calendar.json: -------------------------------------------------------------------------------- 1 | {"component":true} -------------------------------------------------------------------------------- /alipay/npm/dist/dist/calendar/components/header/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/calendar/components/header/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/calendar/components/month/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/calendar/components/month/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/calendar/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/card/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/card/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": { "van-tag": "../tag/index" } } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/cell-group/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/cell-group/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/cell/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/cell/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": { "van-icon": "../icon/index" } } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/checkbox-group/index.acss: -------------------------------------------------------------------------------- 1 | @import "../common/index.acss"; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/checkbox-group/index.axml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/checkbox-group/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/checkbox-group/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/checkbox/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/checkbox/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": { "van-icon": "../icon/index" } } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/circle/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/circle/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/col/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/col/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/collapse-item/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/collapse-item/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": { "van-cell": "../cell/index" } } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/collapse/index.acss: -------------------------------------------------------------------------------- 1 | @import "../common/index.acss"; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/collapse/index.axml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/collapse/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/collapse/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/common/style/clearfix.acss: -------------------------------------------------------------------------------- 1 | .van-clearfix:after { 2 | display: table; 3 | clear: both; 4 | content: ""; 5 | } 6 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/common/style/mixins/clearfix.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/alipay/npm/dist/dist/common/style/mixins/clearfix.acss -------------------------------------------------------------------------------- /alipay/npm/dist/dist/common/style/mixins/ellipsis.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/alipay/npm/dist/dist/common/style/mixins/ellipsis.acss -------------------------------------------------------------------------------- /alipay/npm/dist/dist/common/style/mixins/hairline.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/alipay/npm/dist/dist/common/style/mixins/hairline.acss -------------------------------------------------------------------------------- /alipay/npm/dist/dist/common/style/theme.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/alipay/npm/dist/dist/common/style/theme.acss -------------------------------------------------------------------------------- /alipay/npm/dist/dist/common/style/var.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/alipay/npm/dist/dist/common/style/var.acss -------------------------------------------------------------------------------- /alipay/npm/dist/dist/common/version.d.ts: -------------------------------------------------------------------------------- 1 | export declare function canIUseModel(): boolean 2 | export declare function canIUseFormFieldButton(): boolean 3 | export declare function canIUseAnimate(): boolean 4 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/count-down/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/count-down/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/datetime-picker/index.acss: -------------------------------------------------------------------------------- 1 | @import "../common/index.acss"; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/datetime-picker/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/datetime-picker/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": { "van-picker": "../picker/index" } } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/definitions/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | Object.defineProperty(exports, "__esModule", { 4 | value: true 5 | }); -------------------------------------------------------------------------------- /alipay/npm/dist/dist/definitions/weapp.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | Object.defineProperty(exports, "__esModule", { 4 | value: true 5 | }); -------------------------------------------------------------------------------- /alipay/npm/dist/dist/dialog/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/divider/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/divider/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/dropdown-item/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/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 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/dropdown-item/shared.d.ts: -------------------------------------------------------------------------------- 1 | export interface Option { 2 | text: string; 3 | value: string | number; 4 | icon: string; 5 | } 6 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/dropdown-item/shared.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | Object.defineProperty(exports, "__esModule", { 4 | value: true 5 | }); -------------------------------------------------------------------------------- /alipay/npm/dist/dist/dropdown-menu/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/dropdown-menu/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/empty/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/empty/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/field/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/field/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-cell": "../cell/index", 5 | "van-icon": "../icon/index", 6 | "custom-input": "../../__antmove/component/custom-input/custom-input" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/goods-action-button/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/goods-action-button/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": { "van-button": "../button/index" } } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/goods-action-icon/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/goods-action-icon/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-button": "../button/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/goods-action/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/goods-action/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/grid-item/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/grid-item/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": { "van-icon": "../icon/index" } } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/grid/index.acss: -------------------------------------------------------------------------------- 1 | .grid-index { 2 | display: block; 3 | height: initial; 4 | } 5 | @import "../common/index.acss"; 6 | 7 | .grid-index .van-grid { 8 | position: relative; 9 | box-sizing: border-box; 10 | overflow: hidden; 11 | } 12 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/grid/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/grid/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/icon/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/icon/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": { "van-info": "../info/index" } } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/image/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/image/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-loading": "../loading/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/index-anchor/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/index-anchor/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/index-bar/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/index-bar/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/info/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/info/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | var _component = require("../common/component"); 4 | 5 | (0, _component.VantComponent)({ 6 | props: { 7 | dot: Boolean, 8 | info: null, 9 | customStyle: String 10 | } 11 | }); -------------------------------------------------------------------------------- /alipay/npm/dist/dist/info/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/loading/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/loading/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/mixins/basic.d.ts: -------------------------------------------------------------------------------- 1 | export declare const basic: string; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/mixins/button.d.ts: -------------------------------------------------------------------------------- 1 | export declare const button: string; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/mixins/link.d.ts: -------------------------------------------------------------------------------- 1 | export declare const link: string; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/mixins/open-type.d.ts: -------------------------------------------------------------------------------- 1 | export declare const openType: string; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/mixins/touch.d.ts: -------------------------------------------------------------------------------- 1 | export declare const touch: string; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/mixins/transition.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transition(showDefaultValue: boolean): string; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/nav-bar/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/nav-bar/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": { "van-icon": "../icon/index" } } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/notice-bar/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/notice-bar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "custom-navigator": "../../__antmove/component/custom-navigator/custom-navigator" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/notify/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/notify/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { "van-transition": "../transition/index" } 4 | } 5 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/overlay/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/overlay/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { "van-transition": "../transition/index" } 4 | } 5 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/panel/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/panel/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": { "van-cell": "../cell/index" } } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/picker-column/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/picker-column/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/picker/index.axmlisSimple.sjs: -------------------------------------------------------------------------------- 1 | var antmove_export = {}; 2 | 3 | function isSimple(columns) { 4 | return columns.length && !columns[0].values; 5 | } 6 | 7 | antmove_export = isSimple; 8 | export default antmove_export; -------------------------------------------------------------------------------- /alipay/npm/dist/dist/picker/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/picker/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "picker-column": "../picker-column/index", 5 | "loading": "../loading/index", 6 | "custom-loading": "../../__antmove/component/custom-loading/custom-loading" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/picker/toolbar.json: -------------------------------------------------------------------------------- 1 | {"component":true} -------------------------------------------------------------------------------- /alipay/npm/dist/dist/popup/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/popup/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-overlay": "../overlay/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/progress/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/progress/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/progress/index.sjs: -------------------------------------------------------------------------------- 1 | var antmove_export = {}; 2 | antmove_export = { 3 | text: function (pivotText, percentage) { 4 | return pivotText || percentage + '%'; 5 | } 6 | }; 7 | export default antmove_export; -------------------------------------------------------------------------------- /alipay/npm/dist/dist/radio-group/index.acss: -------------------------------------------------------------------------------- 1 | @import "../common/index.acss"; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/radio-group/index.axml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/radio-group/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/radio-group/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/radio/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/radio/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": { "van-icon": "../icon/index" } } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/rate/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/rate/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": { "van-icon": "../icon/index" } } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/row/index.acss: -------------------------------------------------------------------------------- 1 | .row-index { 2 | display: block; 3 | height: initial; 4 | } 5 | @import "../common/index.acss"; 6 | 7 | .row-index .van-row:after { 8 | display: table; 9 | clear: both; 10 | content: ""; 11 | } 12 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/row/index.axml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/row/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/row/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/search/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/search/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": { "van-field": "../field/index" } } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/share-sheet/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/share-sheet/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-popup": "../popup/index", 5 | "options": "./options", 6 | "btn": "../../__antmove/component/btn/btn" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/share-sheet/options.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/share-sheet/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { "btn": "../../__antmove/component/btn/btn" } 4 | } 5 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/sidebar-item/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/sidebar-item/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": { "van-info": "../info/index" } } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/sidebar/index.acss: -------------------------------------------------------------------------------- 1 | .sidebar-index { 2 | display: block; 3 | height: initial; 4 | } 5 | @import "../common/index.acss"; 6 | 7 | .sidebar-index .van-sidebar { 8 | width: 80px; 9 | width: var(--sidebar-width, 80px); 10 | } 11 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/sidebar/index.axml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/sidebar/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/sidebar/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/skeleton/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/skeleton/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/slider/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/slider/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/stepper/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/stepper/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/steps/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/steps/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": { "van-icon": "../icon/index" } } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/sticky/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/sticky/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/submit-bar/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/submit-bar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-button": "../button/index", 5 | "van-icon": "../icon/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/swipe-cell/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/swipe-cell/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/switch/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/switch/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": { "van-loading": "../loading/index" } } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/tab/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/tab/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/tabbar-item/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/tabbar-item/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-info": "../info/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/tabbar/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/tabbar/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/tabs/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/tabs/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-info": "../info/index", 5 | "van-sticky": "../sticky/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/tag/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/tag/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": { "van-icon": "../icon/index" } } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/toast/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/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 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/transition/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/transition/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/tree-select/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/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 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/uploader/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/uploader/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-loading": "../loading/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /alipay/npm/dist/dist/wxs/array.sjs: -------------------------------------------------------------------------------- 1 | var antmove_export = {}; 2 | 3 | function isArray(array) { 4 | return array && array.constructor === 'Array'; 5 | } 6 | 7 | antmove_export.isArray = isArray; 8 | export default antmove_export; -------------------------------------------------------------------------------- /alipay/npm/dist/mini.project.json: -------------------------------------------------------------------------------- 1 | { 2 | "component2": true 3 | 4 | } -------------------------------------------------------------------------------- /alipay/npm/dist/pages/action-sheet/index.acss: -------------------------------------------------------------------------------- 1 | .content { 2 | padding: 20px; 3 | } 4 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/area/index.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/alipay/npm/dist/pages/area/index.acss -------------------------------------------------------------------------------- /alipay/npm/dist/pages/area/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "Area 省市区选择", 3 | "usingComponents": { 4 | "demo-block": "vant-aliapp/components/demo-block/index", 5 | "van-area": "vant-aliapp/dist/area/index", 6 | "van-toast": "vant-aliapp/dist/toast/index" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/button/index.acss: -------------------------------------------------------------------------------- 1 | .row { 2 | height: 44px; 3 | margin-bottom: 15px; 4 | } 5 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/button/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | var _page = _interopRequireDefault(require("../../common/page")); 4 | 5 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } 6 | 7 | (0, _page["default"])(); -------------------------------------------------------------------------------- /alipay/npm/dist/pages/button/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "Button 按钮", 3 | "usingComponents": { 4 | "demo-block": "vant-aliapp/components/demo-block/index", 5 | "van-button": "vant-aliapp/dist/button/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/calendar/index.acss: -------------------------------------------------------------------------------- 1 | .tiled-calendar { 2 | --calendar-height: 500px; 3 | } 4 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/card/index.acss: -------------------------------------------------------------------------------- 1 | .container { 2 | height: 100vh; 3 | background-color: #fff; 4 | } 5 | 6 | .tag, 7 | .button { 8 | margin-right: 5px; 9 | } 10 | 11 | .van-card__footer { 12 | margin-top: 5px; 13 | } 14 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/cell/index.acss: -------------------------------------------------------------------------------- 1 | .title { 2 | margin-right: 5px; 3 | display: inline-block; 4 | vertical-align: middle; 5 | } 6 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/cell/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | var _page = _interopRequireDefault(require("../../common/page")); 4 | 5 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } 6 | 7 | (0, _page["default"])(); -------------------------------------------------------------------------------- /alipay/npm/dist/pages/circle/index.acss: -------------------------------------------------------------------------------- 1 | .van-circle { 2 | margin: 5px 10px 20px; 3 | } 4 | 5 | .van-button { 6 | margin-left: 10px; 7 | } 8 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/col/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | var _page = _interopRequireDefault(require("../../common/page")); 4 | 5 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } 6 | 7 | (0, _page["default"])(); -------------------------------------------------------------------------------- /alipay/npm/dist/pages/col/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "Layout 布局", 3 | "usingComponents": { 4 | "demo-block": "vant-aliapp/components/demo-block/index", 5 | "van-col": "vant-aliapp/dist/col/index", 6 | "van-row": "vant-aliapp/dist/row/index" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/collapse/index.acss: -------------------------------------------------------------------------------- 1 | .van-icon-question { 2 | margin-left: 5px; 3 | font-size: 15px !important; 4 | color: #1989fa; 5 | vertical-align: -3px; 6 | } 7 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/dashboard/index.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/alipay/npm/dist/pages/dashboard/index.acss -------------------------------------------------------------------------------- /alipay/npm/dist/pages/dashboard/index.axml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/dashboard/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { "demo-home": "../../components/demo-home/index" }, 3 | "defaultTitle": "Vant Aliapp" 4 | } 5 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/datetime-picker/index.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/alipay/npm/dist/pages/datetime-picker/index.acss -------------------------------------------------------------------------------- /alipay/npm/dist/pages/dialog/index.acss: -------------------------------------------------------------------------------- 1 | .demo-image { 2 | box-sizing: border-box; 3 | width: 100%; 4 | padding: 25px 20px 0; 5 | } 6 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/divider/index.acss: -------------------------------------------------------------------------------- 1 | .page-container-classname { 2 | background-color: white; 3 | } 4 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/divider/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | var _page = _interopRequireDefault(require("../../common/page")); 4 | 5 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } 6 | 7 | (0, _page["default"])(); -------------------------------------------------------------------------------- /alipay/npm/dist/pages/divider/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "Divider 分割线", 3 | "usingComponents": { 4 | "demo-block": "vant-aliapp/components/demo-block/index", 5 | "van-divider": "vant-aliapp/dist/divider/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/dropdown-menu/index.acss: -------------------------------------------------------------------------------- 1 | /** empty */ 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/empty/index.acss: -------------------------------------------------------------------------------- 1 | .custom-image .van-empty__image { 2 | width: 90px; 3 | height: 90px; 4 | } 5 | 6 | .bottom-button { 7 | width: 160px; 8 | height: 40px; 9 | } 10 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/field/index.acss: -------------------------------------------------------------------------------- 1 | .button { 2 | vertical-align: middle; 3 | } 4 | 5 | .custom-icon { 6 | color: #1989fa; 7 | } 8 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/goods-action/index.acss: -------------------------------------------------------------------------------- 1 | .goods-action-position { 2 | position: relative !important; 3 | } 4 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/grid/index.acss: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/image/index.acss: -------------------------------------------------------------------------------- 1 | .page-container-classname { 2 | background-color: #fff; 3 | } 4 | 5 | .text { 6 | width: 100%; 7 | margin: 5px 0 20px; 8 | color: #7d7e80; 9 | font-size: 14px; 10 | text-align: center; 11 | } 12 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/index-bar/index.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/alipay/npm/dist/pages/index-bar/index.acss -------------------------------------------------------------------------------- /alipay/npm/dist/pages/loading/index.acss: -------------------------------------------------------------------------------- 1 | .demo-loading { 2 | margin: 4px 16px 4px 0; 3 | } 4 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/loading/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | var _page = _interopRequireDefault(require("../../common/page")); 4 | 5 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } 6 | 7 | (0, _page["default"])(); -------------------------------------------------------------------------------- /alipay/npm/dist/pages/loading/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "Loading 加载", 3 | "usingComponents": { 4 | "demo-block": "vant-aliapp/components/demo-block/index", 5 | "van-loading": "vant-aliapp/dist/loading/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/nav-bar/index.acss: -------------------------------------------------------------------------------- 1 | .icon { 2 | color: #1989fa; 3 | } 4 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/notice-bar/index.acss: -------------------------------------------------------------------------------- 1 | /* pages/notice-bar/index.wxss */ 2 | 3 | .margin-top { 4 | margin-top: 4px; 5 | } 6 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/notice-bar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "NoticeBar 通告栏", 3 | "usingComponents": { 4 | "demo-block": "vant-aliapp/components/demo-block/index", 5 | "van-notice-bar": "vant-aliapp/dist/notice-bar/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/notify/index.acss: -------------------------------------------------------------------------------- 1 | /* pages/notify/index.wxss */ 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/panel/index.acss: -------------------------------------------------------------------------------- 1 | .content { 2 | padding: 20px; 3 | font-size: 16px; 4 | } 5 | 6 | .footer { 7 | text-align: right; 8 | } 9 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/panel/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | var _page = _interopRequireDefault(require("../../common/page")); 4 | 5 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } 6 | 7 | (0, _page["default"])(); -------------------------------------------------------------------------------- /alipay/npm/dist/pages/picker/index.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/alipay/npm/dist/pages/picker/index.acss -------------------------------------------------------------------------------- /alipay/npm/dist/pages/popup/index.acss: -------------------------------------------------------------------------------- 1 | :host { 2 | font-size: 16px; 3 | } 4 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/progress/index.acss: -------------------------------------------------------------------------------- 1 | .progress-position { 2 | margin: 5px 15px 20px; 3 | } 4 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/progress/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | var _page = _interopRequireDefault(require("../../common/page")); 4 | 5 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } 6 | 7 | (0, _page["default"])(); -------------------------------------------------------------------------------- /alipay/npm/dist/pages/progress/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "Progress 进度条", 3 | "usingComponents": { 4 | "demo-block": "vant-aliapp/components/demo-block/index", 5 | "van-progress": "vant-aliapp/dist/progress/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/radio/index.acss: -------------------------------------------------------------------------------- 1 | .demo-radio { 2 | margin-bottom: 10px; 3 | } 4 | 5 | .icon { 6 | width: 20px; 7 | } 8 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/rate/index.acss: -------------------------------------------------------------------------------- 1 | .page-container-classname { 2 | background-color: #fff; 3 | } 4 | 5 | .rate-position { 6 | margin-left: 15px; 7 | } 8 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/rate/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "Rate 评分", 3 | "usingComponents": { 4 | "demo-block": "vant-aliapp/components/demo-block/index", 5 | "van-rate": "vant-aliapp/dist/rate/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/search/index.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/alipay/npm/dist/pages/search/index.acss -------------------------------------------------------------------------------- /alipay/npm/dist/pages/search/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "Search 搜索", 3 | "usingComponents": { 4 | "demo-block": "vant-aliapp/components/demo-block/index", 5 | "van-search": "vant-aliapp/dist/search/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/share-sheet/index.acss: -------------------------------------------------------------------------------- 1 | .container { 2 | height: 100vh; 3 | background-color: #fff; 4 | } 5 | 6 | .tag, 7 | .button { 8 | margin-right: 5px; 9 | } 10 | 11 | .van-card__footer { 12 | margin-top: 5px; 13 | } 14 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/slider/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "Slider 滑块", 3 | "usingComponents": { 4 | "demo-block": "vant-aliapp/components/demo-block/index", 5 | "van-slider": "vant-aliapp/dist/slider/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/stepper/index.acss: -------------------------------------------------------------------------------- 1 | /* pages/stepper/index.wxss */ 2 | 3 | page { 4 | background-color: #fff; 5 | } 6 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/stepper/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "Stepper 步进器", 3 | "usingComponents": { 4 | "van-cell": "vant-aliapp/dist/cell/index", 5 | "van-stepper": "vant-aliapp/dist/stepper/index", 6 | "van-toast": "vant-aliapp/dist/toast/index" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/steps/index.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/alipay/npm/dist/pages/steps/index.acss -------------------------------------------------------------------------------- /alipay/npm/dist/pages/submit-bar/index.acss: -------------------------------------------------------------------------------- 1 | .van-submit-bar { 2 | position: relative !important; 3 | } 4 | 5 | .edit-address { 6 | color: #1989fa; 7 | } 8 | 9 | .submit-tag { 10 | margin-left: 15px; 11 | } 12 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/switch/index.acss: -------------------------------------------------------------------------------- 1 | /* pages/switch/index.wxss */ 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/tabbar/index.acss: -------------------------------------------------------------------------------- 1 | .tabbar-position { 2 | position: relative !important; 3 | } 4 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/tag/index.acss: -------------------------------------------------------------------------------- 1 | /* pages/tag/index.wxss */ 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/tag/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "Tag 标记", 3 | "usingComponents": { 4 | "demo-block": "vant-aliapp/components/demo-block/index", 5 | "van-tag": "vant-aliapp/dist/tag/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/toast/index.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/alipay/npm/dist/pages/toast/index.acss -------------------------------------------------------------------------------- /alipay/npm/dist/pages/tree-select/index.acss: -------------------------------------------------------------------------------- 1 | /* pages/tree-select/index.wxss */ 2 | -------------------------------------------------------------------------------- /alipay/npm/dist/pages/uploader/index.acss: -------------------------------------------------------------------------------- 1 | .page-container-classname { 2 | background-color: #fff; 3 | } 4 | -------------------------------------------------------------------------------- /alipay/npm/dist/sitemap.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /alipay/vant-app/__antmove/README.MD: -------------------------------------------------------------------------------- 1 | ### __antmove 的用途 2 | 3 | __antmove 是Antmove编译之后在输出路径生成的运行时文件夹,它的作用就是抹平编译转换难以抹平的差异。包括 './api' 目录下对API的封装, ' ./component' 目录对框架能力、自定义组件的处理等。该目录请勿删除及修改 4 | -------------------------------------------------------------------------------- /alipay/vant-app/__antmove/api/config.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | module.exports = { 4 | env: "production", 5 | global: my, 6 | useRuntimeLog: false 7 | } 8 | -------------------------------------------------------------------------------- /alipay/vant-app/__antmove/api/index.js: -------------------------------------------------------------------------------- 1 | const runtimeProcess = require('./runtimeProcess.js') 2 | 3 | module.exports = runtimeProcess 4 | -------------------------------------------------------------------------------- /alipay/vant-app/__antmove/component/btn/btn.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /alipay/vant-app/__antmove/component/custom-input/custom-input.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/alipay/vant-app/__antmove/component/custom-input/custom-input.acss -------------------------------------------------------------------------------- /alipay/vant-app/__antmove/component/custom-input/custom-input.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /alipay/vant-app/__antmove/component/custom-loading/custom-loading.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /alipay/vant-app/__antmove/component/custom-navigator/custom-navigator.acss: -------------------------------------------------------------------------------- 1 | .am-navigator-wrap { 2 | width: 100%; 3 | height: 100%; 4 | } 5 | -------------------------------------------------------------------------------- /alipay/vant-app/__antmove/component/custom-navigator/custom-navigator.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /alipay/vant-app/__antmove/component/utils/nextUid.js: -------------------------------------------------------------------------------- 1 | module.exports = function nextUid(len = 8) { 2 | return Math.random() 3 | .toString(36) 4 | .substr(len + 1) 5 | } 6 | -------------------------------------------------------------------------------- /alipay/vant-app/mini.project.json: -------------------------------------------------------------------------------- 1 | { 2 | "component2": true, 3 | "node_modules_es6_whitelist": ["vant-aliapp"] 4 | } 5 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/action-sheet/index.acss: -------------------------------------------------------------------------------- 1 | .content { 2 | padding: 20px; 3 | } 4 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/area/index.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/alipay/vant-app/pages/area/index.acss -------------------------------------------------------------------------------- /alipay/vant-app/pages/button/index.acss: -------------------------------------------------------------------------------- 1 | .row { 2 | height: 44px; 3 | margin-bottom: 15px; 4 | } 5 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/button/index.js: -------------------------------------------------------------------------------- 1 | import Page from "../../common/page"; 2 | Page(); 3 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/button/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "Button 按钮", 3 | "usingComponents": { 4 | "demo-block": "vant-aliapp/dist/components/demo-block/index", 5 | "van-button": "vant-aliapp/dist/dist/button/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/calendar/index.acss: -------------------------------------------------------------------------------- 1 | .tiled-calendar { 2 | --calendar-height: 500px; 3 | } 4 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/card/index.acss: -------------------------------------------------------------------------------- 1 | .container { 2 | height: 100vh; 3 | background-color: #fff; 4 | } 5 | 6 | .tag, 7 | .button { 8 | margin-right: 5px; 9 | } 10 | 11 | .van-card__footer { 12 | margin-top: 5px; 13 | } 14 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/card/index.js: -------------------------------------------------------------------------------- 1 | import Page from "../../common/page"; 2 | Page({ 3 | data: { 4 | imageURL: 5 | "https://img.yzcdn.cn/upload_files/2017/07/02/af5b9f44deaeb68000d7e4a711160c53.jpg" 6 | } 7 | }); 8 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/cell/index.acss: -------------------------------------------------------------------------------- 1 | .title { 2 | margin-right: 5px; 3 | display: inline-block; 4 | vertical-align: middle; 5 | } 6 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/cell/index.js: -------------------------------------------------------------------------------- 1 | import Page from "../../common/page"; 2 | Page(); 3 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/circle/index.acss: -------------------------------------------------------------------------------- 1 | .van-circle { 2 | margin: 5px 10px 20px; 3 | } 4 | 5 | .van-button { 6 | margin-left: 10px; 7 | } 8 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/col/index.js: -------------------------------------------------------------------------------- 1 | import Page from "../../common/page"; 2 | Page(); 3 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/collapse/index.acss: -------------------------------------------------------------------------------- 1 | .van-icon-question { 2 | margin-left: 5px; 3 | font-size: 15px !important; 4 | color: #1989fa; 5 | vertical-align: -3px; 6 | } 7 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/dashboard/index.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/alipay/vant-app/pages/dashboard/index.acss -------------------------------------------------------------------------------- /alipay/vant-app/pages/dashboard/index.axml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/dashboard/index.js: -------------------------------------------------------------------------------- 1 | import list from "../../config"; 2 | import Page from "../../common/page"; 3 | Page({ 4 | data: { 5 | list 6 | } 7 | }); 8 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/dashboard/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { "demo-home": "vant-aliapp/dist/components/demo-home/index" }, 3 | "defaultTitle": "Vant Aliapp" 4 | } 5 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/datetime-picker/index.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/alipay/vant-app/pages/datetime-picker/index.acss -------------------------------------------------------------------------------- /alipay/vant-app/pages/dialog/index.acss: -------------------------------------------------------------------------------- 1 | .demo-image { 2 | box-sizing: border-box; 3 | width: 100%; 4 | padding: 25px 20px 0; 5 | } 6 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/divider/index.acss: -------------------------------------------------------------------------------- 1 | .page-container-classname { 2 | background-color: white; 3 | } 4 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/divider/index.js: -------------------------------------------------------------------------------- 1 | import Page from "../../common/page"; 2 | Page(); 3 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/divider/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "Divider 分割线", 3 | "usingComponents": { 4 | "demo-block": "vant-aliapp/dist/components/demo-block/index", 5 | "van-divider": "vant-aliapp/dist/dist/divider/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/dropdown-menu/index.acss: -------------------------------------------------------------------------------- 1 | /** empty */ 2 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/empty/index.acss: -------------------------------------------------------------------------------- 1 | .custom-image .van-empty__image { 2 | width: 90px; 3 | height: 90px; 4 | } 5 | 6 | .bottom-button { 7 | width: 160px; 8 | height: 40px; 9 | } 10 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/field/index.acss: -------------------------------------------------------------------------------- 1 | .button { 2 | vertical-align: middle; 3 | } 4 | 5 | .custom-icon { 6 | color: #1989fa; 7 | } 8 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/goods-action/index.acss: -------------------------------------------------------------------------------- 1 | .goods-action-position { 2 | position: relative !important; 3 | } 4 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/grid/index.acss: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/image/index.acss: -------------------------------------------------------------------------------- 1 | .page-container-classname { 2 | background-color: #fff; 3 | } 4 | 5 | .text { 6 | width: 100%; 7 | margin: 5px 0 20px; 8 | color: #7d7e80; 9 | font-size: 14px; 10 | text-align: center; 11 | } 12 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/index-bar/index.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/alipay/vant-app/pages/index-bar/index.acss -------------------------------------------------------------------------------- /alipay/vant-app/pages/loading/index.acss: -------------------------------------------------------------------------------- 1 | .demo-loading { 2 | margin: 4px 16px 4px 0; 3 | } 4 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/loading/index.js: -------------------------------------------------------------------------------- 1 | import Page from "../../common/page"; 2 | Page(); 3 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/loading/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "Loading 加载", 3 | "usingComponents": { 4 | "demo-block": "vant-aliapp/dist/components/demo-block/index", 5 | "van-loading": "vant-aliapp/dist/dist/loading/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/nav-bar/index.acss: -------------------------------------------------------------------------------- 1 | .icon { 2 | color: #1989fa; 3 | } 4 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/notice-bar/index.acss: -------------------------------------------------------------------------------- 1 | /* pages/notice-bar/index.wxss */ 2 | 3 | .margin-top { 4 | margin-top: 4px; 5 | } 6 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/notice-bar/index.js: -------------------------------------------------------------------------------- 1 | import Page from "../../common/page"; 2 | Page({ 3 | data: { 4 | text: "在代码阅读过程中人们说脏话的频率是衡量代码质量的唯一标准。", 5 | shortText: "技术是开发它的人的共同灵魂。" 6 | } 7 | }); 8 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/notice-bar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "NoticeBar 通告栏", 3 | "usingComponents": { 4 | "demo-block": "vant-aliapp/dist/components/demo-block/index", 5 | "van-notice-bar": "vant-aliapp/dist/dist/notice-bar/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/notify/index.acss: -------------------------------------------------------------------------------- 1 | /* pages/notify/index.wxss */ 2 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/panel/index.acss: -------------------------------------------------------------------------------- 1 | .content { 2 | padding: 20px; 3 | font-size: 16px; 4 | } 5 | 6 | .footer { 7 | text-align: right; 8 | } 9 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/panel/index.js: -------------------------------------------------------------------------------- 1 | import Page from "../../common/page"; 2 | Page(); 3 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/picker/index.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/alipay/vant-app/pages/picker/index.acss -------------------------------------------------------------------------------- /alipay/vant-app/pages/popup/index.acss: -------------------------------------------------------------------------------- 1 | :host { 2 | font-size: 16px; 3 | } 4 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/progress/index.acss: -------------------------------------------------------------------------------- 1 | .progress-position { 2 | margin: 5px 15px 20px; 3 | } 4 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/progress/index.js: -------------------------------------------------------------------------------- 1 | import Page from "../../common/page"; 2 | Page(); 3 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/progress/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "Progress 进度条", 3 | "usingComponents": { 4 | "demo-block": "vant-aliapp/dist/components/demo-block/index", 5 | "van-progress": "vant-aliapp/dist/dist/progress/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/radio/index.acss: -------------------------------------------------------------------------------- 1 | .demo-radio { 2 | margin-bottom: 10px; 3 | } 4 | 5 | .icon { 6 | width: 20px; 7 | } 8 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/rate/index.acss: -------------------------------------------------------------------------------- 1 | .page-container-classname { 2 | background-color: #fff; 3 | } 4 | 5 | .rate-position { 6 | margin-left: 15px; 7 | } 8 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/rate/index.js: -------------------------------------------------------------------------------- 1 | import Page from "../../common/page"; 2 | Page({ 3 | data: { 4 | value1: 3, 5 | value2: 3, 6 | value3: 3, 7 | value4: 2.5, 8 | value5: 4, 9 | value6: 3 10 | } 11 | }); 12 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/rate/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "Rate 评分", 3 | "usingComponents": { 4 | "demo-block": "vant-aliapp/dist/components/demo-block/index", 5 | "van-rate": "vant-aliapp/dist/dist/rate/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/search/index.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/alipay/vant-app/pages/search/index.acss -------------------------------------------------------------------------------- /alipay/vant-app/pages/search/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "Search 搜索", 3 | "usingComponents": { 4 | "demo-block": "vant-aliapp/dist/components/demo-block/index", 5 | "van-search": "vant-aliapp/dist/dist/search/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/share-sheet/index.acss: -------------------------------------------------------------------------------- 1 | .container { 2 | height: 100vh; 3 | background-color: #fff; 4 | } 5 | 6 | .tag, 7 | .button { 8 | margin-right: 5px; 9 | } 10 | 11 | .van-card__footer { 12 | margin-top: 5px; 13 | } 14 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/slider/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "Slider 滑块", 3 | "usingComponents": { 4 | "demo-block": "vant-aliapp/dist/components/demo-block/index", 5 | "van-slider": "vant-aliapp/dist/dist/slider/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/stepper/index.acss: -------------------------------------------------------------------------------- 1 | /* pages/stepper/index.wxss */ 2 | 3 | page { 4 | background-color: #fff; 5 | } 6 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/steps/index.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/alipay/vant-app/pages/steps/index.acss -------------------------------------------------------------------------------- /alipay/vant-app/pages/submit-bar/index.acss: -------------------------------------------------------------------------------- 1 | .van-submit-bar { 2 | position: relative !important; 3 | } 4 | 5 | .edit-address { 6 | color: #1989fa; 7 | } 8 | 9 | .submit-tag { 10 | margin-left: 15px; 11 | } 12 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/switch/index.acss: -------------------------------------------------------------------------------- 1 | /* pages/switch/index.wxss */ 2 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/tabbar/index.acss: -------------------------------------------------------------------------------- 1 | .tabbar-position { 2 | position: relative !important; 3 | } 4 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/tag/index.acss: -------------------------------------------------------------------------------- 1 | /* pages/tag/index.wxss */ 2 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/tag/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "Tag 标记", 3 | "usingComponents": { 4 | "demo-block": "vant-aliapp/dist/components/demo-block/index", 5 | "van-tag": "vant-aliapp/dist/dist/tag/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/toast/index.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/alipay/vant-app/pages/toast/index.acss -------------------------------------------------------------------------------- /alipay/vant-app/pages/tree-select/index.acss: -------------------------------------------------------------------------------- 1 | /* pages/tree-select/index.wxss */ 2 | -------------------------------------------------------------------------------- /alipay/vant-app/pages/uploader/index.acss: -------------------------------------------------------------------------------- 1 | .page-container-classname { 2 | background-color: #fff; 3 | } 4 | -------------------------------------------------------------------------------- /alipay/vant-app/sitemap.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /dd/vant-app/__antmove/api/config.js: -------------------------------------------------------------------------------- 1 | 2 | dd.clearStorageSync = dd.removeStorageSync; 3 | dd.clearStorage = dd.removeStorage; 4 | 5 | module.exports = { 6 | env: "production", 7 | global: dd 8 | } 9 | -------------------------------------------------------------------------------- /dd/vant-app/__antmove/api/index.js: -------------------------------------------------------------------------------- 1 | const runtimeProcess = require('./runtimeProcess.js'); 2 | 3 | module.exports = runtimeProcess; -------------------------------------------------------------------------------- /dd/vant-app/__antmove/component/custom-loading/custom-loading.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /dd/vant-app/app.js: -------------------------------------------------------------------------------- 1 | const _App = require("./__antmove/component/componentClass.js")("App"); 2 | _App({ 3 | globalData: {} 4 | }); 5 | -------------------------------------------------------------------------------- /dd/vant-app/components/demo-block/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /dd/vant-app/custom-tab-bar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-tabbar": "../dist/tabbar/index", 5 | "van-tabbar-item": "../dist/tabbar-item/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /dd/vant-app/dist/_vant/icons/src/vant-icon-3a7dc2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/dd/vant-app/dist/_vant/icons/src/vant-icon-3a7dc2.ttf -------------------------------------------------------------------------------- /dd/vant-app/dist/_vant/icons/src/vant-icon-3a7dc2.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/dd/vant-app/dist/_vant/icons/src/vant-icon-3a7dc2.woff -------------------------------------------------------------------------------- /dd/vant-app/dist/_vant/icons/src/vant-icon-3a7dc2.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/dd/vant-app/dist/_vant/icons/src/vant-icon-3a7dc2.woff2 -------------------------------------------------------------------------------- /dd/vant-app/dist/action-sheet/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/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 | -------------------------------------------------------------------------------- /dd/vant-app/dist/area/index.acss: -------------------------------------------------------------------------------- 1 | @import "../common/index.acss"; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/area/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/area/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": { "van-picker": "../picker/index" } } 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/badge-group/index.acss: -------------------------------------------------------------------------------- 1 | @import "../common/index.acss"; 2 | 3 | .badge-group-index .van-badge-group { 4 | width: 85px; 5 | } 6 | -------------------------------------------------------------------------------- /dd/vant-app/dist/badge-group/index.axml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /dd/vant-app/dist/badge-group/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/badge-group/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/badge/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/badge/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": { "van-info": "../info/index" } } 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/button/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/button/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-loading": "../loading/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /dd/vant-app/dist/card/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/card/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": { "van-tag": "../tag/index" } } 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/cell-group/index.acss: -------------------------------------------------------------------------------- 1 | @import "../common/index.acss"; 2 | 3 | .cell-group-index .van-cell-group__title { 4 | font-size: 14px; 5 | padding: 15px 15px 5px; 6 | color: #999; 7 | line-height: 16px; 8 | } 9 | -------------------------------------------------------------------------------- /dd/vant-app/dist/cell-group/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/cell-group/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/cell/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/cell/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": { "van-icon": "../icon/index" } } 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/checkbox-group/index.acss: -------------------------------------------------------------------------------- 1 | @import "../common/index.acss"; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/checkbox-group/index.axml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dd/vant-app/dist/checkbox-group/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/checkbox-group/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/checkbox/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/checkbox/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": { "van-icon": "../icon/index" } } 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/col/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/col/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/collapse-item/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/collapse-item/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": { "van-cell": "../cell/index" } } 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/collapse/index.acss: -------------------------------------------------------------------------------- 1 | @import "../common/index.acss"; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/collapse/index.axml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /dd/vant-app/dist/collapse/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/collapse/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/common/color.d.ts: -------------------------------------------------------------------------------- 1 | export declare const RED = "#f44"; 2 | export declare const BLUE = "#1989fa"; 3 | export declare const GREEN = "#07c160"; 4 | -------------------------------------------------------------------------------- /dd/vant-app/dist/common/color.js: -------------------------------------------------------------------------------- 1 | export const RED = "#f44"; 2 | export const BLUE = "#1989fa"; 3 | export const GREEN = "#07c160"; 4 | -------------------------------------------------------------------------------- /dd/vant-app/dist/common/style/clearfix.acss: -------------------------------------------------------------------------------- 1 | .van-clearfix:after { 2 | content: ""; 3 | display: table; 4 | clear: both; 5 | } 6 | -------------------------------------------------------------------------------- /dd/vant-app/dist/common/style/mixins/clearfix.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/dd/vant-app/dist/common/style/mixins/clearfix.acss -------------------------------------------------------------------------------- /dd/vant-app/dist/common/style/mixins/ellipsis.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/dd/vant-app/dist/common/style/mixins/ellipsis.acss -------------------------------------------------------------------------------- /dd/vant-app/dist/common/style/mixins/hairline.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/dd/vant-app/dist/common/style/mixins/hairline.acss -------------------------------------------------------------------------------- /dd/vant-app/dist/common/style/var.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/dd/vant-app/dist/common/style/var.acss -------------------------------------------------------------------------------- /dd/vant-app/dist/datetime-picker/index.acss: -------------------------------------------------------------------------------- 1 | @import "../common/index.acss"; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/datetime-picker/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/datetime-picker/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": { "van-picker": "../picker/index" } } 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/definitions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/dd/vant-app/dist/definitions/index.js -------------------------------------------------------------------------------- /dd/vant-app/dist/definitions/weapp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/dd/vant-app/dist/definitions/weapp.js -------------------------------------------------------------------------------- /dd/vant-app/dist/dialog/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/dialog/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-popup": "../popup/index", 5 | "van-button": "../button/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /dd/vant-app/dist/field/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/field/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-cell": "../cell/index", 5 | "van-icon": "../icon/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /dd/vant-app/dist/goods-action-button/index.acss: -------------------------------------------------------------------------------- 1 | @import "../common/index.acss"; 2 | 3 | .goods-action-button-index :host { 4 | -webkit-flex: 1; 5 | flex: 1; 6 | } 7 | 8 | .goods-action-button-index .goods-action-button-index { 9 | width: 50%; 10 | } 11 | -------------------------------------------------------------------------------- /dd/vant-app/dist/goods-action-button/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/goods-action-button/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": { "van-button": "../button/index" } } 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/goods-action-icon/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/goods-action-icon/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-button": "../button/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /dd/vant-app/dist/goods-action/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/goods-action/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/icon/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/icon/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": { "van-info": "../info/index" } } 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/info/index.axml: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{ info }} 4 | 5 | -------------------------------------------------------------------------------- /dd/vant-app/dist/info/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/info/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/loading/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/loading/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/mixins/basic.d.ts: -------------------------------------------------------------------------------- 1 | export declare const basic: string; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/mixins/button.d.ts: -------------------------------------------------------------------------------- 1 | export declare const button: string; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/mixins/link.d.ts: -------------------------------------------------------------------------------- 1 | export declare const link: string; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/mixins/observer/behavior.d.ts: -------------------------------------------------------------------------------- 1 | export declare const behavior: string; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/mixins/observer/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function observe(vantOptions: any, options: any): void; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/mixins/observer/props.d.ts: -------------------------------------------------------------------------------- 1 | export declare function observeProps(props: any): void; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/mixins/open-type.d.ts: -------------------------------------------------------------------------------- 1 | export declare const openType: string; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/mixins/safe-area.d.ts: -------------------------------------------------------------------------------- 1 | export declare const safeArea: ({ safeAreaInsetBottom, safeAreaInsetTop }?: { 2 | safeAreaInsetBottom?: boolean; 3 | safeAreaInsetTop?: boolean; 4 | }) => string; 5 | -------------------------------------------------------------------------------- /dd/vant-app/dist/mixins/touch.d.ts: -------------------------------------------------------------------------------- 1 | export declare const touch: string; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/mixins/transition.d.ts: -------------------------------------------------------------------------------- 1 | export declare const transition: (showDefaultValue: boolean) => any; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/nav-bar/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/nav-bar/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": { "van-icon": "../icon/index" } } 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/notice-bar/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/notice-bar/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": { "van-icon": "../icon/index" } } 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/notify/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/notify/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { "van-transition": "../transition/index" } 4 | } 5 | -------------------------------------------------------------------------------- /dd/vant-app/dist/overlay/index.acss: -------------------------------------------------------------------------------- 1 | @import "../common/index.acss"; 2 | 3 | .overlay-index .van-overlay { 4 | position: fixed; 5 | top: 0; 6 | right: 0; 7 | bottom: 0; 8 | left: 0; 9 | } 10 | -------------------------------------------------------------------------------- /dd/vant-app/dist/overlay/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/overlay/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { "van-transition": "../transition/index" } 4 | } 5 | -------------------------------------------------------------------------------- /dd/vant-app/dist/panel/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/panel/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": { "van-cell": "../cell/index" } } 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/picker-column/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/picker-column/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/picker/index.axmlisSimple.sjs: -------------------------------------------------------------------------------- 1 | function isSimple(columns) { 2 | return columns.length && !columns[0].values; 3 | } 4 | 5 | export default isSimple; -------------------------------------------------------------------------------- /dd/vant-app/dist/picker/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/picker/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "picker-column": "../picker-column/index", 5 | "loading": "../loading/index", 6 | "custom-loading": "/__antmove/component/custom-loading/custom-loading" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /dd/vant-app/dist/popup/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/popup/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "transparentTitle": "always", 4 | "defaultTitle": "", 5 | "usingComponents": { "van-overlay": "../overlay/index" } 6 | } 7 | -------------------------------------------------------------------------------- /dd/vant-app/dist/progress/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/progress/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/progress/index.sjs: -------------------------------------------------------------------------------- 1 | export default { 2 | text: function (pivotText, percentage) { 3 | return pivotText || percentage + '%'; 4 | } 5 | }; -------------------------------------------------------------------------------- /dd/vant-app/dist/radio-group/index.acss: -------------------------------------------------------------------------------- 1 | @import "../common/index.acss"; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/radio-group/index.axml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dd/vant-app/dist/radio-group/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/radio-group/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/radio/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/radio/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": { "van-icon": "../icon/index" } } 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/rate/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/rate/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": { "van-icon": "../icon/index" } } 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/row/index.acss: -------------------------------------------------------------------------------- 1 | @import "../common/index.acss"; 2 | 3 | .row-index .van-row:after { 4 | content: ""; 5 | display: table; 6 | clear: both; 7 | } 8 | -------------------------------------------------------------------------------- /dd/vant-app/dist/row/index.axml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /dd/vant-app/dist/row/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/row/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/search/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/search/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": { "van-field": "../field/index" } } 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/slider/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/slider/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/stepper/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/stepper/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/steps/index.axmlstatus.sjs: -------------------------------------------------------------------------------- 1 | function get(index, active) { 2 | if (index < active) { 3 | return 'finish'; 4 | } else if (index === active) { 5 | return 'process'; 6 | } 7 | 8 | return ''; 9 | } 10 | 11 | export default get; -------------------------------------------------------------------------------- /dd/vant-app/dist/steps/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/steps/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": { "van-icon": "../icon/index" } } 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/submit-bar/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/submit-bar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-button": "../button/index", 5 | "van-icon": "../icon/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /dd/vant-app/dist/swipe-cell/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/swipe-cell/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/switch-cell/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/switch-cell/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-cell": "../cell/index", 5 | "van-switch": "../switch/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /dd/vant-app/dist/switch/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/switch/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": { "van-loading": "../loading/index" } } 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/tab/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/tab/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/tabbar-item/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/tabbar-item/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-info": "../info/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /dd/vant-app/dist/tabbar/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/tabbar/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/tabs/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/tabs/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": { "van-info": "../info/index" } } 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/tag/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/tag/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/toast/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/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 | -------------------------------------------------------------------------------- /dd/vant-app/dist/transition/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/transition/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": {} } 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/tree-select/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/tree-select/index.json: -------------------------------------------------------------------------------- 1 | { "component": true, "usingComponents": { "van-icon": "../icon/index" } } 2 | -------------------------------------------------------------------------------- /dd/vant-app/dist/wxs/array.sjs: -------------------------------------------------------------------------------- 1 | function isArray(array) { 2 | return array && array.constructor === 'Array'; 3 | } 4 | 5 | export default { 6 | isArray: isArray 7 | }; -------------------------------------------------------------------------------- /dd/vant-app/pages/action-sheet/index.acss: -------------------------------------------------------------------------------- 1 | .content { 2 | padding: 20px; 3 | } 4 | -------------------------------------------------------------------------------- /dd/vant-app/pages/area/index.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/dd/vant-app/pages/area/index.acss -------------------------------------------------------------------------------- /dd/vant-app/pages/area/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "Area 省市区选择", 3 | "usingComponents": { 4 | "demo-block": "../../components/demo-block/index", 5 | "van-area": "../../dist/area/index", 6 | "van-toast": "../../dist/toast/index" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /dd/vant-app/pages/badge/index.acss: -------------------------------------------------------------------------------- 1 | .container { 2 | width: auto; 3 | margin: 0 15px; 4 | padding: 20px 0; 5 | background-color: #fff; 6 | } 7 | 8 | .group { 9 | margin: 0 auto; 10 | } 11 | -------------------------------------------------------------------------------- /dd/vant-app/pages/badge/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "Badge 徽章", 3 | "usingComponents": { 4 | "demo-block": "../../components/demo-block/index", 5 | "van-badge": "../../dist/badge/index", 6 | "van-badge-group": "../../dist/badge-group/index" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /dd/vant-app/pages/button/index.acss: -------------------------------------------------------------------------------- 1 | .row { 2 | height: 44px; 3 | margin-bottom: 15px; 4 | } 5 | -------------------------------------------------------------------------------- /dd/vant-app/pages/button/index.js: -------------------------------------------------------------------------------- 1 | my.setStorageSync({ 2 | key: "activeComponent", 3 | data: { 4 | is: "pages/button/index" 5 | } 6 | }); 7 | import createPage from "../../common/page"; 8 | createPage(); 9 | -------------------------------------------------------------------------------- /dd/vant-app/pages/button/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "Button 按钮", 3 | "usingComponents": { 4 | "demo-block": "../../components/demo-block/index", 5 | "van-button": "../../dist/button/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /dd/vant-app/pages/cell/index.acss: -------------------------------------------------------------------------------- 1 | .title { 2 | margin-right: 5px; 3 | display: inline-block; 4 | vertical-align: middle; 5 | } 6 | -------------------------------------------------------------------------------- /dd/vant-app/pages/cell/index.js: -------------------------------------------------------------------------------- 1 | my.setStorageSync({ 2 | key: "activeComponent", 3 | data: { 4 | is: "pages/cell/index" 5 | } 6 | }); 7 | import createPage from "../../common/page"; 8 | createPage(); 9 | -------------------------------------------------------------------------------- /dd/vant-app/pages/col/index.js: -------------------------------------------------------------------------------- 1 | my.setStorageSync({ 2 | key: "activeComponent", 3 | data: { 4 | is: "pages/col/index" 5 | } 6 | }); 7 | import createPage from "../../common/page"; 8 | createPage(); 9 | -------------------------------------------------------------------------------- /dd/vant-app/pages/col/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "Layout 布局", 3 | "usingComponents": { 4 | "demo-block": "../../components/demo-block/index", 5 | "van-col": "../../dist/col/index", 6 | "van-row": "../../dist/row/index" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /dd/vant-app/pages/collapse/index.acss: -------------------------------------------------------------------------------- 1 | .van-icon-question { 2 | margin-left: 5px; 3 | font-size: 15px !important; 4 | color: #1989fa; 5 | vertical-align: -3px; 6 | } 7 | -------------------------------------------------------------------------------- /dd/vant-app/pages/datetime-picker/index.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/dd/vant-app/pages/datetime-picker/index.acss -------------------------------------------------------------------------------- /dd/vant-app/pages/dialog/index.acss: -------------------------------------------------------------------------------- 1 | .demo-image { 2 | width: 100%; 3 | padding: 25px 20px 0; 4 | box-sizing: border-box; 5 | } 6 | -------------------------------------------------------------------------------- /dd/vant-app/pages/dialog/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "Dialog 弹出框", 3 | "usingComponents": { 4 | "demo-block": "../../components/demo-block/index", 5 | "van-button": "../../dist/button/index", 6 | "van-dialog": "../../dist/dialog/index" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /dd/vant-app/pages/field/index.acss: -------------------------------------------------------------------------------- 1 | .button { 2 | vertical-align: middle; 3 | } 4 | 5 | .custom-icon { 6 | color: #1989fa; 7 | } 8 | -------------------------------------------------------------------------------- /dd/vant-app/pages/goods-action/index.acss: -------------------------------------------------------------------------------- 1 | .goods-action { 2 | position: relative !important; 3 | } 4 | -------------------------------------------------------------------------------- /dd/vant-app/pages/loading/index.acss: -------------------------------------------------------------------------------- 1 | .loading { 2 | margin-right: 20px; 3 | } 4 | 5 | .shadow { 6 | padding: 10px; 7 | border-radius: 3px; 8 | background-color: rgba(0, 0, 0, 0.5); 9 | } 10 | -------------------------------------------------------------------------------- /dd/vant-app/pages/loading/index.js: -------------------------------------------------------------------------------- 1 | my.setStorageSync({ 2 | key: "activeComponent", 3 | data: { 4 | is: "pages/loading/index" 5 | } 6 | }); 7 | import createPage from "../../common/page"; 8 | createPage(); 9 | -------------------------------------------------------------------------------- /dd/vant-app/pages/loading/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "Loading 加载", 3 | "usingComponents": { 4 | "demo-block": "../../components/demo-block/index", 5 | "van-loading": "../../dist/loading/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /dd/vant-app/pages/nav-bar/index.acss: -------------------------------------------------------------------------------- 1 | .icon { 2 | color: #1989fa; 3 | } 4 | -------------------------------------------------------------------------------- /dd/vant-app/pages/nav-bar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "NavBar 导航栏", 3 | "usingComponents": { 4 | "demo-block": "../../components/demo-block/index", 5 | "van-icon": "../../dist/icon/index", 6 | "van-nav-bar": "../../dist/nav-bar/index" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /dd/vant-app/pages/notice-bar/index.acss: -------------------------------------------------------------------------------- 1 | /* pages/notice-bar/index.wxss */ 2 | -------------------------------------------------------------------------------- /dd/vant-app/pages/notice-bar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "NoticeBar 通告栏", 3 | "usingComponents": { 4 | "demo-block": "../../components/demo-block/index", 5 | "van-notice-bar": "../../dist/notice-bar/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /dd/vant-app/pages/notify/index.acss: -------------------------------------------------------------------------------- 1 | /* pages/notify/index.wxss */ 2 | -------------------------------------------------------------------------------- /dd/vant-app/pages/panel/index.acss: -------------------------------------------------------------------------------- 1 | .content { 2 | padding: 20px; 3 | font-size: 16px; 4 | } 5 | 6 | .footer { 7 | text-align: right; 8 | } 9 | -------------------------------------------------------------------------------- /dd/vant-app/pages/panel/index.js: -------------------------------------------------------------------------------- 1 | my.setStorageSync({ 2 | key: "activeComponent", 3 | data: { 4 | is: "pages/panel/index" 5 | } 6 | }); 7 | import createPage from "../../common/page"; 8 | createPage(); 9 | -------------------------------------------------------------------------------- /dd/vant-app/pages/panel/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "Panel 面板", 3 | "usingComponents": { 4 | "demo-block": "../../components/demo-block/index", 5 | "van-button": "../../dist/button/index", 6 | "van-panel": "../../dist/panel/index" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /dd/vant-app/pages/picker/index.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/dd/vant-app/pages/picker/index.acss -------------------------------------------------------------------------------- /dd/vant-app/pages/picker/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "Picker 选择器", 3 | "usingComponents": { 4 | "demo-block": "../../components/demo-block/index", 5 | "van-toast": "../../dist/toast/index", 6 | "van-picker": "../../dist/picker/index" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /dd/vant-app/pages/progress/index.acss: -------------------------------------------------------------------------------- 1 | .progress { 2 | margin: 5px 15px 20px; 3 | } 4 | -------------------------------------------------------------------------------- /dd/vant-app/pages/progress/index.js: -------------------------------------------------------------------------------- 1 | my.setStorageSync({ 2 | key: "activeComponent", 3 | data: { 4 | is: "pages/progress/index" 5 | } 6 | }); 7 | import createPage from "../../common/page"; 8 | createPage(); 9 | -------------------------------------------------------------------------------- /dd/vant-app/pages/progress/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "Progress 进度条", 3 | "usingComponents": { 4 | "demo-block": "../../components/demo-block/index", 5 | "van-progress": "../../dist/progress/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /dd/vant-app/pages/radio/index.acss: -------------------------------------------------------------------------------- 1 | .demo-radio-group { 2 | padding: 0 17px; 3 | } 4 | 5 | .demo-radio { 6 | margin-bottom: 10px; 7 | } 8 | 9 | .value-class { 10 | flex: none !important; 11 | } 12 | 13 | .icon { 14 | width: 20px; 15 | } 16 | -------------------------------------------------------------------------------- /dd/vant-app/pages/rate/index.acss: -------------------------------------------------------------------------------- 1 | .page-container-classname { 2 | background-color: #fff; 3 | } 4 | 5 | .van-rate { 6 | margin-left: 15px; 7 | } 8 | -------------------------------------------------------------------------------- /dd/vant-app/pages/rate/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "Rate 评分", 3 | "usingComponents": { 4 | "demo-block": "../../components/demo-block/index", 5 | "van-rate": "../../dist/rate/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /dd/vant-app/pages/search/index.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/dd/vant-app/pages/search/index.acss -------------------------------------------------------------------------------- /dd/vant-app/pages/search/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "Search 搜索", 3 | "usingComponents": { 4 | "demo-block": "../../components/demo-block/index", 5 | "van-search": "../../dist/search/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /dd/vant-app/pages/slider/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "Slider 滑块", 3 | "usingComponents": { 4 | "demo-block": "../../components/demo-block/index", 5 | "van-slider": "../../dist/slider/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /dd/vant-app/pages/stepper/index.acss: -------------------------------------------------------------------------------- 1 | /* pages/stepper/index.wxss */ 2 | page { 3 | background-color: #fff; 4 | } 5 | -------------------------------------------------------------------------------- /dd/vant-app/pages/stepper/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "Stepper 步进器", 3 | "usingComponents": { 4 | "demo-block": "../../components/demo-block/index", 5 | "van-stepper": "../../dist/stepper/index", 6 | "van-toast": "../../dist/toast/index" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /dd/vant-app/pages/steps/index.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/dd/vant-app/pages/steps/index.acss -------------------------------------------------------------------------------- /dd/vant-app/pages/steps/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "Steps 步骤条", 3 | "usingComponents": { 4 | "demo-block": "../../components/demo-block/index", 5 | "van-button": "../../dist/button/index", 6 | "van-steps": "../../dist/steps/index" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /dd/vant-app/pages/submit-bar/index.acss: -------------------------------------------------------------------------------- 1 | .van-submit-bar { 2 | position: relative !important; 3 | } 4 | 5 | .edit-address { 6 | color: #1989fa; 7 | } 8 | 9 | .van-tag { 10 | margin-left: 15px; 11 | } 12 | -------------------------------------------------------------------------------- /dd/vant-app/pages/switch-cell/index.acss: -------------------------------------------------------------------------------- 1 | /* pages/switch-cell/index.wxss */ 2 | -------------------------------------------------------------------------------- /dd/vant-app/pages/switch/index.acss: -------------------------------------------------------------------------------- 1 | /* pages/switch/index.wxss */ 2 | -------------------------------------------------------------------------------- /dd/vant-app/pages/switch/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "Switch 开关", 3 | "usingComponents": { 4 | "demo-block": "../../components/demo-block/index", 5 | "van-dialog": "../../dist/dialog/index", 6 | "van-switch": "../../dist/switch/index" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /dd/vant-app/pages/tabbar/index.acss: -------------------------------------------------------------------------------- 1 | .tabbar { 2 | position: relative !important; 3 | } 4 | -------------------------------------------------------------------------------- /dd/vant-app/pages/tabbar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "Tabbar 标签栏", 3 | "usingComponents": { 4 | "demo-block": "../../components/demo-block/index", 5 | "van-tabbar": "../../dist/tabbar/index", 6 | "van-tabbar-item": "../../dist/tabbar-item/index" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /dd/vant-app/pages/tabbar1/index.acss: -------------------------------------------------------------------------------- 1 | .tabbar { 2 | position: relative !important; 3 | } 4 | -------------------------------------------------------------------------------- /dd/vant-app/pages/tabbar1/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "Tabbar 标签栏", 3 | "usingComponents": { 4 | "demo-block": "../../components/demo-block/index", 5 | "van-tabbar": "../../dist/tabbar/index", 6 | "van-tabbar-item": "../../dist/tabbar-item/index" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /dd/vant-app/pages/tag/index.acss: -------------------------------------------------------------------------------- 1 | /* pages/tag/index.wxss */ 2 | -------------------------------------------------------------------------------- /dd/vant-app/pages/tag/index.js: -------------------------------------------------------------------------------- 1 | my.setStorageSync({ 2 | key: "activeComponent", 3 | data: { 4 | is: "pages/tag/index" 5 | } 6 | }); 7 | import createPage from "../../common/page"; 8 | createPage(); 9 | -------------------------------------------------------------------------------- /dd/vant-app/pages/tag/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "Tag 标记", 3 | "usingComponents": { 4 | "demo-block": "../../components/demo-block/index", 5 | "van-tag": "../../dist/tag/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /dd/vant-app/pages/toast/index.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/dd/vant-app/pages/toast/index.acss -------------------------------------------------------------------------------- /dd/vant-app/pages/toast/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "Toast 轻提示", 3 | "usingComponents": { 4 | "demo-block": "../../components/demo-block/index", 5 | "van-button": "../../dist/button/index", 6 | "van-toast": "../../dist/toast/index" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /dd/vant-app/pages/transition/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "Transition 动画", 3 | "usingComponents": { 4 | "demo-block": "../../components/demo-block/index", 5 | "van-cell": "../../dist/cell/index", 6 | "van-transition": "../../dist/transition/index" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /dd/vant-app/pages/tree-select/index.acss: -------------------------------------------------------------------------------- 1 | /* pages/tree-select/index.wxss */ 2 | -------------------------------------------------------------------------------- /dd/vant-app/pages/tree-select/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultTitle": "TreeSelect 分类选择", 3 | "usingComponents": { 4 | "demo-block": "../../components/demo-block/index", 5 | "van-tree-select": "../../dist/tree-select/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /dd/vant-app/sitemap.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [ 4 | { 5 | "action": "allow", 6 | "page": "*" 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /wx/README.md: -------------------------------------------------------------------------------- 1 | # [youzan/vant-weapp](https://github.com/youzan/vant-weapp) 源码 2 | 3 | 移植自 1.6.2 版本 4 | 5 | 6 | -------------------------------------------------------------------------------- /wx/vant-app/app.js: -------------------------------------------------------------------------------- 1 | App({ 2 | globalData: {}, 3 | onLaunch() { 4 | if (!wx.cloud) { 5 | console.error('请使用 2.2.3 或以上的基础库以使用云能力'); 6 | } else { 7 | wx.cloud.init({ 8 | env: 'production-7dtfw' 9 | }); 10 | } 11 | } 12 | }); 13 | -------------------------------------------------------------------------------- /wx/vant-app/common/page.js: -------------------------------------------------------------------------------- 1 | export default function(options = {}) { 2 | return Page({ 3 | onShareAppMessage() { 4 | return { 5 | title: 'Vant Aliapp 组件库演示' 6 | }; 7 | }, 8 | ...options 9 | }); 10 | } 11 | -------------------------------------------------------------------------------- /wx/vant-app/components/demo-block/index.js: -------------------------------------------------------------------------------- 1 | Component({ 2 | properties: { 3 | title: String, 4 | padding: Boolean, 5 | card: Boolean, 6 | }, 7 | 8 | externalClasses: ['custom-class'], 9 | }); 10 | -------------------------------------------------------------------------------- /wx/vant-app/components/demo-block/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/components/demo-home-nav/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../../dist/icon/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wx/vant-app/components/demo-home/index.js: -------------------------------------------------------------------------------- 1 | import list from '../../config'; 2 | 3 | Component({ 4 | data: { 5 | list, 6 | }, 7 | }); 8 | -------------------------------------------------------------------------------- /wx/vant-app/components/demo-home/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "demo-home-nav": "../demo-home-nav/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wx/vant-app/dist/_vant/icons/src/vant-icon-96970a.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/wx/vant-app/dist/_vant/icons/src/vant-icon-96970a.ttf -------------------------------------------------------------------------------- /wx/vant-app/dist/_vant/icons/src/vant-icon-96970a.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/wx/vant-app/dist/_vant/icons/src/vant-icon-96970a.woff -------------------------------------------------------------------------------- /wx/vant-app/dist/_vant/icons/src/vant-icon-96970a.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/wx/vant-app/dist/_vant/icons/src/vant-icon-96970a.woff2 -------------------------------------------------------------------------------- /wx/vant-app/dist/action-sheet/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/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 | -------------------------------------------------------------------------------- /wx/vant-app/dist/area/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/area/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-picker": "../picker/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wx/vant-app/dist/area/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss'; -------------------------------------------------------------------------------- /wx/vant-app/dist/button/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/button/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-loading": "../loading/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /wx/vant-app/dist/calendar/components/header/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/calendar/components/header/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/dist/calendar/components/month/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/calendar/components/month/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/dist/calendar/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/card/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/card/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-tag": "../tag/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wx/vant-app/dist/cell-group/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/cell-group/index.js: -------------------------------------------------------------------------------- 1 | import { VantComponent } from '../common/component'; 2 | VantComponent({ 3 | props: { 4 | title: String, 5 | border: { 6 | type: Boolean, 7 | value: true, 8 | }, 9 | }, 10 | }); 11 | -------------------------------------------------------------------------------- /wx/vant-app/dist/cell-group/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/dist/cell-group/index.wxml: -------------------------------------------------------------------------------- 1 | 5 | {{ title }} 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /wx/vant-app/dist/cell/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/cell/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wx/vant-app/dist/checkbox-group/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/checkbox-group/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/dist/checkbox-group/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/checkbox-group/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss'; -------------------------------------------------------------------------------- /wx/vant-app/dist/checkbox/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/checkbox/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wx/vant-app/dist/circle/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/circle/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/dist/col/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/col/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/dist/col/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /wx/vant-app/dist/collapse-item/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/collapse-item/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-cell": "../cell/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wx/vant-app/dist/collapse/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/collapse/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/dist/collapse/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /wx/vant-app/dist/collapse/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss'; -------------------------------------------------------------------------------- /wx/vant-app/dist/common/style/clearfix.wxss: -------------------------------------------------------------------------------- 1 | .van-clearfix:after{display:table;clear:both;content:""} -------------------------------------------------------------------------------- /wx/vant-app/dist/common/style/mixins/clearfix.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/wx/vant-app/dist/common/style/mixins/clearfix.wxss -------------------------------------------------------------------------------- /wx/vant-app/dist/common/style/mixins/ellipsis.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/wx/vant-app/dist/common/style/mixins/ellipsis.wxss -------------------------------------------------------------------------------- /wx/vant-app/dist/common/style/mixins/hairline.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/wx/vant-app/dist/common/style/mixins/hairline.wxss -------------------------------------------------------------------------------- /wx/vant-app/dist/common/style/theme.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/wx/vant-app/dist/common/style/theme.wxss -------------------------------------------------------------------------------- /wx/vant-app/dist/common/style/var.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/wx/vant-app/dist/common/style/var.wxss -------------------------------------------------------------------------------- /wx/vant-app/dist/common/version.d.ts: -------------------------------------------------------------------------------- 1 | export declare function canIUseModel(): boolean 2 | export declare function canIUseFormFieldButton(): boolean 3 | export declare function canIUseAnimate(): boolean 4 | -------------------------------------------------------------------------------- /wx/vant-app/dist/count-down/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/count-down/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/dist/count-down/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{ formattedTime }} 4 | 5 | -------------------------------------------------------------------------------- /wx/vant-app/dist/count-down/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-count-down{color:#323233;color:var(--count-down-text-color,#323233);font-size:14px;font-size:var(--count-down-font-size,14px);line-height:20px;line-height:var(--count-down-line-height,20px)} -------------------------------------------------------------------------------- /wx/vant-app/dist/datetime-picker/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/datetime-picker/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-picker": "../picker/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wx/vant-app/dist/datetime-picker/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss'; -------------------------------------------------------------------------------- /wx/vant-app/dist/definitions/index.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/definitions/weapp.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/dialog/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/divider/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/divider/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } 5 | -------------------------------------------------------------------------------- /wx/vant-app/dist/dropdown-item/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/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 | -------------------------------------------------------------------------------- /wx/vant-app/dist/dropdown-item/shared.d.ts: -------------------------------------------------------------------------------- 1 | export interface Option { 2 | text: string; 3 | value: string | number; 4 | icon: string; 5 | } 6 | -------------------------------------------------------------------------------- /wx/vant-app/dist/dropdown-item/shared.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/dropdown-menu/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/dropdown-menu/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/dist/empty/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/empty/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /wx/vant-app/dist/field/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/field/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-cell": "../cell/index", 5 | "van-icon": "../icon/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /wx/vant-app/dist/goods-action-button/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/goods-action-button/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-button": "../button/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wx/vant-app/dist/goods-action-icon/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/goods-action-icon/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-button": "../button/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /wx/vant-app/dist/goods-action/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/goods-action/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/dist/goods-action/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /wx/vant-app/dist/grid-item/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/grid-item/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wx/vant-app/dist/grid/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/grid/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/dist/grid/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /wx/vant-app/dist/grid/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-grid{position:relative;box-sizing:border-box;overflow:hidden} -------------------------------------------------------------------------------- /wx/vant-app/dist/icon/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/icon/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-info": "../info/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wx/vant-app/dist/image/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/image/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-loading": "../loading/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /wx/vant-app/dist/index-anchor/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/index-anchor/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/dist/index-bar/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/index-bar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/dist/info/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/info/index.js: -------------------------------------------------------------------------------- 1 | import { VantComponent } from '../common/component'; 2 | VantComponent({ 3 | props: { 4 | dot: Boolean, 5 | info: null, 6 | customStyle: String, 7 | }, 8 | }); 9 | -------------------------------------------------------------------------------- /wx/vant-app/dist/info/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/dist/loading/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/loading/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/dist/mixins/basic.d.ts: -------------------------------------------------------------------------------- 1 | export declare const basic: string; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/mixins/button.d.ts: -------------------------------------------------------------------------------- 1 | export declare const button: string; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/mixins/link.d.ts: -------------------------------------------------------------------------------- 1 | export declare const link: string; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/mixins/open-type.d.ts: -------------------------------------------------------------------------------- 1 | export declare const openType: string; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/mixins/touch.d.ts: -------------------------------------------------------------------------------- 1 | export declare const touch: string; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/mixins/transition.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transition(showDefaultValue: boolean): string; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/nav-bar/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/nav-bar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wx/vant-app/dist/notice-bar/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/notice-bar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wx/vant-app/dist/notify/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/notify/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-transition": "../transition/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wx/vant-app/dist/overlay/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/overlay/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-transition": "../transition/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wx/vant-app/dist/overlay/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-overlay{position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.7);background-color:var(--overlay-background-color,rgba(0,0,0,.7))} -------------------------------------------------------------------------------- /wx/vant-app/dist/panel/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/panel/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-cell": "../cell/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wx/vant-app/dist/picker-column/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/picker-column/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/dist/picker/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/picker/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "picker-column": "../picker-column/index", 5 | "loading": "../loading/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /wx/vant-app/dist/popup/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/popup/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-overlay": "../overlay/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /wx/vant-app/dist/progress/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/progress/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/dist/progress/index.wxs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | text: function(pivotText, percentage) { 3 | return pivotText || percentage + '%'; 4 | } 5 | }; 6 | -------------------------------------------------------------------------------- /wx/vant-app/dist/radio-group/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/radio-group/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/dist/radio-group/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/radio-group/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss'; -------------------------------------------------------------------------------- /wx/vant-app/dist/radio/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/radio/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wx/vant-app/dist/rate/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/rate/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wx/vant-app/dist/row/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/row/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/dist/row/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /wx/vant-app/dist/row/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-row:after{display:table;clear:both;content:""} -------------------------------------------------------------------------------- /wx/vant-app/dist/search/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/search/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-field": "../field/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wx/vant-app/dist/share-sheet/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/share-sheet/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-popup": "../popup/index", 5 | "options": "./options" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /wx/vant-app/dist/share-sheet/options.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/share-sheet/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/dist/sidebar-item/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/sidebar-item/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-info": "../info/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wx/vant-app/dist/sidebar/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/sidebar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/dist/sidebar/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /wx/vant-app/dist/sidebar/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-sidebar{width:80px;width:var(--sidebar-width,80px)} -------------------------------------------------------------------------------- /wx/vant-app/dist/skeleton/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/skeleton/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } 5 | -------------------------------------------------------------------------------- /wx/vant-app/dist/slider/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/slider/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/dist/stepper/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/stepper/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/dist/steps/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/steps/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wx/vant-app/dist/sticky/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/sticky/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/dist/sticky/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-sticky{position:relative}.van-sticky-wrap--fixed{position:fixed;right:0;left:0} -------------------------------------------------------------------------------- /wx/vant-app/dist/submit-bar/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/submit-bar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-button": "../button/index", 5 | "van-icon": "../icon/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /wx/vant-app/dist/swipe-cell/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/swipe-cell/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/dist/switch/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/switch/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-loading": "../loading/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wx/vant-app/dist/tab/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/tab/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/dist/tabbar-item/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/tabbar-item/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-info": "../info/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /wx/vant-app/dist/tabbar/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/tabbar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/dist/tabs/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/tabs/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-info": "../info/index", 5 | "van-sticky": "../sticky/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /wx/vant-app/dist/tag/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/tag/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wx/vant-app/dist/toast/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/transition/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/transition/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/dist/tree-select/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/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 | -------------------------------------------------------------------------------- /wx/vant-app/dist/uploader/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /wx/vant-app/dist/uploader/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-loading": "../loading/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /wx/vant-app/dist/wxs/array.wxs: -------------------------------------------------------------------------------- 1 | function isArray(array) { 2 | return array && array.constructor === 'Array'; 3 | } 4 | 5 | module.exports.isArray = isArray; 6 | -------------------------------------------------------------------------------- /wx/vant-app/pages/action-sheet/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "ActionSheet 上拉菜单" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/action-sheet/index.wxss: -------------------------------------------------------------------------------- 1 | .content { 2 | padding: 20px; 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/area/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Area 省市区选择" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/area/index.wxss: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /wx/vant-app/pages/button/index.js: -------------------------------------------------------------------------------- 1 | import Page from '../../common/page'; 2 | 3 | Page(); 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/button/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Button 按钮" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/button/index.wxss: -------------------------------------------------------------------------------- 1 | .row { 2 | height: 44px; 3 | margin-bottom: 15px; 4 | } 5 | -------------------------------------------------------------------------------- /wx/vant-app/pages/calendar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Calendar 日历" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/calendar/index.wxss: -------------------------------------------------------------------------------- 1 | .tiled-calendar { 2 | --calendar-height: 500px; 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/card/index.js: -------------------------------------------------------------------------------- 1 | import Page from '../../common/page'; 2 | 3 | Page({ 4 | data: { 5 | imageURL: 'https://img.yzcdn.cn/upload_files/2017/07/02/af5b9f44deaeb68000d7e4a711160c53.jpg' 6 | } 7 | }); 8 | -------------------------------------------------------------------------------- /wx/vant-app/pages/card/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Card 商品卡片" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/card/index.wxss: -------------------------------------------------------------------------------- 1 | .container { 2 | height: 100vh; 3 | background-color: #fff; 4 | } 5 | 6 | .tag, 7 | .button { 8 | margin-right: 5px; 9 | } 10 | 11 | .van-card__footer { 12 | margin-top: 5px; 13 | } 14 | -------------------------------------------------------------------------------- /wx/vant-app/pages/cell/index.js: -------------------------------------------------------------------------------- 1 | import Page from '../../common/page'; 2 | 3 | Page(); 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/cell/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Cell 单元格" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/cell/index.wxss: -------------------------------------------------------------------------------- 1 | .title { 2 | margin-right: 5px; 3 | display: inline-block; 4 | vertical-align: middle; 5 | } 6 | -------------------------------------------------------------------------------- /wx/vant-app/pages/checkbox/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Checkbox 复选框" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/checkbox/index.wxss: -------------------------------------------------------------------------------- 1 | .demo-checkbox-group { 2 | margin: 10px 0 0 20px; 3 | } 4 | 5 | .demo-checkbox { 6 | margin: 10px 0 0 20px; 7 | } 8 | 9 | .value-class { 10 | flex: none !important; 11 | } 12 | 13 | .icon { 14 | width: 20px; 15 | } 16 | -------------------------------------------------------------------------------- /wx/vant-app/pages/circle/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Circle 进度条" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/circle/index.wxss: -------------------------------------------------------------------------------- 1 | .van-circle { 2 | margin: 5px 10px 20px; 3 | } 4 | .van-button{ 5 | margin-left: 10px; 6 | } 7 | -------------------------------------------------------------------------------- /wx/vant-app/pages/col/index.js: -------------------------------------------------------------------------------- 1 | import Page from '../../common/page'; 2 | 3 | Page(); 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/col/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Layout 布局" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/collapse/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Collapse 折叠面板" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/collapse/index.wxss: -------------------------------------------------------------------------------- 1 | .van-icon-question { 2 | margin-left: 5px; 3 | font-size: 15px !important; 4 | color: #1989fa; 5 | vertical-align: -3px; 6 | } 7 | -------------------------------------------------------------------------------- /wx/vant-app/pages/count-down/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "CountDown 倒计时" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/dashboard/index.js: -------------------------------------------------------------------------------- 1 | import list from '../../config'; 2 | import Page from '../../common/page'; 3 | 4 | Page({ 5 | data: { 6 | list 7 | }, 8 | }); 9 | -------------------------------------------------------------------------------- /wx/vant-app/pages/dashboard/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Vant Aliapp", 3 | "usingComponents": { 4 | "demo-home": "../../components/demo-home/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /wx/vant-app/pages/dashboard/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /wx/vant-app/pages/dashboard/index.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/wx/vant-app/pages/dashboard/index.wxss -------------------------------------------------------------------------------- /wx/vant-app/pages/datetime-picker/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "DatetimePicker 时间选择" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/datetime-picker/index.wxss: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /wx/vant-app/pages/dialog/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Dialog 弹出框" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/dialog/index.wxss: -------------------------------------------------------------------------------- 1 | .demo-image { 2 | box-sizing: border-box; 3 | width: 100%; 4 | padding: 25px 20px 0; 5 | } 6 | -------------------------------------------------------------------------------- /wx/vant-app/pages/divider/index.js: -------------------------------------------------------------------------------- 1 | import Page from '../../common/page'; 2 | 3 | Page(); 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/divider/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Divider 分割线" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/divider/index.wxss: -------------------------------------------------------------------------------- 1 | page { 2 | background-color: white; 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/dropdown-menu/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Dropdown Menu" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/dropdown-menu/index.wxss: -------------------------------------------------------------------------------- 1 | /** empty */ 2 | -------------------------------------------------------------------------------- /wx/vant-app/pages/empty/index.js: -------------------------------------------------------------------------------- 1 | import Page from '../../common/page'; 2 | 3 | Page({ 4 | data: { 5 | activeTab: 0, 6 | }, 7 | 8 | onChange(event) { 9 | this.setData({ 10 | activeTab: event.detail.name, 11 | }); 12 | }, 13 | }); 14 | -------------------------------------------------------------------------------- /wx/vant-app/pages/empty/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Empty 空状态" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/empty/index.wxss: -------------------------------------------------------------------------------- 1 | 2 | .custom-image .van-empty__image { 3 | width: 90px; 4 | height: 90px; 5 | } 6 | 7 | .bottom-button { 8 | width: 160px; 9 | height: 40px; 10 | } -------------------------------------------------------------------------------- /wx/vant-app/pages/field/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Field 输入框" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/field/index.wxss: -------------------------------------------------------------------------------- 1 | .button { 2 | vertical-align: middle; 3 | } 4 | 5 | .custom-icon { 6 | color: #1989fa; 7 | } 8 | -------------------------------------------------------------------------------- /wx/vant-app/pages/goods-action/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "GoodsAction 商品导航" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/goods-action/index.wxss: -------------------------------------------------------------------------------- 1 | .goods-action-position { 2 | position: relative !important; 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/grid/index.js: -------------------------------------------------------------------------------- 1 | import Page from '../../common/page'; 2 | 3 | Page({ 4 | data: { 5 | array3: [0, 1, 2], 6 | array4: [0, 1, 2, 3], 7 | array6: [0, 1, 2, 3, 4, 5], 8 | array8: [0, 1, 2, 3, 4, 5, 6, 7], 9 | }, 10 | }); 11 | -------------------------------------------------------------------------------- /wx/vant-app/pages/grid/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Grid 宫格" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/grid/index.wxss: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /wx/vant-app/pages/icon/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Icon 图标" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/image/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Image 图片" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/image/index.wxss: -------------------------------------------------------------------------------- 1 | page { 2 | background-color: #fff; 3 | } 4 | 5 | .text { 6 | width: 100%; 7 | margin: 5px 0 20px; 8 | color: #7d7e80; 9 | font-size: 14px; 10 | text-align: center; 11 | } 12 | -------------------------------------------------------------------------------- /wx/vant-app/pages/index-bar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "IndexBar 索引栏" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/index-bar/index.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/wx/vant-app/pages/index-bar/index.wxss -------------------------------------------------------------------------------- /wx/vant-app/pages/loading/index.js: -------------------------------------------------------------------------------- 1 | import Page from '../../common/page'; 2 | 3 | Page(); 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/loading/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Loading 加载" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/loading/index.wxss: -------------------------------------------------------------------------------- 1 | .demo-loading { 2 | margin: 4px 16px 4px 0; 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/nav-bar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "NavBar 导航栏" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/nav-bar/index.wxss: -------------------------------------------------------------------------------- 1 | .icon { 2 | color: #1989fa; 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/notice-bar/index.js: -------------------------------------------------------------------------------- 1 | import Page from '../../common/page'; 2 | 3 | Page({ 4 | data: { 5 | text: '在代码阅读过程中人们说脏话的频率是衡量代码质量的唯一标准。', 6 | shortText: '技术是开发它的人的共同灵魂。', 7 | }, 8 | }); 9 | -------------------------------------------------------------------------------- /wx/vant-app/pages/notice-bar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "NoticeBar 通告栏" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/notice-bar/index.wxss: -------------------------------------------------------------------------------- 1 | /* pages/notice-bar/index.wxss */ 2 | .margin-top { 3 | margin-top: 4px; 4 | } 5 | -------------------------------------------------------------------------------- /wx/vant-app/pages/notify/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Notify 消息通知" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/notify/index.wxss: -------------------------------------------------------------------------------- 1 | /* pages/notify/index.wxss */ -------------------------------------------------------------------------------- /wx/vant-app/pages/overlay/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Overlay 遮罩层" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/overlay/index.wxss: -------------------------------------------------------------------------------- 1 | .wrapper { 2 | display: flex; 3 | align-items: center; 4 | justify-content: center; 5 | height: 100%; 6 | } 7 | 8 | .block { 9 | width: 120px; 10 | height: 120px; 11 | background-color: #fff; 12 | } 13 | -------------------------------------------------------------------------------- /wx/vant-app/pages/panel/index.js: -------------------------------------------------------------------------------- 1 | import Page from '../../common/page'; 2 | 3 | Page(); 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/panel/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Panel 面板" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/panel/index.wxss: -------------------------------------------------------------------------------- 1 | .content { 2 | padding: 20px; 3 | font-size: 16px; 4 | } 5 | 6 | .footer { 7 | text-align: right; 8 | } 9 | -------------------------------------------------------------------------------- /wx/vant-app/pages/picker/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Picker 选择器" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/picker/index.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/wx/vant-app/pages/picker/index.wxss -------------------------------------------------------------------------------- /wx/vant-app/pages/popup/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Popup 弹出层" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/popup/index.wxss: -------------------------------------------------------------------------------- 1 | :host { 2 | font-size: 16px; 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/progress/index.js: -------------------------------------------------------------------------------- 1 | import Page from '../../common/page'; 2 | 3 | Page(); 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/progress/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Progress 进度条" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/progress/index.wxss: -------------------------------------------------------------------------------- 1 | .progress-position { 2 | margin: 5px 15px 20px; 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/radio/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Radio 单选框" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/radio/index.wxss: -------------------------------------------------------------------------------- 1 | .demo-radio { 2 | margin-bottom: 10px; 3 | } 4 | 5 | .icon { 6 | width: 20px; 7 | } 8 | -------------------------------------------------------------------------------- /wx/vant-app/pages/rate/index.js: -------------------------------------------------------------------------------- 1 | import Page from '../../common/page'; 2 | 3 | Page({ 4 | data: { 5 | value1: 3, 6 | value2: 3, 7 | value3: 3, 8 | value4: 2.5, 9 | value5: 4, 10 | value6: 3, 11 | }, 12 | }); 13 | -------------------------------------------------------------------------------- /wx/vant-app/pages/rate/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Rate 评分" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/rate/index.wxss: -------------------------------------------------------------------------------- 1 | page { 2 | background-color: #fff; 3 | } 4 | 5 | .rate-position { 6 | margin-left: 15px; 7 | } 8 | -------------------------------------------------------------------------------- /wx/vant-app/pages/search/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Search 搜索" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/search/index.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/wx/vant-app/pages/search/index.wxss -------------------------------------------------------------------------------- /wx/vant-app/pages/share-sheet/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Card 商品卡片" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/share-sheet/index.wxss: -------------------------------------------------------------------------------- 1 | .container { 2 | height: 100vh; 3 | background-color: #fff; 4 | } 5 | 6 | .tag, 7 | .button { 8 | margin-right: 5px; 9 | } 10 | 11 | .van-card__footer { 12 | margin-top: 5px; 13 | } 14 | -------------------------------------------------------------------------------- /wx/vant-app/pages/sidebar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Sidebar 侧边导航" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/skeleton/index.js: -------------------------------------------------------------------------------- 1 | import Page from '../../common/page'; 2 | 3 | Page({ 4 | data: { 5 | show: false 6 | }, 7 | 8 | onChange({ detail }) { 9 | this.setData({ show: detail }); 10 | }, 11 | }); 12 | -------------------------------------------------------------------------------- /wx/vant-app/pages/skeleton/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Skeleton 骨架屏" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/slider/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Slider 滑块" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/stepper/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Stepper 步进器" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/stepper/index.wxss: -------------------------------------------------------------------------------- 1 | /* pages/stepper/index.wxss */ 2 | page { 3 | background-color: #fff; 4 | } 5 | -------------------------------------------------------------------------------- /wx/vant-app/pages/steps/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Steps 步骤条" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/steps/index.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/wx/vant-app/pages/steps/index.wxss -------------------------------------------------------------------------------- /wx/vant-app/pages/sticky/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Sticky 粘性布局" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/sticky/index.wxss: -------------------------------------------------------------------------------- 1 | page { 2 | height: 200vh; 3 | } 4 | 5 | .van-button { 6 | margin-left: 16px; 7 | } 8 | 9 | .sticky-container { 10 | position: relative; 11 | z-index: -1; 12 | height: 150px; 13 | background-color: #fff; 14 | } 15 | -------------------------------------------------------------------------------- /wx/vant-app/pages/submit-bar/index.js: -------------------------------------------------------------------------------- 1 | import Page from '../../common/page'; 2 | import Toast from '../../dist/toast/toast'; 3 | 4 | Page({ 5 | onClickButton() { 6 | Toast('点击按钮'); 7 | }, 8 | onClickLink() { 9 | Toast('修改地址'); 10 | } 11 | }); 12 | -------------------------------------------------------------------------------- /wx/vant-app/pages/submit-bar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "SubmitBar 提交订单栏" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/submit-bar/index.wxss: -------------------------------------------------------------------------------- 1 | .van-submit-bar { 2 | position: relative !important; 3 | } 4 | 5 | .edit-address { 6 | color: #1989fa; 7 | } 8 | 9 | .submit-tag { 10 | margin-left: 15px; 11 | } 12 | -------------------------------------------------------------------------------- /wx/vant-app/pages/swipe-cell/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "SwipeCell 滑动单元格" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/switch/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Switch 开关" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/switch/index.wxss: -------------------------------------------------------------------------------- 1 | /* pages/switch/index.wxss */ -------------------------------------------------------------------------------- /wx/vant-app/pages/tab/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Tab 标签页" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/tabbar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Tabbar 标签栏" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/tabbar/index.wxss: -------------------------------------------------------------------------------- 1 | .tabbar-position { 2 | position: relative !important; 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/tag/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Tag 标记" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/tag/index.wxss: -------------------------------------------------------------------------------- 1 | /* pages/tag/index.wxss */ -------------------------------------------------------------------------------- /wx/vant-app/pages/toast/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Toast 轻提示" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/toast/index.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ant-move/Vant-Aliapp/655a493bac966e2fa55dd601bab673923ab3ab64/wx/vant-app/pages/toast/index.wxss -------------------------------------------------------------------------------- /wx/vant-app/pages/transition/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Transition 动画" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/tree-select/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "TreeSelect 分类选择" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/tree-select/index.wxss: -------------------------------------------------------------------------------- 1 | /* pages/tree-select/index.wxss */ 2 | -------------------------------------------------------------------------------- /wx/vant-app/pages/uploader/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Uploader 文件上传" 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/pages/uploader/index.wxss: -------------------------------------------------------------------------------- 1 | page { 2 | background-color: #fff; 3 | } 4 | -------------------------------------------------------------------------------- /wx/vant-app/sitemap.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } --------------------------------------------------------------------------------