├── dist ├── date-picker-view │ ├── index.wxss │ ├── index.json │ └── locales │ │ ├── en.js │ │ ├── zh_CN.js │ │ ├── zh_TW.js │ │ └── index.js ├── field │ ├── index.wxml │ ├── index.json │ └── index.less ├── cell │ └── index.json ├── icon │ ├── index.json │ └── index.wxml ├── accordion │ └── index.json ├── avatar │ ├── index.json │ └── index.wxml ├── button │ └── index.json ├── input │ └── index.json ├── cell-group │ ├── index.json │ └── index.wxml ├── selectable │ └── index.json ├── animation-group │ ├── index.json │ └── index.wxml ├── accordion-group │ ├── index.wxss │ ├── index.json │ └── index.wxml ├── radio-group │ ├── index.less │ └── index.json ├── input-number │ └── index.json ├── picker-view │ └── index.json ├── spin │ └── index.json ├── backdrop │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── multi-picker-view │ ├── index.wxss │ ├── index.json │ └── utils.js ├── radio │ ├── index.json │ ├── index.less │ └── index.wxml ├── popup │ └── index.json ├── date-picker │ └── index.json └── helpers │ ├── mergeOptionsToData.js │ ├── debounce.js │ ├── arrayTreeFilter.js │ ├── colors.js │ └── compareVersion.js ├── pages ├── chooseBgm │ └── chooseBgm.json ├── search │ ├── search.json │ ├── search.wxss │ └── search.wxml ├── videoInfo │ └── videoInfo.json ├── logs │ ├── logs.json │ ├── logs.js │ └── logs.wxml ├── todo │ └── todo.json ├── addtopic │ └── addtopic.json ├── videoList │ └── videoList.json ├── bbs │ ├── bbs.wxss │ └── bbs.json ├── diarylist │ └── diarylist.json └── mine │ └── mine.json ├── packages └── @minui │ ├── wxc-cc │ └── dist │ │ ├── index.wxss │ │ ├── index.wxml │ │ └── index.json │ ├── wxc-badge │ └── dist │ │ ├── index.json │ │ └── index.wxml │ ├── wxc-flex │ └── dist │ │ ├── index.json │ │ └── index.wxml │ └── wxc-avatar │ └── dist │ └── index.json ├── junior ├── dist │ ├── date-picker-view │ │ ├── index.wxss │ │ ├── index.json │ │ └── locales │ │ │ ├── en.js │ │ │ ├── zh_CN.js │ │ │ ├── zh_TW.js │ │ │ └── index.js │ ├── avatar │ │ ├── index.json │ │ └── index.wxml │ ├── button │ │ └── index.json │ ├── cell │ │ └── index.json │ ├── icon │ │ ├── index.json │ │ └── index.wxml │ ├── input │ │ └── index.json │ ├── accordion │ │ └── index.json │ ├── cell-group │ │ ├── index.json │ │ └── index.wxml │ ├── animation-group │ │ ├── index.json │ │ └── index.wxml │ ├── accordion-group │ │ ├── index.wxss │ │ ├── index.json │ │ └── index.wxml │ ├── picker-view │ │ └── index.json │ ├── spin │ │ └── index.json │ ├── backdrop │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ ├── multi-picker-view │ │ ├── index.wxss │ │ ├── index.json │ │ └── utils.js │ ├── popup │ │ └── index.json │ ├── date-picker │ │ └── index.json │ └── helpers │ │ ├── mergeOptionsToData.js │ │ ├── debounce.js │ │ ├── arrayTreeFilter.js │ │ ├── colors.js │ │ └── compareVersion.js ├── packages │ └── @minui │ │ ├── wxc-cc │ │ └── dist │ │ │ ├── index.wxss │ │ │ ├── index.wxml │ │ │ └── index.json │ │ ├── wxc-badge │ │ └── dist │ │ │ ├── index.json │ │ │ └── index.wxml │ │ ├── wxc-flex │ │ └── dist │ │ │ ├── index.json │ │ │ └── index.wxml │ │ └── wxc-avatar │ │ └── dist │ │ └── index.json ├── common │ └── layout │ │ ├── foot.json │ │ ├── head.json │ │ ├── foot.wxml │ │ ├── head.wxml │ │ ├── head.wxss │ │ ├── foot.js │ │ ├── head.js │ │ └── foot.wxss ├── component │ ├── calendar │ │ └── index.json │ └── vant │ │ └── miniprogram_npm │ │ └── vant-weapp │ │ ├── common │ │ ├── style │ │ │ ├── var.wxss │ │ │ ├── mixins │ │ │ │ ├── clearfix.wxss │ │ │ │ ├── ellipsis.wxss │ │ │ │ └── hairline.wxss │ │ │ ├── clearfix.wxss │ │ │ └── ellipsis.wxss │ │ ├── color.js │ │ ├── color.d.ts │ │ └── component.d.ts │ │ ├── col │ │ ├── index.d.ts │ │ ├── index.json │ │ └── index.wxml │ │ ├── row │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.wxss │ │ └── index.wxml │ │ ├── tab │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.wxss │ │ └── index.wxml │ │ ├── tag │ │ ├── index.d.ts │ │ ├── index.json │ │ └── index.wxml │ │ ├── badge │ │ ├── index.d.ts │ │ └── index.json │ │ ├── button │ │ ├── index.d.ts │ │ └── index.json │ │ ├── card │ │ ├── index.d.ts │ │ └── index.json │ │ ├── cell │ │ ├── index.d.ts │ │ └── index.json │ │ ├── collapse │ │ ├── index.d.ts │ │ ├── index.wxss │ │ ├── index.json │ │ └── index.wxml │ │ ├── dialog │ │ ├── index.d.ts │ │ └── index.json │ │ ├── field │ │ ├── index.d.ts │ │ └── index.json │ │ ├── icon │ │ ├── index.d.ts │ │ └── index.json │ │ ├── info │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.js │ │ ├── loading │ │ ├── index.d.ts │ │ └── index.json │ │ ├── nav-bar │ │ ├── index.d.ts │ │ └── index.json │ │ ├── overlay │ │ ├── index.d.ts │ │ ├── index.wxss │ │ ├── index.json │ │ └── index.wxml │ │ ├── popup │ │ ├── index.d.ts │ │ └── index.json │ │ ├── search │ │ ├── index.d.ts │ │ └── index.json │ │ ├── tabs │ │ ├── index.d.ts │ │ └── index.json │ │ ├── toast │ │ ├── index.d.ts │ │ └── index.json │ │ ├── action-sheet │ │ ├── index.d.ts │ │ └── index.json │ │ ├── badge-group │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.wxss │ │ └── index.wxml │ │ ├── cell-group │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.wxss │ │ ├── index.js │ │ └── index.wxml │ │ ├── collapse-item │ │ ├── index.d.ts │ │ └── index.json │ │ ├── goods-action │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.js │ │ ├── index.wxml │ │ └── index.wxss │ │ ├── transition │ │ ├── index.d.ts │ │ ├── index.json │ │ └── index.wxml │ │ ├── goods-action-icon │ │ ├── index.d.ts │ │ ├── index.json │ │ └── index.wxss │ │ ├── goods-action-button │ │ ├── index.d.ts │ │ ├── index.wxss │ │ └── index.json │ │ ├── mixins │ │ ├── basic.d.ts │ │ ├── button.d.ts │ │ ├── link.d.ts │ │ ├── touch.d.ts │ │ ├── open-type.d.ts │ │ ├── observer │ │ │ ├── behavior.d.ts │ │ │ ├── props.d.ts │ │ │ └── index.d.ts │ │ ├── transition.d.ts │ │ └── safe-area.d.ts │ │ └── wxs │ │ ├── array.wxs │ │ ├── object.wxs │ │ └── utils.wxs ├── pages │ ├── report │ │ └── report.json │ ├── about │ │ ├── about.json │ │ └── about.js │ ├── login │ │ └── login.json │ ├── register │ │ └── register.json │ ├── todo │ │ └── todo.json │ ├── addtopic │ │ └── addtopic.json │ ├── logs │ │ ├── logs.json │ │ ├── logs.js │ │ └── logs.wxml │ ├── pdfview │ │ └── pdfview.json │ ├── search │ │ ├── search.json │ │ └── search.wxss │ ├── myopus │ │ └── myopus.json │ ├── updatepass │ │ └── updatepass.json │ ├── searchdraw │ │ └── searchdraw.json │ ├── calendar │ │ └── calendar.json │ ├── bbs │ │ ├── bbs.wxss │ │ └── bbs.json │ ├── editortopic │ │ └── editortopic.json │ └── mine │ │ └── mine.json ├── image │ ├── pre.png │ ├── down.png │ ├── next.png │ ├── plus.png │ ├── right.png │ ├── avator.jpg │ ├── location.png │ ├── marker.png │ ├── new_normal.png │ ├── manage_normal.png │ ├── new_pressed.png │ ├── search_normal.png │ ├── user_normal.png │ ├── user_pressed.png │ ├── manage_pressed.png │ └── search_pressed.png ├── images │ ├── plus.png │ ├── qse.png │ ├── meBack.jpg │ ├── pencil.png │ ├── qrcode.jpg │ ├── wuxianpu.png │ ├── color-lens.png │ ├── edit-aaaaaa.png │ ├── edit-faad14.png │ ├── entry-home.png │ ├── eye-aaaaaa.png │ ├── eye-faad14.png │ ├── heart-faad14.png │ ├── home-aaaaaa.png │ ├── home-faad14.png │ ├── livejoumal.png │ ├── news-aaaaaa.png │ ├── news-faad14.png │ ├── paint-brush.png │ ├── star-faad14.png │ ├── star3-faad14.png │ ├── heart-o-faad14.png │ ├── person-faad14.png │ ├── dot-circle-o-aaaaaa.png │ ├── dot-circle-o-faad14.png │ └── person-outline-aaaaaa.png ├── wxParse │ └── emojis │ │ ├── 00.gif │ │ ├── 2600.gif │ │ ├── 2601.gif │ │ ├── 2615.gif │ │ ├── 261D.gif │ │ ├── 26A1.gif │ │ ├── 26BD.gif │ │ ├── 26C5.gif │ │ ├── 270A.gif │ │ ├── 270C.gif │ │ ├── 1F339.gif │ │ ├── 1F349.gif │ │ ├── 1F35A.gif │ │ ├── 1F37A.gif │ │ ├── 1F381.gif │ │ ├── 1F382.gif │ │ ├── 1F3C0.gif │ │ ├── 1F41E.gif │ │ ├── 1F444.gif │ │ ├── 1F44C.gif │ │ ├── 1F44D.gif │ │ ├── 1F466.gif │ │ ├── 1F467.gif │ │ ├── 1F48A.gif │ │ ├── 1F494.gif │ │ ├── 1F496.gif │ │ ├── 1F559.gif │ │ ├── 1F601.gif │ │ ├── 1F603.gif │ │ ├── 1F60C.gif │ │ ├── 1F60D.gif │ │ ├── 1F60F.gif │ │ ├── 1F613.gif │ │ ├── 1F616.gif │ │ ├── 1F61A.gif │ │ ├── 1F61C.gif │ │ ├── 1F620.gif │ │ ├── 1F621.gif │ │ ├── 1F62A.gif │ │ ├── 1F62B.gif │ │ ├── 1F62D.gif │ │ ├── 1F631.gif │ │ ├── 1F633.gif │ │ └── 1F637.gif ├── sitemap.json ├── README.md ├── utils │ └── promise.util.js ├── min.config.json └── package-lock.json ├── packageB └── pages │ ├── pay │ ├── pay.wxss │ ├── pay.json │ └── pay.wxml │ ├── adduser │ └── adduser.json │ ├── mybrand │ ├── mybrand.json │ ├── mybrand.wxss │ └── mybrand.wxml │ ├── mycollect │ ├── mycollect.json │ ├── mycollect.wxss │ └── mycollect.wxml │ ├── myproject │ ├── myproject.json │ ├── myproject.wxss │ └── myproject.wxml │ ├── login │ └── login.json │ ├── about │ └── about.json │ ├── register │ └── register.json │ ├── myopus │ └── myopus.json │ ├── updatepass │ └── updatepass.json │ └── mymoney │ └── mymoney.wxss ├── packageC └── pages │ ├── videoplay │ └── videoplay.json │ ├── calendar │ └── calendar.json │ └── busycheckin │ └── busycheckin.wxss ├── common └── layout │ ├── foot.json │ ├── head.json │ ├── foot.wxml │ ├── head.wxml │ ├── foot.js │ ├── head.js │ ├── head.wxss │ └── foot.wxss ├── component ├── calendar │ └── index.json └── vant │ └── miniprogram_npm │ └── vant-weapp │ ├── common │ ├── style │ │ ├── var.wxss │ │ ├── theme.wxss │ │ ├── mixins │ │ │ ├── clearfix.wxss │ │ │ ├── ellipsis.wxss │ │ │ ├── hairline.wxss │ │ │ ├── clearfix.less │ │ │ └── ellipsis.less │ │ ├── clearfix.wxss │ │ ├── clearfix.less │ │ ├── theme.less │ │ ├── ellipsis.less │ │ └── ellipsis.wxss │ ├── layout │ │ ├── foot.json │ │ ├── head.json │ │ ├── foot.wxml │ │ ├── head.wxml │ │ ├── head.wxss │ │ ├── foot.js │ │ ├── head.js │ │ └── foot.wxss │ ├── version.d.ts │ ├── index.less │ ├── color.js │ ├── color.ts │ ├── component.d.ts │ └── color.d.ts │ ├── area │ ├── index.d.ts │ ├── index.wxss │ └── index.json │ ├── card │ ├── index.d.ts │ └── index.json │ ├── cell │ ├── index.d.ts │ └── index.json │ ├── col │ ├── index.d.ts │ ├── index.json │ └── index.wxml │ ├── empty │ ├── index.d.ts │ └── index.json │ ├── field │ ├── index.d.ts │ └── index.json │ ├── grid │ ├── index.d.ts │ ├── index.json │ ├── index.wxss │ └── index.wxml │ ├── icon │ ├── index.d.ts │ └── index.json │ ├── image │ ├── index.d.ts │ └── index.json │ ├── info │ ├── index.d.ts │ ├── index.json │ ├── index.js │ └── index.wxml │ ├── panel │ ├── index.d.ts │ ├── index.json │ ├── index.js │ └── index.wxss │ ├── popup │ ├── index.d.ts │ └── index.json │ ├── radio │ ├── index.d.ts │ └── index.json │ ├── rate │ ├── index.d.ts │ └── index.json │ ├── row │ ├── index.d.ts │ ├── index.json │ ├── index.wxss │ └── index.wxml │ ├── steps │ ├── index.d.ts │ └── index.json │ ├── tab │ ├── index.d.ts │ ├── index.json │ ├── index.wxml │ └── index.wxss │ ├── tabs │ ├── index.d.ts │ └── index.json │ ├── tag │ ├── index.d.ts │ └── index.json │ ├── toast │ ├── index.d.ts │ └── index.json │ ├── button │ ├── index.d.ts │ └── index.json │ ├── calendar │ ├── index.d.ts │ ├── components │ │ ├── month │ │ │ ├── index.d.ts │ │ │ └── index.json │ │ └── header │ │ │ ├── index.d.ts │ │ │ ├── index.json │ │ │ └── index.js │ └── index.json │ ├── cell-group │ ├── index.d.ts │ ├── index.json │ ├── index.js │ ├── index.wxml │ └── index.wxss │ ├── checkbox │ ├── index.d.ts │ └── index.json │ ├── circle │ ├── index.d.ts │ ├── index.json │ ├── canvas.d.ts │ └── index.wxss │ ├── collapse │ ├── index.d.ts │ ├── index.wxss │ ├── index.json │ └── index.wxml │ ├── count-down │ ├── index.d.ts │ ├── index.json │ ├── index.wxml │ └── index.wxss │ ├── definitions │ ├── index.js │ └── weapp.js │ ├── dialog │ ├── index.d.ts │ └── index.json │ ├── divider │ ├── index.d.ts │ ├── index.json │ └── index.wxml │ ├── grid-item │ ├── index.d.ts │ └── index.json │ ├── index-bar │ ├── index.d.ts │ └── index.json │ ├── loading │ ├── index.d.ts │ ├── index.json │ └── index.js │ ├── nav-bar │ ├── index.d.ts │ └── index.json │ ├── notice-bar │ ├── index.d.ts │ └── index.json │ ├── notify │ ├── index.d.ts │ └── index.json │ ├── overlay │ ├── index.d.ts │ ├── index.json │ ├── index.wxss │ └── index.wxml │ ├── picker │ ├── index.d.ts │ └── index.json │ ├── progress │ ├── index.d.ts │ ├── index.json │ └── index.wxs │ ├── radio-group │ ├── index.wxml │ ├── index.d.ts │ ├── index.wxss │ └── index.json │ ├── search │ ├── index.d.ts │ └── index.json │ ├── sidebar │ ├── index.d.ts │ ├── index.json │ ├── index.wxml │ └── index.wxss │ ├── skeleton │ ├── index.d.ts │ └── index.json │ ├── slider │ ├── index.d.ts │ └── index.json │ ├── stepper │ ├── index.d.ts │ └── index.json │ ├── sticky │ ├── index.d.ts │ ├── index.json │ ├── index.wxss │ └── index.wxml │ ├── submit-bar │ ├── index.d.ts │ └── index.json │ ├── swipe-cell │ ├── index.d.ts │ ├── index.json │ └── index.wxss │ ├── switch │ ├── index.d.ts │ └── index.json │ ├── tabbar │ ├── index.d.ts │ ├── index.json │ ├── index.wxml │ └── index.wxss │ ├── transition │ ├── index.d.ts │ ├── index.json │ ├── index.wxml │ └── index.js │ ├── uploader │ ├── index.d.ts │ └── index.json │ ├── action-sheet │ ├── index.d.ts │ └── index.json │ ├── checkbox-group │ ├── index.d.ts │ ├── index.wxml │ ├── index.wxss │ └── index.json │ ├── collapse-item │ ├── index.d.ts │ └── index.json │ ├── datetime-picker │ ├── index.d.ts │ ├── index.wxss │ └── index.json │ ├── dropdown-item │ ├── index.d.ts │ └── index.json │ ├── dropdown-menu │ ├── index.d.ts │ └── index.json │ ├── goods-action │ ├── index.d.ts │ ├── index.json │ ├── index.wxml │ └── index.wxss │ ├── index-anchor │ ├── index.d.ts │ ├── index.json │ └── index.wxml │ ├── picker-column │ ├── index.d.ts │ ├── index.json │ └── index.wxs │ ├── share-sheet │ ├── index.d.ts │ ├── options.d.ts │ ├── options.json │ ├── index.json │ ├── index.wxs │ └── options.wxs │ ├── sidebar-item │ ├── index.d.ts │ └── index.json │ ├── tabbar-item │ ├── index.d.ts │ └── index.json │ ├── tree-select │ ├── index.d.ts │ ├── index.json │ └── index.wxs │ ├── goods-action-button │ ├── index.d.ts │ └── index.json │ ├── goods-action-icon │ ├── index.d.ts │ └── index.json │ ├── mixins │ ├── link.d.ts │ ├── basic.d.ts │ ├── button.d.ts │ ├── touch.d.ts │ ├── open-type.d.ts │ ├── transition.d.ts │ ├── page-scroll.d.ts │ └── link.js │ └── wxs │ ├── array.wxs │ ├── utils.wxs │ ├── add-unit.wxs │ └── object.wxs ├── images ├── d.png ├── l.png ├── n.png ├── s.png ├── home.png ├── hot.png ├── like.png ├── link.png ├── logs.png ├── mine.png ├── plus.png ├── zsj.png ├── camera.png ├── folder.png ├── follow.png ├── hot-on.png ├── index.png ├── meBack.jpg ├── music.png ├── pencil.png ├── qrcode.jpg ├── search.png ├── share.png ├── tar-li.png ├── todos.png ├── unlike.png ├── comments.png ├── gravatar.png ├── noneface.png ├── pageviews.png ├── password.png ├── tar-about.png ├── tar-home.png ├── tar-info.png ├── tar-li-on.png ├── username.png ├── wuxianpu.png ├── zsjplus.png ├── color-lens.png ├── edit-aaaaaa.png ├── edit-faad14.png ├── entry-home.png ├── eye-aaaaaa.png ├── eye-faad14.png ├── forwarding.png ├── home-aaaaaa.png ├── home-faad14.png ├── livejoumal.png ├── logs-active.png ├── news-aaaaaa.png ├── news-faad14.png ├── paint-brush.png ├── report_face.png ├── star-faad14.png ├── tar-home-on.png ├── tar-info-on.png ├── tar-person.png ├── collection-on.png ├── heart-faad14.png ├── heart-o-faad14.png ├── person-faad14.png ├── star3-faad14.png ├── tar-about-on.png ├── tar-comments.png ├── tar-person-on.png ├── today-aaaaaa.png ├── today-faad14.png ├── todos-active.png ├── tar-comments-on.png ├── dot-circle-o-aaaaaa.png ├── dot-circle-o-faad14.png ├── volume-high-aaaaaa.png ├── volume-high-faad14.png ├── watch-life-logo-80.jpg ├── person-outline-aaaaaa.png ├── checkmark-circle-outline-aaaaaa.png └── checkmark-circle-outline-faad14.png ├── packageA └── pages │ ├── new │ ├── new.json │ └── new.wxss │ ├── search │ ├── search.json │ └── search.wxss │ ├── logs │ ├── logs.json │ ├── logs.js │ └── logs.wxml │ ├── pdfview │ └── pdfview.json │ ├── calendar │ └── calendar.json │ ├── diarydetail │ └── diarydetail.json │ ├── financedetail │ └── financedetail.json │ ├── editortopic │ └── editortopic.json │ ├── diaryeditor │ └── diaryeditor.json │ ├── diary │ └── diary.json │ ├── searchdraw │ └── searchdraw.json │ └── financelist │ └── financelist.json ├── image ├── down.png ├── next.png ├── plus.png ├── pre.png ├── right.png ├── avator.jpg ├── haijun.jpg ├── marker.png ├── hotqin000.jpg ├── hotqin999.jpg ├── location.png ├── new_normal.png ├── new_pressed.png ├── user_normal.png ├── user_pressed.png ├── manage_normal.png ├── manage_pressed.png ├── search_normal.png └── search_pressed.png ├── wxParse └── emojis │ ├── 00.gif │ ├── 1F339.gif │ ├── 1F349.gif │ ├── 1F35A.gif │ ├── 1F37A.gif │ ├── 1F381.gif │ ├── 1F382.gif │ ├── 1F3C0.gif │ ├── 1F41E.gif │ ├── 1F444.gif │ ├── 1F44C.gif │ ├── 1F44D.gif │ ├── 1F466.gif │ ├── 1F467.gif │ ├── 1F48A.gif │ ├── 1F494.gif │ ├── 1F496.gif │ ├── 1F559.gif │ ├── 1F601.gif │ ├── 1F603.gif │ ├── 1F60C.gif │ ├── 1F60D.gif │ ├── 1F60F.gif │ ├── 1F613.gif │ ├── 1F616.gif │ ├── 1F61A.gif │ ├── 1F61C.gif │ ├── 1F620.gif │ ├── 1F621.gif │ ├── 1F62A.gif │ ├── 1F62B.gif │ ├── 1F62D.gif │ ├── 1F631.gif │ ├── 1F633.gif │ ├── 1F637.gif │ ├── 2600.gif │ ├── 2601.gif │ ├── 2615.gif │ ├── 261D.gif │ ├── 26A1.gif │ ├── 26BD.gif │ ├── 26C5.gif │ ├── 270A.gif │ └── 270C.gif ├── about.txt ├── sitemap.json ├── .gitignore ├── utils └── promise.util.js └── min.config.json /dist/date-picker-view/index.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/chooseBgm/chooseBgm.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pages/search/search.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /packages/@minui/wxc-cc/dist/index.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/field/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /junior/dist/date-picker-view/index.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /junior/packages/@minui/wxc-cc/dist/index.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/videoInfo/videoInfo.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /dist/cell/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /dist/icon/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /packageB/pages/pay/pay.wxss: -------------------------------------------------------------------------------- 1 | /* pages/pay/pay.wxss */ -------------------------------------------------------------------------------- /packageC/pages/videoplay/videoplay.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /common/layout/foot.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /common/layout/head.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /dist/accordion/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /dist/avatar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /dist/button/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /dist/input/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /component/calendar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/common/style/var.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/cell-group/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /dist/field/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /dist/selectable/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /junior/common/layout/foot.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /junior/common/layout/head.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /junior/dist/avatar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /junior/dist/button/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /junior/dist/cell/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /junior/dist/icon/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /junior/dist/input/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /packageB/pages/pay/pay.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/common/style/theme.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/animation-group/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /junior/component/calendar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /junior/dist/accordion/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /junior/dist/cell-group/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /junior/pages/report/report.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /pages/search/search.wxss: -------------------------------------------------------------------------------- 1 | @import "/wxSearchView/wxSearchView.wxss"; -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/area/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/card/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/cell/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/col/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/empty/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/field/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/grid/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/icon/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/image/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/info/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/panel/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/popup/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/radio/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/rate/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/row/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/steps/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/tab/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/tabs/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/tag/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/toast/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/common/style/var.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /junior/dist/animation-group/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /packageB/pages/adduser/adduser.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /packageB/pages/mybrand/mybrand.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/button/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/calendar/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/cell-group/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/checkbox/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/circle/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/collapse/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/common/style/mixins/clearfix.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/common/style/mixins/ellipsis.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/common/style/mixins/hairline.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/count-down/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/definitions/index.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/definitions/weapp.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/dialog/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/divider/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/grid-item/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/index-bar/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/loading/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/nav-bar/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/notice-bar/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/notify/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/overlay/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/picker/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/progress/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/radio-group/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/search/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/sidebar/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/skeleton/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/slider/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/stepper/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/sticky/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/submit-bar/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/swipe-cell/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/switch/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/tabbar/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/transition/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/uploader/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/col/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/row/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/tab/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/tag/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /packageB/pages/mybrand/mybrand.wxss: -------------------------------------------------------------------------------- 1 | /* packageB/pages/mybrand/mybrand.wxss */ -------------------------------------------------------------------------------- /packageB/pages/mycollect/mycollect.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /packageB/pages/mycollect/mycollect.wxss: -------------------------------------------------------------------------------- 1 | /* pages/mycollect/mycollect.wxss */ -------------------------------------------------------------------------------- /packageB/pages/myproject/myproject.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /pages/logs/logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "湾区防腐蚀●完成事件" 3 | } 4 | -------------------------------------------------------------------------------- /pages/search/search.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/todo/todo.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "珠三角设代plus●待办" 3 | } -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/action-sheet/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/checkbox-group/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/checkbox-group/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/collapse-item/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/datetime-picker/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/dropdown-item/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/dropdown-menu/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/goods-action/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/index-anchor/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/picker-column/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/radio-group/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/share-sheet/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/share-sheet/options.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/sidebar-item/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/tabbar-item/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/tree-select/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dist/accordion-group/index.wxss: -------------------------------------------------------------------------------- 1 | .wux-accordion-group{position:relative;border:none} -------------------------------------------------------------------------------- /images/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/d.png -------------------------------------------------------------------------------- /images/l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/l.png -------------------------------------------------------------------------------- /images/n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/n.png -------------------------------------------------------------------------------- /images/s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/s.png -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/badge/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/button/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/card/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/cell/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/collapse/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/common/style/mixins/clearfix.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/common/style/mixins/ellipsis.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/common/style/mixins/hairline.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/dialog/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/field/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/icon/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/info/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/loading/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/nav-bar/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/overlay/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/popup/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/search/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/tabs/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/toast/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /junior/pages/about/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "青少儿书画+●关于" 3 | } -------------------------------------------------------------------------------- /junior/pages/login/login.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "珠三角设代plus" 3 | } -------------------------------------------------------------------------------- /junior/pages/register/register.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "青少儿书画" 3 | } -------------------------------------------------------------------------------- /junior/pages/todo/todo.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "珠三角设代plus●待办" 3 | } -------------------------------------------------------------------------------- /packageA/pages/new/new.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "珠三角设代plus●new" 3 | } -------------------------------------------------------------------------------- /packageB/pages/login/login.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "珠三角设代plus" 3 | } -------------------------------------------------------------------------------- /pages/addtopic/addtopic.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "珠三角设代plus●发布" 3 | } -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/area/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss'; -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/goods-action-button/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/goods-action-icon/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /image/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/image/down.png -------------------------------------------------------------------------------- /image/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/image/next.png -------------------------------------------------------------------------------- /image/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/image/plus.png -------------------------------------------------------------------------------- /image/pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/image/pre.png -------------------------------------------------------------------------------- /image/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/image/right.png -------------------------------------------------------------------------------- /images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/home.png -------------------------------------------------------------------------------- /images/hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/hot.png -------------------------------------------------------------------------------- /images/like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/like.png -------------------------------------------------------------------------------- /images/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/link.png -------------------------------------------------------------------------------- /images/logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/logs.png -------------------------------------------------------------------------------- /images/mine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/mine.png -------------------------------------------------------------------------------- /images/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/plus.png -------------------------------------------------------------------------------- /images/zsj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/zsj.png -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/action-sheet/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/badge-group/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/cell-group/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/collapse-item/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/goods-action/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/transition/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /junior/pages/addtopic/addtopic.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "青少儿书画+●发布" 3 | } -------------------------------------------------------------------------------- /junior/pages/logs/logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "珠三角设代plus●完成事件" 3 | } 4 | -------------------------------------------------------------------------------- /junior/pages/pdfview/pdfview.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "珠三角设代plus●分享" 3 | } -------------------------------------------------------------------------------- /junior/pages/search/search.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "珠三角设代plus●活动" 3 | } -------------------------------------------------------------------------------- /packageA/pages/search/search.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "珠三角设代plus●活动" 3 | } -------------------------------------------------------------------------------- /packageB/pages/about/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "珠三角设代plus●关于" 3 | } -------------------------------------------------------------------------------- /packageB/pages/myproject/myproject.wxss: -------------------------------------------------------------------------------- 1 | /* packageB/pages/myproject/myproject.wxss */ -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/calendar/components/month/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/col/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/collapse/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss'; -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/grid/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/info/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/row/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/tab/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /image/avator.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/image/avator.jpg -------------------------------------------------------------------------------- /image/haijun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/image/haijun.jpg -------------------------------------------------------------------------------- /image/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/image/marker.png -------------------------------------------------------------------------------- /images/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/camera.png -------------------------------------------------------------------------------- /images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/folder.png -------------------------------------------------------------------------------- /images/follow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/follow.png -------------------------------------------------------------------------------- /images/hot-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/hot-on.png -------------------------------------------------------------------------------- /images/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/index.png -------------------------------------------------------------------------------- /images/meBack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/meBack.jpg -------------------------------------------------------------------------------- /images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/music.png -------------------------------------------------------------------------------- /images/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/pencil.png -------------------------------------------------------------------------------- /images/qrcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/qrcode.jpg -------------------------------------------------------------------------------- /images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/search.png -------------------------------------------------------------------------------- /images/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/share.png -------------------------------------------------------------------------------- /images/tar-li.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/tar-li.png -------------------------------------------------------------------------------- /images/todos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/todos.png -------------------------------------------------------------------------------- /images/unlike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/unlike.png -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/goods-action-icon/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /junior/dist/accordion-group/index.wxss: -------------------------------------------------------------------------------- 1 | .wux-accordion-group{position:relative;border:none} -------------------------------------------------------------------------------- /packageA/pages/logs/logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "珠三角设代plus●完成事件" 3 | } 4 | -------------------------------------------------------------------------------- /packageA/pages/new/new.wxss: -------------------------------------------------------------------------------- 1 | .weui-btn.btn-green { 2 | background-color: "#2ba245"; 3 | } -------------------------------------------------------------------------------- /packageA/pages/pdfview/pdfview.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "珠三角设代plus●分享" 3 | } -------------------------------------------------------------------------------- /packageB/pages/pay/pay.wxml: -------------------------------------------------------------------------------- 1 | 2 | pages/pay/pay.wxml 3 | -------------------------------------------------------------------------------- /packageB/pages/register/register.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "珠三角设代plus●注册" 3 | } -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/calendar/components/header/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/checkbox-group/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss'; -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/circle/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/collapse/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/common/layout/foot.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/common/layout/head.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/index-bar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/loading/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/mixins/link.d.ts: -------------------------------------------------------------------------------- 1 | export declare const link: string; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/progress/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/radio-group/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss'; -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/sidebar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/slider/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/stepper/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/sticky/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/tabbar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /image/hotqin000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/image/hotqin000.jpg -------------------------------------------------------------------------------- /image/hotqin999.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/image/hotqin999.jpg -------------------------------------------------------------------------------- /image/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/image/location.png -------------------------------------------------------------------------------- /image/new_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/image/new_normal.png -------------------------------------------------------------------------------- /images/comments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/comments.png -------------------------------------------------------------------------------- /images/gravatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/gravatar.png -------------------------------------------------------------------------------- /images/noneface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/noneface.png -------------------------------------------------------------------------------- /images/pageviews.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/pageviews.png -------------------------------------------------------------------------------- /images/password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/password.png -------------------------------------------------------------------------------- /images/tar-about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/tar-about.png -------------------------------------------------------------------------------- /images/tar-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/tar-home.png -------------------------------------------------------------------------------- /images/tar-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/tar-info.png -------------------------------------------------------------------------------- /images/tar-li-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/tar-li-on.png -------------------------------------------------------------------------------- /images/username.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/username.png -------------------------------------------------------------------------------- /images/wuxianpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/wuxianpu.png -------------------------------------------------------------------------------- /images/zsjplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/zsjplus.png -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/goods-action-button/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/loading/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/tab/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/tag/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /junior/image/pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/image/pre.png -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/cell-group/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/checkbox-group/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/count-down/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/datetime-picker/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss'; -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/dropdown-menu/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/goods-action/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/index-anchor/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/mixins/basic.d.ts: -------------------------------------------------------------------------------- 1 | export declare const basic: string; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/mixins/button.d.ts: -------------------------------------------------------------------------------- 1 | export declare const button: string; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/mixins/touch.d.ts: -------------------------------------------------------------------------------- 1 | export declare const touch: string; 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/picker-column/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/radio-group/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/share-sheet/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/swipe-cell/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/transition/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /image/new_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/image/new_pressed.png -------------------------------------------------------------------------------- /image/user_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/image/user_normal.png -------------------------------------------------------------------------------- /image/user_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/image/user_pressed.png -------------------------------------------------------------------------------- /images/color-lens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/color-lens.png -------------------------------------------------------------------------------- /images/edit-aaaaaa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/edit-aaaaaa.png -------------------------------------------------------------------------------- /images/edit-faad14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/edit-faad14.png -------------------------------------------------------------------------------- /images/entry-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/entry-home.png -------------------------------------------------------------------------------- /images/eye-aaaaaa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/eye-aaaaaa.png -------------------------------------------------------------------------------- /images/eye-faad14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/eye-faad14.png -------------------------------------------------------------------------------- /images/forwarding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/forwarding.png -------------------------------------------------------------------------------- /images/home-aaaaaa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/home-aaaaaa.png -------------------------------------------------------------------------------- /images/home-faad14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/home-faad14.png -------------------------------------------------------------------------------- /images/livejoumal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/livejoumal.png -------------------------------------------------------------------------------- /images/logs-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/logs-active.png -------------------------------------------------------------------------------- /images/news-aaaaaa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/news-aaaaaa.png -------------------------------------------------------------------------------- /images/news-faad14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/news-faad14.png -------------------------------------------------------------------------------- /images/paint-brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/paint-brush.png -------------------------------------------------------------------------------- /images/report_face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/report_face.png -------------------------------------------------------------------------------- /images/star-faad14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/star-faad14.png -------------------------------------------------------------------------------- /images/tar-home-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/tar-home-on.png -------------------------------------------------------------------------------- /images/tar-info-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/tar-info-on.png -------------------------------------------------------------------------------- /images/tar-person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/tar-person.png -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/cell-group/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/col/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/collapse/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss'; -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/info/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/row/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/transition/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /junior/image/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/image/down.png -------------------------------------------------------------------------------- /junior/image/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/image/next.png -------------------------------------------------------------------------------- /junior/image/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/image/plus.png -------------------------------------------------------------------------------- /junior/image/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/image/right.png -------------------------------------------------------------------------------- /junior/images/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/images/plus.png -------------------------------------------------------------------------------- /junior/images/qse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/images/qse.png -------------------------------------------------------------------------------- /packages/@minui/wxc-badge/dist/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /packages/@minui/wxc-flex/dist/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /wxParse/emojis/00.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/00.gif -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/mixins/open-type.d.ts: -------------------------------------------------------------------------------- 1 | export declare const openType: string; 2 | -------------------------------------------------------------------------------- /dist/field/index.less: -------------------------------------------------------------------------------- 1 | @import "../styles/mixins/index.less"; 2 | @import "../styles/themes/index.less"; 3 | -------------------------------------------------------------------------------- /image/manage_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/image/manage_normal.png -------------------------------------------------------------------------------- /image/manage_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/image/manage_pressed.png -------------------------------------------------------------------------------- /image/search_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/image/search_normal.png -------------------------------------------------------------------------------- /image/search_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/image/search_pressed.png -------------------------------------------------------------------------------- /images/collection-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/collection-on.png -------------------------------------------------------------------------------- /images/heart-faad14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/heart-faad14.png -------------------------------------------------------------------------------- /images/heart-o-faad14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/heart-o-faad14.png -------------------------------------------------------------------------------- /images/person-faad14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/person-faad14.png -------------------------------------------------------------------------------- /images/star3-faad14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/star3-faad14.png -------------------------------------------------------------------------------- /images/tar-about-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/tar-about-on.png -------------------------------------------------------------------------------- /images/tar-comments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/tar-comments.png -------------------------------------------------------------------------------- /images/tar-person-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/tar-person-on.png -------------------------------------------------------------------------------- /images/today-aaaaaa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/today-aaaaaa.png -------------------------------------------------------------------------------- /images/today-faad14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/today-faad14.png -------------------------------------------------------------------------------- /images/todos-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/todos-active.png -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/badge-group/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/collapse/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/goods-action/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/mixins/basic.d.ts: -------------------------------------------------------------------------------- 1 | export declare const basic: string; 2 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/mixins/button.d.ts: -------------------------------------------------------------------------------- 1 | export declare const button: string; 2 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/mixins/link.d.ts: -------------------------------------------------------------------------------- 1 | export declare const link: string; 2 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/mixins/touch.d.ts: -------------------------------------------------------------------------------- 1 | export declare const touch: string; 2 | -------------------------------------------------------------------------------- /junior/image/avator.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/image/avator.jpg -------------------------------------------------------------------------------- /junior/image/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/image/location.png -------------------------------------------------------------------------------- /junior/image/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/image/marker.png -------------------------------------------------------------------------------- /junior/images/meBack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/images/meBack.jpg -------------------------------------------------------------------------------- /junior/images/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/images/pencil.png -------------------------------------------------------------------------------- /junior/images/qrcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/images/qrcode.jpg -------------------------------------------------------------------------------- /junior/packages/@minui/wxc-badge/dist/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /junior/packages/@minui/wxc-flex/dist/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "component": true 4 | } -------------------------------------------------------------------------------- /wxParse/emojis/1F339.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/1F339.gif -------------------------------------------------------------------------------- /wxParse/emojis/1F349.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/1F349.gif -------------------------------------------------------------------------------- /wxParse/emojis/1F35A.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/1F35A.gif -------------------------------------------------------------------------------- /wxParse/emojis/1F37A.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/1F37A.gif -------------------------------------------------------------------------------- /wxParse/emojis/1F381.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/1F381.gif -------------------------------------------------------------------------------- /wxParse/emojis/1F382.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/1F382.gif -------------------------------------------------------------------------------- /wxParse/emojis/1F3C0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/1F3C0.gif -------------------------------------------------------------------------------- /wxParse/emojis/1F41E.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/1F41E.gif -------------------------------------------------------------------------------- /wxParse/emojis/1F444.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/1F444.gif -------------------------------------------------------------------------------- /wxParse/emojis/1F44C.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/1F44C.gif -------------------------------------------------------------------------------- /wxParse/emojis/1F44D.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/1F44D.gif -------------------------------------------------------------------------------- /wxParse/emojis/1F466.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/1F466.gif -------------------------------------------------------------------------------- /wxParse/emojis/1F467.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/1F467.gif -------------------------------------------------------------------------------- /wxParse/emojis/1F48A.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/1F48A.gif -------------------------------------------------------------------------------- /wxParse/emojis/1F494.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/1F494.gif -------------------------------------------------------------------------------- /wxParse/emojis/1F496.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/1F496.gif -------------------------------------------------------------------------------- /wxParse/emojis/1F559.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/1F559.gif -------------------------------------------------------------------------------- /wxParse/emojis/1F601.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/1F601.gif -------------------------------------------------------------------------------- /wxParse/emojis/1F603.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/1F603.gif -------------------------------------------------------------------------------- /wxParse/emojis/1F60C.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/1F60C.gif -------------------------------------------------------------------------------- /wxParse/emojis/1F60D.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/1F60D.gif -------------------------------------------------------------------------------- /wxParse/emojis/1F60F.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/1F60F.gif -------------------------------------------------------------------------------- /wxParse/emojis/1F613.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/1F613.gif -------------------------------------------------------------------------------- /wxParse/emojis/1F616.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/1F616.gif -------------------------------------------------------------------------------- /wxParse/emojis/1F61A.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/1F61A.gif -------------------------------------------------------------------------------- /wxParse/emojis/1F61C.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/1F61C.gif -------------------------------------------------------------------------------- /wxParse/emojis/1F620.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/1F620.gif -------------------------------------------------------------------------------- /wxParse/emojis/1F621.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/1F621.gif -------------------------------------------------------------------------------- /wxParse/emojis/1F62A.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/1F62A.gif -------------------------------------------------------------------------------- /wxParse/emojis/1F62B.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/1F62B.gif -------------------------------------------------------------------------------- /wxParse/emojis/1F62D.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/1F62D.gif -------------------------------------------------------------------------------- /wxParse/emojis/1F631.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/1F631.gif -------------------------------------------------------------------------------- /wxParse/emojis/1F633.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/1F633.gif -------------------------------------------------------------------------------- /wxParse/emojis/1F637.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/1F637.gif -------------------------------------------------------------------------------- /wxParse/emojis/2600.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/2600.gif -------------------------------------------------------------------------------- /wxParse/emojis/2601.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/2601.gif -------------------------------------------------------------------------------- /wxParse/emojis/2615.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/2615.gif -------------------------------------------------------------------------------- /wxParse/emojis/261D.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/261D.gif -------------------------------------------------------------------------------- /wxParse/emojis/26A1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/26A1.gif -------------------------------------------------------------------------------- /wxParse/emojis/26BD.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/26BD.gif -------------------------------------------------------------------------------- /wxParse/emojis/26C5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/26C5.gif -------------------------------------------------------------------------------- /wxParse/emojis/270A.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/270A.gif -------------------------------------------------------------------------------- /wxParse/emojis/270C.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/wxParse/emojis/270C.gif -------------------------------------------------------------------------------- /dist/radio-group/index.less: -------------------------------------------------------------------------------- 1 | @import "../styles/mixins/index.less"; 2 | @import "../styles/themes/index.less"; 3 | -------------------------------------------------------------------------------- /images/tar-comments-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/tar-comments-on.png -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/mixins/open-type.d.ts: -------------------------------------------------------------------------------- 1 | export declare const openType: string; 2 | -------------------------------------------------------------------------------- /junior/image/new_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/image/new_normal.png -------------------------------------------------------------------------------- /junior/images/wuxianpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/images/wuxianpu.png -------------------------------------------------------------------------------- /junior/pages/about/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/pages/about/about.js -------------------------------------------------------------------------------- /pages/videoList/videoList.json: -------------------------------------------------------------------------------- 1 | { 2 | "enablePullDownRefresh": true, 3 | "backgroundTextStyle": "dark" 4 | } -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/calendar/components/header/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/calendar/components/month/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/empty/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /images/dot-circle-o-aaaaaa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/dot-circle-o-aaaaaa.png -------------------------------------------------------------------------------- /images/dot-circle-o-faad14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/dot-circle-o-faad14.png -------------------------------------------------------------------------------- /images/volume-high-aaaaaa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/volume-high-aaaaaa.png -------------------------------------------------------------------------------- /images/volume-high-faad14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/volume-high-faad14.png -------------------------------------------------------------------------------- /images/watch-life-logo-80.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/watch-life-logo-80.jpg -------------------------------------------------------------------------------- /junior/image/manage_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/image/manage_normal.png -------------------------------------------------------------------------------- /junior/image/new_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/image/new_pressed.png -------------------------------------------------------------------------------- /junior/image/search_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/image/search_normal.png -------------------------------------------------------------------------------- /junior/image/user_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/image/user_normal.png -------------------------------------------------------------------------------- /junior/image/user_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/image/user_pressed.png -------------------------------------------------------------------------------- /junior/images/color-lens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/images/color-lens.png -------------------------------------------------------------------------------- /junior/images/edit-aaaaaa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/images/edit-aaaaaa.png -------------------------------------------------------------------------------- /junior/images/edit-faad14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/images/edit-faad14.png -------------------------------------------------------------------------------- /junior/images/entry-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/images/entry-home.png -------------------------------------------------------------------------------- /junior/images/eye-aaaaaa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/images/eye-aaaaaa.png -------------------------------------------------------------------------------- /junior/images/eye-faad14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/images/eye-faad14.png -------------------------------------------------------------------------------- /junior/images/heart-faad14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/images/heart-faad14.png -------------------------------------------------------------------------------- /junior/images/home-aaaaaa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/images/home-aaaaaa.png -------------------------------------------------------------------------------- /junior/images/home-faad14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/images/home-faad14.png -------------------------------------------------------------------------------- /junior/images/livejoumal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/images/livejoumal.png -------------------------------------------------------------------------------- /junior/images/news-aaaaaa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/images/news-aaaaaa.png -------------------------------------------------------------------------------- /junior/images/news-faad14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/images/news-faad14.png -------------------------------------------------------------------------------- /junior/images/paint-brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/images/paint-brush.png -------------------------------------------------------------------------------- /junior/images/star-faad14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/images/star-faad14.png -------------------------------------------------------------------------------- /junior/images/star3-faad14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/images/star3-faad14.png -------------------------------------------------------------------------------- /junior/pages/myopus/myopus.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "青少儿书画●我的", 3 | "enablePullDownRefresh": true 4 | } -------------------------------------------------------------------------------- /junior/wxParse/emojis/00.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/00.gif -------------------------------------------------------------------------------- /junior/wxParse/emojis/2600.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/2600.gif -------------------------------------------------------------------------------- /junior/wxParse/emojis/2601.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/2601.gif -------------------------------------------------------------------------------- /junior/wxParse/emojis/2615.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/2615.gif -------------------------------------------------------------------------------- /junior/wxParse/emojis/261D.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/261D.gif -------------------------------------------------------------------------------- /junior/wxParse/emojis/26A1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/26A1.gif -------------------------------------------------------------------------------- /junior/wxParse/emojis/26BD.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/26BD.gif -------------------------------------------------------------------------------- /junior/wxParse/emojis/26C5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/26C5.gif -------------------------------------------------------------------------------- /junior/wxParse/emojis/270A.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/270A.gif -------------------------------------------------------------------------------- /junior/wxParse/emojis/270C.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/270C.gif -------------------------------------------------------------------------------- /images/person-outline-aaaaaa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/person-outline-aaaaaa.png -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/mixins/observer/behavior.d.ts: -------------------------------------------------------------------------------- 1 | export declare const behavior: string; 2 | -------------------------------------------------------------------------------- /junior/image/manage_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/image/manage_pressed.png -------------------------------------------------------------------------------- /junior/image/search_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/image/search_pressed.png -------------------------------------------------------------------------------- /junior/images/heart-o-faad14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/images/heart-o-faad14.png -------------------------------------------------------------------------------- /junior/images/person-faad14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/images/person-faad14.png -------------------------------------------------------------------------------- /junior/pages/updatepass/updatepass.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "珠三角设代plus●密码", 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /junior/wxParse/emojis/1F339.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/1F339.gif -------------------------------------------------------------------------------- /junior/wxParse/emojis/1F349.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/1F349.gif -------------------------------------------------------------------------------- /junior/wxParse/emojis/1F35A.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/1F35A.gif -------------------------------------------------------------------------------- /junior/wxParse/emojis/1F37A.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/1F37A.gif -------------------------------------------------------------------------------- /junior/wxParse/emojis/1F381.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/1F381.gif -------------------------------------------------------------------------------- /junior/wxParse/emojis/1F382.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/1F382.gif -------------------------------------------------------------------------------- /junior/wxParse/emojis/1F3C0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/1F3C0.gif -------------------------------------------------------------------------------- /junior/wxParse/emojis/1F41E.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/1F41E.gif -------------------------------------------------------------------------------- /junior/wxParse/emojis/1F444.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/1F444.gif -------------------------------------------------------------------------------- /junior/wxParse/emojis/1F44C.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/1F44C.gif -------------------------------------------------------------------------------- /junior/wxParse/emojis/1F44D.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/1F44D.gif -------------------------------------------------------------------------------- /junior/wxParse/emojis/1F466.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/1F466.gif -------------------------------------------------------------------------------- /junior/wxParse/emojis/1F467.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/1F467.gif -------------------------------------------------------------------------------- /junior/wxParse/emojis/1F48A.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/1F48A.gif -------------------------------------------------------------------------------- /junior/wxParse/emojis/1F494.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/1F494.gif -------------------------------------------------------------------------------- /junior/wxParse/emojis/1F496.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/1F496.gif -------------------------------------------------------------------------------- /junior/wxParse/emojis/1F559.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/1F559.gif -------------------------------------------------------------------------------- /junior/wxParse/emojis/1F601.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/1F601.gif -------------------------------------------------------------------------------- /junior/wxParse/emojis/1F603.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/1F603.gif -------------------------------------------------------------------------------- /junior/wxParse/emojis/1F60C.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/1F60C.gif -------------------------------------------------------------------------------- /junior/wxParse/emojis/1F60D.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/1F60D.gif -------------------------------------------------------------------------------- /junior/wxParse/emojis/1F60F.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/1F60F.gif -------------------------------------------------------------------------------- /junior/wxParse/emojis/1F613.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/1F613.gif -------------------------------------------------------------------------------- /junior/wxParse/emojis/1F616.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/1F616.gif -------------------------------------------------------------------------------- /junior/wxParse/emojis/1F61A.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/1F61A.gif -------------------------------------------------------------------------------- /junior/wxParse/emojis/1F61C.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/1F61C.gif -------------------------------------------------------------------------------- /junior/wxParse/emojis/1F620.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/1F620.gif -------------------------------------------------------------------------------- /junior/wxParse/emojis/1F621.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/1F621.gif -------------------------------------------------------------------------------- /junior/wxParse/emojis/1F62A.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/1F62A.gif -------------------------------------------------------------------------------- /junior/wxParse/emojis/1F62B.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/1F62B.gif -------------------------------------------------------------------------------- /junior/wxParse/emojis/1F62D.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/1F62D.gif -------------------------------------------------------------------------------- /junior/wxParse/emojis/1F631.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/1F631.gif -------------------------------------------------------------------------------- /junior/wxParse/emojis/1F633.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/1F633.gif -------------------------------------------------------------------------------- /junior/wxParse/emojis/1F637.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/wxParse/emojis/1F637.gif -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/common/style/clearfix.wxss: -------------------------------------------------------------------------------- 1 | .van-clearfix:after{display:table;clear:both;content:""} -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/divider/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } 5 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/skeleton/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } 5 | -------------------------------------------------------------------------------- /junior/pages/searchdraw/searchdraw.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "珠三角设代plus●search", 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /packageB/pages/myopus/myopus.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "珠三角设代plus●我的", 3 | "enablePullDownRefresh": true 4 | } -------------------------------------------------------------------------------- /packageB/pages/updatepass/updatepass.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "珠三角设代plus●密码", 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/sidebar/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/badge-group/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-badge-group{width:85px} -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/common/style/clearfix.wxss: -------------------------------------------------------------------------------- 1 | .van-clearfix:after{content:"";display:table;clear:both} -------------------------------------------------------------------------------- /junior/images/dot-circle-o-aaaaaa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/images/dot-circle-o-aaaaaa.png -------------------------------------------------------------------------------- /junior/images/dot-circle-o-faad14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/images/dot-circle-o-faad14.png -------------------------------------------------------------------------------- /packageB/pages/mycollect/mycollect.wxml: -------------------------------------------------------------------------------- 1 | 2 | pages/mycollect/mycollect.wxml 3 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/row/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-row:after{display:table;clear:both;content:""} -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/goods-action-button/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';:host{-webkit-flex:1;flex:1} -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/mixins/observer/props.d.ts: -------------------------------------------------------------------------------- 1 | export declare function observeProps(props: any): void; 2 | -------------------------------------------------------------------------------- /junior/images/person-outline-aaaaaa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/junior/images/person-outline-aaaaaa.png -------------------------------------------------------------------------------- /packageB/pages/mybrand/mybrand.wxml: -------------------------------------------------------------------------------- 1 | 2 | packageB/pages/mybrand/mybrand.wxml 3 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/mixins/transition.d.ts: -------------------------------------------------------------------------------- 1 | export declare const transition: (showDefaultValue: boolean) => string; 2 | -------------------------------------------------------------------------------- /dist/input-number/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "wux-icon": "../icon/index" 5 | } 6 | } -------------------------------------------------------------------------------- /images/checkmark-circle-outline-aaaaaa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/checkmark-circle-outline-aaaaaa.png -------------------------------------------------------------------------------- /images/checkmark-circle-outline-faad14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3xxx/wechatengineercms/HEAD/images/checkmark-circle-outline-faad14.png -------------------------------------------------------------------------------- /packages/@minui/wxc-cc/dist/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/row/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/sidebar/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-sidebar{width:85px;width:var(--sidebar-width,85px)} -------------------------------------------------------------------------------- /dist/picker-view/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "wux-spin": "../spin/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/mixins/transition.d.ts: -------------------------------------------------------------------------------- 1 | export declare const transition: (showDefaultValue: boolean) => any; 2 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/row/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-row:after{content:"";display:table;clear:both} -------------------------------------------------------------------------------- /packageB/pages/myproject/myproject.wxml: -------------------------------------------------------------------------------- 1 | 2 | packageB/pages/myproject/myproject.wxml 3 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/mixins/observer/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function observe(vantOptions: any, options: any): void; 2 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/row/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /junior/dist/picker-view/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "wux-spin": "../spin/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /junior/packages/@minui/wxc-cc/dist/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /packages/@minui/wxc-cc/dist/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "wxc-flex": "../../wxc-flex/dist/index" 4 | }, 5 | "component": true 6 | } -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/common/style/clearfix.less: -------------------------------------------------------------------------------- 1 | @import './mixins/clearfix.less'; 2 | 3 | .van-clearfix { 4 | .clearfix(); 5 | } 6 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/grid/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-grid{position:relative;box-sizing:border-box;overflow:hidden} -------------------------------------------------------------------------------- /dist/accordion-group/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "wux-cell-group": "../cell-group/index" 5 | } 6 | } -------------------------------------------------------------------------------- /dist/spin/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "wux-animation-group": "../animation-group/index" 5 | } 6 | } -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/overlay/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-overlay{position:fixed;top:0;right:0;bottom:0;left:0} -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/card/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-tag": "../tag/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /dist/backdrop/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "wux-animation-group": "../animation-group/index" 5 | } 6 | } -------------------------------------------------------------------------------- /dist/multi-picker-view/index.wxss: -------------------------------------------------------------------------------- 1 | .wux-picker{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-direction:row;flex-direction:row} -------------------------------------------------------------------------------- /junior/dist/accordion-group/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "wux-cell-group": "../cell-group/index" 5 | } 6 | } -------------------------------------------------------------------------------- /junior/dist/spin/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "wux-animation-group": "../animation-group/index" 5 | } 6 | } -------------------------------------------------------------------------------- /junior/packages/@minui/wxc-cc/dist/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "wxc-flex": "../../wxc-flex/dist/index" 4 | }, 5 | "component": true 6 | } -------------------------------------------------------------------------------- /about.txt: -------------------------------------------------------------------------------- 1 | 珠三角设代plus 2 | 如何使用相对路径和绝对路径 3 | “../”代表当前文件所在目录的上一级目录。 4 | “../../”代表当前文件所在目录的上上级目录。 5 | “../../../”可以依次类推。 6 | “/”代表根目录,也就是绝对路径。 7 | “./”表示当前目录,HTML中,可以省略 -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/cell/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/icon/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-info": "../info/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/nav-bar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/panel/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-cell": "../cell/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/radio/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/rate/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/steps/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/tag/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/cell/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index" 5 | } 6 | } -------------------------------------------------------------------------------- /junior/dist/backdrop/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "wux-animation-group": "../animation-group/index" 5 | } 6 | } -------------------------------------------------------------------------------- /junior/dist/multi-picker-view/index.wxss: -------------------------------------------------------------------------------- 1 | .wux-picker{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-direction:row;flex-direction:row} -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/area/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-picker": "../picker/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/checkbox/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/grid-item/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/notice-bar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/search/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-field": "../field/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/sidebar-item/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-info": "../info/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/switch/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-loading": "../loading/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/badge-group/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/badge/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-info": "../info/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/card/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-tag": "../tag/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/icon/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-info": "../info/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/tabs/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-info": "../info/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /junior/pages/calendar/calendar.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "打卡日历", 3 | "usingComponents": { 4 | "calendar": "../../component/calendar/index" 5 | } 6 | } -------------------------------------------------------------------------------- /packages/@minui/wxc-flex/dist/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/collapse-item/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-cell": "../cell/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/common/version.d.ts: -------------------------------------------------------------------------------- 1 | export declare function canIUseModel(): boolean; 2 | export declare function canIUseFormFieldButton(): boolean; 3 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/sticky/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-sticky{position:relative}.van-sticky-wrap--fixed{position:fixed;right:0;left:0} -------------------------------------------------------------------------------- /dist/date-picker-view/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "wux-multi-picker-view": "../multi-picker-view/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/nav-bar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/search/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-field": "../field/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /junior/packages/@minui/wxc-flex/dist/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /packageA/pages/calendar/calendar.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "打卡日历", 3 | "usingComponents": { 4 | "calendar": "../../../component/calendar/index" 5 | } 6 | } -------------------------------------------------------------------------------- /packageC/pages/calendar/calendar.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "打卡日历", 3 | "usingComponents": { 4 | "calendar": "../../../component/calendar/index" 5 | } 6 | } -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/collapse/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/datetime-picker/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-picker": "../picker/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/notify/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-transition": "../transition/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/overlay/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-transition": "../transition/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/collapse-item/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-cell": "../cell/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/popup/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-overlay": "../overlay/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /junior/dist/date-picker-view/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "wux-multi-picker-view": "../multi-picker-view/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/goods-action-button/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-button": "../button/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/wxs/array.wxs: -------------------------------------------------------------------------------- 1 | function isArray(array) { 2 | return array && array.constructor === 'Array'; 3 | } 4 | 5 | module.exports.isArray = isArray; 6 | -------------------------------------------------------------------------------- /dist/icon/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dist/radio/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "wux-cell": "../cell/index", 5 | "wux-selectable": "../selectable/index" 6 | } 7 | } -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/collapse/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/overlay/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-transition": "../transition/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/common/style/mixins/clearfix.less: -------------------------------------------------------------------------------- 1 | .clearfix() { 2 | &::after { 3 | display: table; 4 | clear: both; 5 | content: ''; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/progress/index.wxs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | text: function(pivotText, percentage) { 3 | return pivotText || percentage + '%'; 4 | } 5 | }; 6 | -------------------------------------------------------------------------------- /dist/backdrop/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/cell-group/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-cell-group__title{font-size:14px;padding:15px 15px 5px;color:#999;line-height:16px} -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/goods-action-button/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-button": "../button/index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /junior/dist/icon/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/count-down/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{ formattedTime }} 4 | 5 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/wxs/array.wxs: -------------------------------------------------------------------------------- 1 | function isArray(array) { 2 | return array && array.constructor === 'Array'; 3 | } 4 | 5 | module.exports.isArray = isArray; 6 | -------------------------------------------------------------------------------- /junior/dist/backdrop/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /packageB/pages/mymoney/mymoney.wxss: -------------------------------------------------------------------------------- 1 | /* pages/mymoney/mymoney.wxss */ 2 | .row { 3 | height: 44px; 4 | margin-bottom: 15px; 5 | } 6 | 7 | .reserve{ 8 | color:rgb(255, 136, 0) !important; 9 | } -------------------------------------------------------------------------------- /sitemap.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/field/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-cell": "../cell/index", 5 | "van-icon": "../icon/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/grid/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dist/accordion-group/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /dist/multi-picker-view/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "wux-picker-view": "../picker-view/index", 5 | "wux-spin": "../spin/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /dist/radio-group/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "wux-cell-group": "../cell-group/index", 5 | "wux-radio": "../radio/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/common/color.js: -------------------------------------------------------------------------------- 1 | export const RED = '#f44'; 2 | export const BLUE = '#1989fa'; 3 | export const GREEN = '#07c160'; 4 | export const ORANGE = '#ff976a'; 5 | -------------------------------------------------------------------------------- /junior/sitemap.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /packageA/pages/diarydetail/diarydetail.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "珠三角设代plus", 3 | "usingComponents": { 4 | "wxc-avatar": "../../../packages/@minui/wxc-avatar/dist/index" 5 | } 6 | } -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/share-sheet/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-popup": "../popup/index", 5 | "options": "./options" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/tabs/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-info": "../info/index", 5 | "van-sticky": "../sticky/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /dist/backdrop/index.wxss: -------------------------------------------------------------------------------- 1 | .wux-backdrop{background:rgba(0,0,0,.4)}.wux-backdrop,.wux-backdrop--transparent{position:fixed;z-index:1000;top:0;right:0;left:0;bottom:0}.wux-backdrop--transparent{background:0 0} -------------------------------------------------------------------------------- /dist/popup/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "wux-animation-group": "../animation-group/index", 5 | "wux-backdrop": "../backdrop/index" 6 | } 7 | } -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/field/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-cell": "../cell/index", 5 | "van-icon": "../icon/index" 6 | } 7 | } -------------------------------------------------------------------------------- /junior/dist/accordion-group/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /packageA/pages/financedetail/financedetail.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "珠三角设代plus", 3 | "usingComponents": { 4 | "wxc-avatar": "../../../packages/@minui/wxc-avatar/dist/index" 5 | } 6 | } -------------------------------------------------------------------------------- /packages/@minui/wxc-avatar/dist/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "wxc-badge": "../../wxc-badge/dist/index", 4 | "wxc-cc": "../../wxc-cc/dist/index" 5 | }, 6 | "component": true 7 | } -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/button/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-loading": "../loading/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/image/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-loading": "../loading/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/popup/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-overlay": "../overlay/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/submit-bar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-button": "../button/index", 5 | "van-icon": "../icon/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/tabbar-item/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-info": "../info/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/uploader/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-loading": "../loading/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /dist/date-picker/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "wux-popup": "../popup/index", 5 | "wux-date-picker-view": "../date-picker-view/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /junior/dist/backdrop/index.wxss: -------------------------------------------------------------------------------- 1 | .wux-backdrop{background:rgba(0,0,0,.4)}.wux-backdrop,.wux-backdrop--transparent{position:fixed;z-index:1000;top:0;right:0;left:0;bottom:0}.wux-backdrop--transparent{background:0 0} -------------------------------------------------------------------------------- /junior/dist/multi-picker-view/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "wux-picker-view": "../picker-view/index", 5 | "wux-spin": "../spin/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /junior/dist/popup/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "wux-animation-group": "../animation-group/index", 5 | "wux-backdrop": "../backdrop/index" 6 | } 7 | } -------------------------------------------------------------------------------- /junior/packages/@minui/wxc-avatar/dist/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "wxc-badge": "../../wxc-badge/dist/index", 4 | "wxc-cc": "../../wxc-cc/dist/index" 5 | }, 6 | "component": true 7 | } -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/button/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-loading": "../loading/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/dialog/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-popup": "../popup/index", 5 | "van-button": "../button/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/info/index.wxml: -------------------------------------------------------------------------------- 1 | {{ info }} 6 | -------------------------------------------------------------------------------- /pages/bbs/bbs.wxss: -------------------------------------------------------------------------------- 1 | /* pages/calendar/Calendar.wxss */ 2 | 3 | 4 | /* 模态框 */ 5 | .tellinput { 6 | border: 1px solid #efeff4; 7 | } 8 | 9 | .tellsection input { 10 | color: #000; 11 | width: 100%; 12 | } -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/goods-action-icon/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-button": "../button/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/picker/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "picker-column": "../picker-column/index", 5 | "loading": "../loading/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /dist/radio/index.less: -------------------------------------------------------------------------------- 1 | @import "../styles/mixins/index.less"; 2 | @import "../styles/themes/index.less"; 3 | 4 | .@{wux-prefix}-radio { 5 | &__selectable { 6 | position: static !important; 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /junior/dist/date-picker/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "wux-popup": "../popup/index", 5 | "wux-date-picker-view": "../date-picker-view/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /dist/date-picker-view/locales/en.js: -------------------------------------------------------------------------------- 1 | "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var _default={year:"",month:"",day:"",hour:"",minute:"",am:"AM",pm:"PM"};exports.default=_default; -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/goods-action-icon/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-button": "../button/index" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /junior/pages/bbs/bbs.wxss: -------------------------------------------------------------------------------- 1 | /* pages/calendar/Calendar.wxss */ 2 | 3 | 4 | /* 模态框 */ 5 | .tellinput { 6 | border: 1px solid #efeff4; 7 | } 8 | 9 | .tellsection input { 10 | color: #000; 11 | width: 100%; 12 | } -------------------------------------------------------------------------------- /common/layout/foot.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 底部模板 4 | -------------------------------------------------------------------------------- /common/layout/head.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 头部模板 4 | -------------------------------------------------------------------------------- /dist/date-picker-view/locales/zh_CN.js: -------------------------------------------------------------------------------- 1 | "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var _default={year:"年",month:"月",day:"日",hour:"时",minute:"分",am:"上午",pm:"下午"};exports.default=_default; -------------------------------------------------------------------------------- /dist/date-picker-view/locales/zh_TW.js: -------------------------------------------------------------------------------- 1 | "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var _default={year:"年",month:"月",day:"日",hour:"時",minute:"分",am:"上午",pm:"下午"};exports.default=_default; -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/info/index.js: -------------------------------------------------------------------------------- 1 | import { VantComponent } from '../common/component'; 2 | VantComponent({ 3 | props: { 4 | info: null, 5 | customStyle: String 6 | } 7 | }); 8 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/tab/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-tab__pane{box-sizing:border-box;overflow-y:auto}.van-tab__pane--active{height:auto}.van-tab__pane--inactive{height:0;overflow:visible} -------------------------------------------------------------------------------- /junior/dist/date-picker-view/locales/en.js: -------------------------------------------------------------------------------- 1 | "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var _default={year:"",month:"",day:"",hour:"",minute:"",am:"AM",pm:"PM"};exports.default=_default; -------------------------------------------------------------------------------- /packages/@minui/wxc-badge/dist/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{value && type !== 'dot' ? value : ''}} 4 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/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 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/common/color.d.ts: -------------------------------------------------------------------------------- 1 | export declare const RED = "#f44"; 2 | export declare const BLUE = "#1989fa"; 3 | export declare const GREEN = "#07c160"; 4 | export declare const ORANGE = "#ff976a"; 5 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/goods-action/index.js: -------------------------------------------------------------------------------- 1 | import { VantComponent } from '../common/component'; 2 | import { safeArea } from '../mixins/safe-area'; 3 | VantComponent({ 4 | mixins: [safeArea()] 5 | }); 6 | -------------------------------------------------------------------------------- /junior/packages/@minui/wxc-badge/dist/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{value && type !== 'dot' ? value : ''}} 4 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/goods-action/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /junior/common/layout/foot.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 底部模板 4 | -------------------------------------------------------------------------------- /junior/common/layout/head.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 头部模板 4 | -------------------------------------------------------------------------------- /junior/dist/date-picker-view/locales/zh_CN.js: -------------------------------------------------------------------------------- 1 | "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var _default={year:"年",month:"月",day:"日",hour:"时",minute:"分",am:"上午",pm:"下午"};exports.default=_default; -------------------------------------------------------------------------------- /junior/dist/date-picker-view/locales/zh_TW.js: -------------------------------------------------------------------------------- 1 | "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var _default={year:"年",month:"月",day:"日",hour:"時",minute:"分",am:"上午",pm:"下午"};exports.default=_default; -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/mixins/safe-area.d.ts: -------------------------------------------------------------------------------- 1 | export declare const safeArea: ({ safeAreaInsetBottom, safeAreaInsetTop }?: { 2 | safeAreaInsetBottom?: boolean; 3 | safeAreaInsetTop?: boolean; 4 | }) => string; 5 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/common/index.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Entry of basic styles 3 | */ 4 | 5 | @import './style/var.less'; 6 | @import './style/ellipsis.less'; 7 | @import './style/clearfix.less'; 8 | @import './style/hairline.less'; 9 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/dropdown-item/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-popup": "../popup/index", 5 | "van-cell": "../cell/index", 6 | "van-icon": "../icon/index" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/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))} -------------------------------------------------------------------------------- /pages/logs/logs.js: -------------------------------------------------------------------------------- 1 | Page({ 2 | data:{ 3 | logs: [] 4 | }, 5 | onShow: function () { 6 | var logs = wx.getStorageSync('todo_logs') 7 | if (logs) { 8 | this.setData({ logs: logs.reverse() }) 9 | } 10 | }, 11 | }) 12 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/action-sheet/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-popup": "../popup/index", 6 | "van-loading": "../loading/index" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Binaries for programs and plugins 2 | *.exe 3 | *.exe~ 4 | *.dll 5 | *.so 6 | *.dylib 7 | 8 | # Test binary, build with `go test -c` 9 | *.test 10 | 11 | # Output of the go coverage tool, specifically when used with LiteIDE 12 | *.out 13 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/action-sheet/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-popup": "../popup/index", 6 | "van-loading": "../loading/index" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/goods-action/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/goods-action/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-goods-action{position:fixed;right:0;bottom:0;left:0;display:-webkit-flex;display:flex;background-color:#fff}.van-goods-action--safe{padding-bottom:34px} -------------------------------------------------------------------------------- /junior/pages/logs/logs.js: -------------------------------------------------------------------------------- 1 | Page({ 2 | data:{ 3 | logs: [] 4 | }, 5 | onShow: function () { 6 | var logs = wx.getStorageSync('todo_logs') 7 | if (logs) { 8 | this.setData({ logs: logs.reverse() }) 9 | } 10 | }, 11 | }) 12 | -------------------------------------------------------------------------------- /packageA/pages/logs/logs.js: -------------------------------------------------------------------------------- 1 | Page({ 2 | data:{ 3 | logs: [] 4 | }, 5 | onShow: function () { 6 | var logs = wx.getStorageSync('todo_logs') 7 | if (logs) { 8 | this.setData({ logs: logs.reverse() }) 9 | } 10 | }, 11 | }) 12 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/tree-select/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-sidebar": "../sidebar/index", 6 | "van-sidebar-item": "../sidebar-item/index" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/common/layout/foot.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 底部模板 4 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/common/layout/head.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 头部模板 4 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/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 | -------------------------------------------------------------------------------- /dist/avatar/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /junior/pages/editortopic/editortopic.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "珠三角设代plus●编辑", 3 | "usingComponents": { 4 | "wux-cell-group": "../../dist/cell-group/index", 5 | "wux-cell": "../../dist/cell/index", 6 | "wux-input": "../../dist/input/index" 7 | } 8 | } -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/common/style/theme.less: -------------------------------------------------------------------------------- 1 | @import (reference) './var.less'; 2 | 3 | .theme(@property, @imp) { 4 | @{property}: e(replace(@imp, '@([^() ]+)', '@{$1}', 'ig')); 5 | @{property}: e(replace(@imp, '@([^() ]+)', 'var(--$1, @{$1})', 'ig')); 6 | } 7 | -------------------------------------------------------------------------------- /junior/dist/avatar/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/col/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/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)} -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/col/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /packageA/pages/editortopic/editortopic.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "珠三角设代plus●编辑", 3 | "usingComponents": { 4 | "wux-cell-group": "../../../dist/cell-group/index", 5 | "wux-cell": "../../../dist/cell/index", 6 | "wux-input": "../../../dist/input/index" 7 | } 8 | } -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/cell-group/index.wxml: -------------------------------------------------------------------------------- 1 | 5 | {{ title }} 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /dist/multi-picker-view/utils.js: -------------------------------------------------------------------------------- 1 | "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var _utils=require("../picker-view/utils");Object.keys(_utils).forEach(function(e){"default"!==e&&"__esModule"!==e&&Object.defineProperty(exports,e,{enumerable:!0,get:function(){return _utils[e]}})}); -------------------------------------------------------------------------------- /packageA/pages/diaryeditor/diaryeditor.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "珠三角设代plus●编辑", 3 | "usingComponents": { 4 | "wux-cell-group": "../../../dist/cell-group/index", 5 | "wux-cell": "../../../dist/cell/index", 6 | "wux-input": "../../../dist/input/index" 7 | } 8 | } -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/common/color.js: -------------------------------------------------------------------------------- 1 | export const RED = '#ee0a24'; 2 | export const BLUE = '#1989fa'; 3 | export const WHITE = '#fff'; 4 | export const GREEN = '#07c160'; 5 | export const ORANGE = '#ff976a'; 6 | export const GRAY = '#323233'; 7 | export const GRAY_DARK = '#969799'; 8 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/common/color.ts: -------------------------------------------------------------------------------- 1 | export const RED = '#ee0a24'; 2 | export const BLUE = '#1989fa'; 3 | export const WHITE = '#fff'; 4 | export const GREEN = '#07c160'; 5 | export const ORANGE = '#ff976a'; 6 | export const GRAY = '#323233'; 7 | export const GRAY_DARK = '#969799'; 8 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/common/style/ellipsis.less: -------------------------------------------------------------------------------- 1 | @import './mixins/ellipsis.less'; 2 | 3 | .van-ellipsis { 4 | .ellipsis(); 5 | } 6 | 7 | .van-multi-ellipsis--l2 { 8 | .multi-ellipsis(2); 9 | } 10 | 11 | .van-multi-ellipsis--l3 { 12 | .multi-ellipsis(3); 13 | } 14 | -------------------------------------------------------------------------------- /junior/dist/multi-picker-view/utils.js: -------------------------------------------------------------------------------- 1 | "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var _utils=require("../picker-view/utils");Object.keys(_utils).forEach(function(e){"default"!==e&&"__esModule"!==e&&Object.defineProperty(exports,e,{enumerable:!0,get:function(){return _utils[e]}})}); -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/circle/canvas.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | declare type CanvasContext = WechatMiniprogram.CanvasContext; 3 | export declare function adaptor( 4 | ctx: CanvasRenderingContext2D 5 | ): CanvasContext & CanvasRenderingContext2D; 6 | export {}; 7 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/info/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{ dot ? '' : info }} 8 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/toast/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-loading": "../loading/index", 6 | "van-overlay": "../overlay/index", 7 | "van-transition": "../transition/index" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/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 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/cell-group/index.wxml: -------------------------------------------------------------------------------- 1 | 5 | {{ title }} 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/tag/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pages/bbs/bbs.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "珠三角设代plus●公告", 3 | "usingComponents": { 4 | "calendar": "../../component/calendar/index", 5 | "wux-cell-group": "../../dist/cell-group/index", 6 | "wux-cell": "../../dist/cell/index", 7 | "wux-input": "../../dist/input/index" 8 | } 9 | } -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/toast/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-icon": "../icon/index", 5 | "van-loading": "../loading/index", 6 | "van-overlay": "../overlay/index", 7 | "van-transition": "../transition/index" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /junior/pages/bbs/bbs.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "珠三角设代plus●公告", 3 | "usingComponents": { 4 | "calendar": "../../component/calendar/index", 5 | "wux-cell-group": "../../dist/cell-group/index", 6 | "wux-cell": "../../dist/cell/index", 7 | "wux-input": "../../dist/input/index" 8 | } 9 | } -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/tab/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/panel/index.js: -------------------------------------------------------------------------------- 1 | import { VantComponent } from '../common/component'; 2 | VantComponent({ 3 | classes: ['header-class', 'footer-class'], 4 | props: { 5 | desc: String, 6 | title: String, 7 | status: String, 8 | useFooterSlot: Boolean, 9 | }, 10 | }); 11 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/panel/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-panel{background:#fff;background:var(--panel-background-color,#fff)}.van-panel__header-value{color:#ee0a24;color:var(--panel-header-value-color,#ee0a24)}.van-panel__footer{padding:8px 16px;padding:var(--panel-footer-padding,8px 16px)} -------------------------------------------------------------------------------- /dist/cell-group/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | {{ title }} 3 | 4 | 5 | 6 | {{ label }} 7 | 8 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/tab/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';:host{-webkit-flex-shrink:0;flex-shrink:0;width:100%}.van-tab__pane,:host{box-sizing:border-box}.van-tab__pane{overflow-y:auto;-webkit-overflow-scrolling:touch}.van-tab__pane--active{height:auto}.van-tab__pane--inactive{height:0;overflow:visible} -------------------------------------------------------------------------------- /dist/animation-group/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /junior/dist/cell-group/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | {{ title }} 3 | 4 | 5 | 6 | {{ label }} 7 | 8 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/circle/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-circle{position:relative;display:inline-block;text-align:center}.van-circle__text{position:absolute;top:50%;left:0;width:100%;-webkit-transform:translateY(-50%);transform:translateY(-50%);color:#323233;color:var(--circle-text-color,#323233)} -------------------------------------------------------------------------------- /junior/dist/animation-group/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /common/layout/foot.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | Object.defineProperty(exports, "__esModule", { 4 | value: true 5 | }); 6 | exports.default = Component({}); 7 | //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsImZpbGUiOiJmb290Lnd4YyIsInNvdXJjZXNDb250ZW50IjpbXX0= -------------------------------------------------------------------------------- /common/layout/head.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | Object.defineProperty(exports, "__esModule", { 4 | value: true 5 | }); 6 | exports.default = Component({}); 7 | //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsImZpbGUiOiJoZWFkLnd4YyIsInNvdXJjZXNDb250ZW50IjpbXX0= -------------------------------------------------------------------------------- /common/layout/head.wxss: -------------------------------------------------------------------------------- 1 | .head { 2 | height: 80rpx; 3 | background-color:#b8e1f6; 4 | display: flex; 5 | align-items: center; 6 | justify-content: center; 7 | } 8 | .head-icon { 9 | width: 60rpx; 10 | height: 60rpx; 11 | } 12 | .head-text { 13 | color: #666; 14 | font-size: 26rpx; 15 | padding-left: 15rpx; 16 | } -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/dialog/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "van-popup": "../popup/index", 5 | "van-button": "../button/index", 6 | "van-goods-action": "../goods-action//index", 7 | "van-goods-action-button": "../goods-action-button/index" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/picker-column/index.wxs: -------------------------------------------------------------------------------- 1 | function isObj(x) { 2 | var type = typeof x; 3 | return x !== null && (type === 'object' || type === 'function'); 4 | } 5 | 6 | module.exports = function (option, valueKey) { 7 | return isObj(option) && option[valueKey] != null ? option[valueKey] : option; 8 | } 9 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/wxs/utils.wxs: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | var bem = require('./bem.wxs').bem; 3 | var memoize = require('./memoize.wxs').memoize; 4 | var addUnit = require('./add-unit.wxs').addUnit; 5 | 6 | module.exports = { 7 | bem: memoize(bem), 8 | memoize: memoize, 9 | addUnit: addUnit 10 | }; 11 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/mixins/page-scroll.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | declare type IPageScrollOption = WechatMiniprogram.Page.IPageScrollOption; 3 | declare type Scroller = (event: IPageScrollOption) => void; 4 | export declare const pageScrollMixin: (scroller: Scroller) => string; 5 | export {}; 6 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/overlay/index.wxml: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /junior/common/layout/head.wxss: -------------------------------------------------------------------------------- 1 | .head { 2 | height: 80rpx; 3 | background-color:#b8e1f6; 4 | display: flex; 5 | align-items: center; 6 | justify-content: center; 7 | } 8 | .head-icon { 9 | width: 60rpx; 10 | height: 60rpx; 11 | } 12 | .head-text { 13 | color: #666; 14 | font-size: 26rpx; 15 | padding-left: 15rpx; 16 | } -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/tabbar/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /junior/common/layout/foot.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | Object.defineProperty(exports, "__esModule", { 4 | value: true 5 | }); 6 | exports.default = Component({}); 7 | //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsImZpbGUiOiJmb290Lnd4YyIsInNvdXJjZXNDb250ZW50IjpbXX0= -------------------------------------------------------------------------------- /junior/common/layout/head.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | Object.defineProperty(exports, "__esModule", { 4 | value: true 5 | }); 6 | exports.default = Component({}); 7 | //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsImZpbGUiOiJoZWFkLnd4YyIsInNvdXJjZXNDb250ZW50IjpbXX0= -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/calendar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "header": "./components/header/index", 5 | "month": "./components/month/index", 6 | "van-button": "../button/index", 7 | "van-popup": "../popup/index", 8 | "van-toast": "../toast/index" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/common/component.d.ts: -------------------------------------------------------------------------------- 1 | import { VantComponentOptions, CombinedComponentInstance } from '../definitions/index'; 2 | declare function VantComponent(vantOptions?: VantComponentOptions>): void; 3 | export { VantComponent }; 4 | -------------------------------------------------------------------------------- /junior/README.md: -------------------------------------------------------------------------------- 1 | # 云开发 quickstart 2 | 3 | 这是云开发的快速启动指引,其中演示了如何上手使用云开发的三大基础能力: 4 | 5 | - 数据库:一个既可在小程序前端操作,也能在云函数中读写的 JSON 文档型数据库 6 | - 文件存储:在小程序前端直接上传/下载云端文件,在云开发控制台可视化管理 7 | - 云函数:在云端运行的代码,微信私有协议天然鉴权,开发者只需编写业务逻辑代码 8 | 9 | ## 参考文档 10 | 11 | - [云开发文档](https://developers.weixin.qq.com/miniprogram/dev/wxcloud/basis/getting-started.html) 12 | 13 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/overlay/index.wxml: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /dist/helpers/mergeOptionsToData.js: -------------------------------------------------------------------------------- 1 | "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var mergeOptionsToData=function(e){var t=0 -1; 7 | } 8 | 9 | return activeList === itemId; 10 | } 11 | 12 | module.exports.isActive = isActive; 13 | -------------------------------------------------------------------------------- /dist/helpers/debounce.js: -------------------------------------------------------------------------------- 1 | "use strict";function debounce(t,n,u){function r(){var e=+new Date-i;e(vantOptions?: VantComponentOptions>): void; 3 | export { VantComponent }; 4 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/tabbar/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-tabbar{display:-webkit-flex;display:flex;box-sizing:initial;width:100%;height:50px;height:var(--tabbar-height,50px);background-color:#fff;background-color:var(--tabbar-background-color,#fff)}.van-tabbar--fixed{position:fixed;bottom:0;left:0}.van-tabbar--safe{padding-bottom:env(safe-area-inset-bottom)} -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/transition/index.wxml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /packageA/pages/diary/diary.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "珠三角设代plus●日志", 3 | "usingComponents": { 4 | "wux-cell-group": "../../../dist/cell-group/index", 5 | "wux-cell": "../../../dist/cell/index", 6 | "wux-input": "../../../dist/input/index", 7 | "wux-date-picker": "../../../dist/date-picker/index", 8 | "wux-button": "../../../dist/button/index" 9 | } 10 | } -------------------------------------------------------------------------------- /pages/logs/logs.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Name: {{ item.name }} 5 | {{ item.action }} 6 | [{{ item.timestamp }}] 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /common/layout/foot.wxss: -------------------------------------------------------------------------------- 1 | .foot { 2 | height: 80rpx; 3 | background-color: #b8e1f6; 4 | display: flex; 5 | align-items: center; 6 | justify-content: center; 7 | position: fixed; 8 | width: 100%; 9 | bottom: 0; 10 | } 11 | .foot-icon { 12 | width: 60rpx; 13 | height: 60rpx; 14 | } 15 | .foot-text { 16 | color: #666; 17 | font-size: 26rpx; 18 | padding-left: 15rpx; 19 | } -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/tab/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/transition/index.wxml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /junior/pages/logs/logs.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Name: {{ item.name }} 5 | {{ item.action }} 6 | [{{ item.timestamp }}] 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /junior/common/layout/foot.wxss: -------------------------------------------------------------------------------- 1 | .foot { 2 | height: 80rpx; 3 | background-color: #b8e1f6; 4 | display: flex; 5 | align-items: center; 6 | justify-content: center; 7 | position: fixed; 8 | width: 100%; 9 | bottom: 0; 10 | } 11 | .foot-icon { 12 | width: 60rpx; 13 | height: 60rpx; 14 | } 15 | .foot-text { 16 | color: #666; 17 | font-size: 26rpx; 18 | padding-left: 15rpx; 19 | } -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/wxs/utils.wxs: -------------------------------------------------------------------------------- 1 | var bem = require('./bem.wxs').bem; 2 | var memoize = require('./memoize.wxs').memoize; 3 | 4 | function isSrc(url) { 5 | return url.indexOf('http') === 0 || url.indexOf('data:image') === 0 || url.indexOf('//') === 0; 6 | } 7 | 8 | module.exports = { 9 | bem: memoize(bem), 10 | isSrc: isSrc, 11 | memoize: memoize 12 | }; 13 | -------------------------------------------------------------------------------- /packageA/pages/logs/logs.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Name: {{ item.name }} 5 | {{ item.action }} 6 | [{{ item.timestamp }}] 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /dist/helpers/arrayTreeFilter.js: -------------------------------------------------------------------------------- 1 | "use strict";function arrayTreeFilter(e,r,t){(t=t||{}).childrenKeyName=t.childrenKeyName||"children";var a=e||[],l=[],i=0;do{var d=a.filter(function(e){return r(e,i)})[0];if(!d)break;l.push(d),a=d[t.childrenKeyName]||[],i+=1}while(0 2 | 3 | 4 | -------------------------------------------------------------------------------- /packageA/pages/searchdraw/searchdraw.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "珠三角设代plus●search", 3 | "enablePullDownRefresh": true, 4 | "usingComponents": { 5 | "wxc-avatar": "../../../packages/@minui/wxc-avatar/dist/index", 6 | "wux-icon": "../../../dist/icon/index", 7 | "wux-avatar": "../../../dist/avatar/index", 8 | "van-icon": "../../../component/vant/miniprogram_npm/vant-weapp/icon/index" 9 | } 10 | } -------------------------------------------------------------------------------- /utils/promise.util.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 将wx的callback形式的API转换成支持Promise的形式 3 | */ 4 | module.exports = { 5 | 6 | promisify: api => { 7 | return (options, ...params) => { 8 | return new Promise((resolve, reject) => { 9 | const extras = { 10 | success: resolve, 11 | fail: reject 12 | } 13 | api({ ...options, ...extras }, ...params) 14 | }) 15 | } 16 | } 17 | 18 | } -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/share-sheet/options.wxs: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | var PRESET_ICONS = ['qq', 'weibo', 'wechat', 'link', 'qrcode', 'poster']; 3 | 4 | function getIconURL(icon) { 5 | if (PRESET_ICONS.indexOf(icon) !== -1) { 6 | return 'https://img.yzcdn.cn/vant/share-icon-' + icon + '.png'; 7 | } 8 | 9 | return icon; 10 | } 11 | 12 | module.exports = { 13 | getIconURL: getIconURL, 14 | }; 15 | -------------------------------------------------------------------------------- /junior/utils/promise.util.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 将wx的callback形式的API转换成支持Promise的形式 3 | */ 4 | module.exports = { 5 | 6 | promisify: api => { 7 | return (options, ...params) => { 8 | return new Promise((resolve, reject) => { 9 | const extras = { 10 | success: resolve, 11 | fail: reject 12 | } 13 | api({ ...options, ...extras }, ...params) 14 | }) 15 | } 16 | } 17 | 18 | } -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/common/layout/foot.wxss: -------------------------------------------------------------------------------- 1 | .foot { 2 | height: 80rpx; 3 | background-color: #b8e1f6; 4 | display: flex; 5 | align-items: center; 6 | justify-content: center; 7 | position: fixed; 8 | width: 100%; 9 | bottom: 0; 10 | } 11 | .foot-icon { 12 | width: 60rpx; 13 | height: 60rpx; 14 | } 15 | .foot-text { 16 | color: #666; 17 | font-size: 26rpx; 18 | padding-left: 15rpx; 19 | } -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/mixins/link.js: -------------------------------------------------------------------------------- 1 | export const link = Behavior({ 2 | properties: { 3 | url: String, 4 | linkType: { 5 | type: String, 6 | value: 'navigateTo', 7 | }, 8 | }, 9 | methods: { 10 | jumpLink(urlKey = 'url') { 11 | const url = this.data[urlKey]; 12 | if (url) { 13 | wx[this.data.linkType]({ url }); 14 | } 15 | }, 16 | }, 17 | }); 18 | -------------------------------------------------------------------------------- /dist/date-picker-view/locales/index.js: -------------------------------------------------------------------------------- 1 | "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var _en=_interopRequireDefault(require("./en")),_zh_CN=_interopRequireDefault(require("./zh_CN")),_zh_TW=_interopRequireDefault(require("./zh_TW"));function _interopRequireDefault(e){return e&&e.__esModule?e:{default:e}}var _default={en:_en.default,zh_CN:_zh_CN.default,zh_TW:_zh_TW.default};exports.default=_default; -------------------------------------------------------------------------------- /junior/component/vant/miniprogram_npm/vant-weapp/goods-action-icon/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-goods-action-icon{width:50px!important;border:none!important}.van-goods-action-icon__content{display:-webkit-flex;display:flex;height:100%;font-size:10px;line-height:1;color:#7d7e80;-webkit-flex-direction:column;flex-direction:column;-webkit-justify-content:center;justify-content:center}.van-goods-action-icon__icon{margin-bottom:4px} -------------------------------------------------------------------------------- /min.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "npm": { 3 | "dest": "dist/packages" 4 | }, 5 | "compilers": { 6 | "babel": { 7 | "sourceMaps": "inline", 8 | "presets": [ 9 | "env" 10 | ], 11 | "plugins": [ 12 | "syntax-export-extensions", 13 | "transform-class-properties", 14 | "transform-decorators-legacy", 15 | "transform-export-extensions" 16 | ] 17 | } 18 | } 19 | } -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/divider/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/sticky/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /junior/dist/date-picker-view/locales/index.js: -------------------------------------------------------------------------------- 1 | "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var _en=_interopRequireDefault(require("./en")),_zh_CN=_interopRequireDefault(require("./zh_CN")),_zh_TW=_interopRequireDefault(require("./zh_TW"));function _interopRequireDefault(e){return e&&e.__esModule?e:{default:e}}var _default={en:_en.default,zh_CN:_zh_CN.default,zh_TW:_zh_TW.default};exports.default=_default; -------------------------------------------------------------------------------- /junior/min.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "npm": { 3 | "dest": "dist/packages" 4 | }, 5 | "compilers": { 6 | "babel": { 7 | "sourceMaps": "inline", 8 | "presets": [ 9 | "env" 10 | ], 11 | "plugins": [ 12 | "syntax-export-extensions", 13 | "transform-class-properties", 14 | "transform-decorators-legacy", 15 | "transform-export-extensions" 16 | ] 17 | } 18 | } 19 | } -------------------------------------------------------------------------------- /junior/pages/mine/mine.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "青少儿书画●个人中心", 3 | "usingComponents": { 4 | "van-button": "../../component/vant/miniprogram_npm/vant-weapp/button/index", 5 | "van-icon": "../../component/vant/miniprogram_npm/vant-weapp/icon/index", 6 | "van-cell": "../../component/vant/miniprogram_npm/vant-weapp/cell/index", 7 | "van-cell-group": "../../component/vant/miniprogram_npm/vant-weapp/cell-group/index" 8 | } 9 | } -------------------------------------------------------------------------------- /pages/mine/mine.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "珠三角设代plus●个人中心", 3 | "usingComponents": { 4 | "van-button": "../../component/vant/miniprogram_npm/vant-weapp/button/index", 5 | "van-icon": "../../component/vant/miniprogram_npm/vant-weapp/icon/index", 6 | "van-cell": "../../component/vant/miniprogram_npm/vant-weapp/cell/index", 7 | "van-cell-group": "../../component/vant/miniprogram_npm/vant-weapp/cell-group/index" 8 | } 9 | } -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/index-anchor/index.wxml: -------------------------------------------------------------------------------- 1 | 5 | 9 | 10 | 11 | {{ index }} 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /junior/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "minui", 3 | "version": "1.0.8", 4 | "lockfileVersion": 1, 5 | "requires": true, 6 | "dependencies": { 7 | "@minui/wxc-icon": { 8 | "version": "1.0.9", 9 | "resolved": "https://registry.npmjs.org/@minui/wxc-icon/-/wxc-icon-1.0.9.tgz", 10 | "integrity": "sha512-ebEzCdGtdECW7fbxREHuCeeIJ52FKhjQneZqwvwU13jHs1Ic3tHZ1vcEcgkaexYD2zfhBilcbHiZpe3jbxssMg==" 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /packageA/pages/financelist/financelist.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "珠三角设代plus●财务", 3 | "enablePullDownRefresh": true, 4 | "usingComponents": { 5 | "wxc-avatar": "../../../packages/@minui/wxc-avatar/dist/index", 6 | "wux-icon": "../../../dist/icon/index", 7 | "wux-avatar": "../../../dist/avatar/index", 8 | "wux-cell-group": "../../../dist/cell-group/index", 9 | "wux-cell": "../../../dist/cell/index" 10 | } 11 | } -------------------------------------------------------------------------------- /packageC/pages/busycheckin/busycheckin.wxss: -------------------------------------------------------------------------------- 1 | /* packageC/pages/busycheckin/busycheckin.wxss */ 2 | .searchbar-result{ 3 | margin-top: 0; 4 | font-size: 14px; 5 | } 6 | .searchbar-result:before{ 7 | display: none; 8 | } 9 | .weui-cell{ 10 | padding: 12px 15px 12px 35px; 11 | } 12 | .search_title { 13 | font-size: 15px; 14 | color: '#fff' 15 | } 16 | .search_desc{ 17 | font-size: 10px; 18 | color: '#eee' 19 | } 20 | button {margin: 10px;} -------------------------------------------------------------------------------- /component/vant/miniprogram_npm/vant-weapp/calendar/components/header/index.js: -------------------------------------------------------------------------------- 1 | import { VantComponent } from '../../../common/component'; 2 | VantComponent({ 3 | props: { 4 | title: { 5 | type: String, 6 | value: '日期选择', 7 | }, 8 | subtitle: String, 9 | showTitle: Boolean, 10 | showSubtitle: Boolean, 11 | }, 12 | data: { 13 | weekdays: ['日', '一', '二', '三', '四', '五', '六'], 14 | }, 15 | methods: {}, 16 | }); 17 | --------------------------------------------------------------------------------