├── mpvue
├── static
│ ├── .gitkeep
│ └── images
│ │ ├── dt.png
│ │ ├── kf.png
│ │ ├── mp.png
│ │ ├── wx.png
│ │ ├── dta.png
│ │ ├── mpa.png
│ │ ├── mpj.png
│ │ ├── pro.png
│ │ ├── proa.png
│ │ ├── pyq.png
│ │ ├── txl.png
│ │ ├── about.png
│ │ ├── abouta.png
│ │ ├── posters.png
│ │ ├── share.png
│ │ └── nodata-message.png
├── .eslintignore
├── src
│ ├── pages
│ │ ├── about
│ │ │ └── main.js
│ │ ├── card
│ │ │ └── main.js
│ │ ├── index
│ │ │ └── main.js
│ │ ├── news
│ │ │ └── main.js
│ │ ├── cardposter
│ │ │ └── main.js
│ │ ├── news-detail
│ │ │ └── main.js
│ │ ├── products
│ │ │ └── main.js
│ │ └── authorization
│ │ │ └── main.js
│ ├── main.js
│ ├── components
│ │ ├── support.vue
│ │ └── card.vue
│ ├── utils
│ │ ├── store.js
│ │ ├── index.js
│ │ ├── request.js
│ │ ├── image.js
│ │ └── axios.js
│ └── App.vue
├── .postcssrc.js
├── config
│ ├── dev.env.js
│ └── prod.env.js
├── .editorconfig
├── package.swan.json
├── index.html
├── build
│ ├── dev-client.js
│ └── vue-loader.conf.js
├── .babelrc
├── project.config.json
└── .eslintrc.js
├── native
├── miniprogram_npm
│ ├── @vant
│ │ └── weapp
│ │ │ ├── common
│ │ │ ├── style
│ │ │ │ ├── theme.wxss
│ │ │ │ ├── var.wxss
│ │ │ │ ├── mixins
│ │ │ │ │ ├── clearfix.wxss
│ │ │ │ │ ├── ellipsis.wxss
│ │ │ │ │ └── hairline.wxss
│ │ │ │ ├── clearfix.wxss
│ │ │ │ ├── ellipsis.wxss
│ │ │ │ └── hairline.wxss
│ │ │ ├── color.js
│ │ │ └── index.wxss
│ │ │ ├── checkbox-group
│ │ │ ├── index.wxml
│ │ │ ├── index.wxss
│ │ │ ├── index.json
│ │ │ └── index.js
│ │ │ ├── radio-group
│ │ │ ├── index.wxml
│ │ │ ├── index.wxss
│ │ │ ├── index.json
│ │ │ └── index.js
│ │ │ ├── area
│ │ │ ├── index.wxss
│ │ │ ├── index.json
│ │ │ ├── index.wxs
│ │ │ └── index.wxml
│ │ │ ├── circle
│ │ │ ├── index.json
│ │ │ ├── index.wxss
│ │ │ └── index.wxml
│ │ │ ├── col
│ │ │ ├── index.json
│ │ │ ├── index.wxml
│ │ │ └── index.js
│ │ │ ├── collapse
│ │ │ ├── index.wxss
│ │ │ ├── index.json
│ │ │ └── index.wxml
│ │ │ ├── grid
│ │ │ ├── index.json
│ │ │ ├── index.wxss
│ │ │ ├── index.wxml
│ │ │ └── index.wxs
│ │ │ ├── info
│ │ │ ├── index.json
│ │ │ ├── index.wxml
│ │ │ ├── index.js
│ │ │ └── index.wxss
│ │ │ ├── row
│ │ │ ├── index.json
│ │ │ ├── index.wxss
│ │ │ ├── index.wxml
│ │ │ └── index.js
│ │ │ ├── slider
│ │ │ ├── index.json
│ │ │ ├── index.wxs
│ │ │ ├── index.wxml
│ │ │ └── index.wxss
│ │ │ ├── sticky
│ │ │ ├── index.json
│ │ │ ├── index.wxss
│ │ │ ├── index.wxml
│ │ │ └── index.wxs
│ │ │ ├── tab
│ │ │ ├── index.json
│ │ │ ├── index.wxml
│ │ │ └── index.wxss
│ │ │ ├── tabbar
│ │ │ ├── index.json
│ │ │ ├── index.wxss
│ │ │ └── index.wxml
│ │ │ ├── cell-group
│ │ │ ├── index.json
│ │ │ ├── index.wxml
│ │ │ ├── index.js
│ │ │ └── index.wxss
│ │ │ ├── count-down
│ │ │ ├── index.json
│ │ │ ├── index.wxml
│ │ │ └── index.wxss
│ │ │ ├── datetime-picker
│ │ │ ├── index.wxss
│ │ │ ├── index.json
│ │ │ └── index.wxml
│ │ │ ├── index-bar
│ │ │ ├── index.json
│ │ │ ├── index.wxss
│ │ │ └── index.wxml
│ │ │ ├── loading
│ │ │ ├── index.json
│ │ │ ├── index.js
│ │ │ └── index.wxml
│ │ │ ├── progress
│ │ │ ├── index.json
│ │ │ ├── index.wxml
│ │ │ ├── index.wxss
│ │ │ └── index.wxs
│ │ │ ├── sidebar
│ │ │ ├── index.json
│ │ │ ├── index.wxml
│ │ │ └── index.wxss
│ │ │ ├── stepper
│ │ │ └── index.json
│ │ │ ├── swipe-cell
│ │ │ ├── index.json
│ │ │ ├── index.wxss
│ │ │ └── index.wxml
│ │ │ ├── transition
│ │ │ ├── index.json
│ │ │ ├── index.wxml
│ │ │ └── index.js
│ │ │ ├── dropdown-menu
│ │ │ ├── index.json
│ │ │ ├── index.wxs
│ │ │ └── index.wxml
│ │ │ ├── goods-action
│ │ │ ├── index.json
│ │ │ ├── index.wxml
│ │ │ ├── index.wxss
│ │ │ └── index.js
│ │ │ ├── index-anchor
│ │ │ ├── index.json
│ │ │ ├── index.wxml
│ │ │ ├── index.wxss
│ │ │ └── index.js
│ │ │ ├── picker-column
│ │ │ ├── index.json
│ │ │ ├── index.wxs
│ │ │ ├── index.wxss
│ │ │ └── index.wxml
│ │ │ ├── share-sheet
│ │ │ ├── options.json
│ │ │ ├── index.json
│ │ │ ├── index.wxs
│ │ │ ├── options.wxs
│ │ │ ├── options.wxml
│ │ │ ├── index.wxss
│ │ │ ├── options.js
│ │ │ └── options.wxss
│ │ │ ├── calendar
│ │ │ ├── components
│ │ │ │ ├── header
│ │ │ │ │ ├── index.json
│ │ │ │ │ ├── index.js
│ │ │ │ │ ├── index.wxml
│ │ │ │ │ └── index.wxss
│ │ │ │ └── month
│ │ │ │ │ └── index.json
│ │ │ ├── index.json
│ │ │ ├── utils.wxs
│ │ │ ├── index.wxs
│ │ │ ├── index.wxss
│ │ │ └── index.wxml
│ │ │ ├── empty
│ │ │ ├── index.json
│ │ │ ├── index.wxml
│ │ │ ├── index.wxss
│ │ │ └── index.js
│ │ │ ├── divider
│ │ │ ├── index.json
│ │ │ ├── index.wxml
│ │ │ └── index.js
│ │ │ ├── skeleton
│ │ │ ├── index.json
│ │ │ ├── index.wxml
│ │ │ ├── index.wxss
│ │ │ └── index.js
│ │ │ ├── definitions
│ │ │ ├── index.js
│ │ │ └── weapp.js
│ │ │ ├── dropdown-item
│ │ │ ├── shared.js
│ │ │ ├── index.json
│ │ │ └── index.wxss
│ │ │ ├── card
│ │ │ └── index.json
│ │ │ ├── cell
│ │ │ ├── index.json
│ │ │ └── index.js
│ │ │ ├── icon
│ │ │ ├── index.json
│ │ │ ├── index.js
│ │ │ ├── index.wxml
│ │ │ └── index.wxs
│ │ │ ├── rate
│ │ │ ├── index.json
│ │ │ ├── index.wxss
│ │ │ └── index.wxml
│ │ │ ├── tag
│ │ │ ├── index.json
│ │ │ ├── index.wxml
│ │ │ └── index.js
│ │ │ ├── checkbox
│ │ │ ├── index.json
│ │ │ ├── index.wxs
│ │ │ └── index.wxml
│ │ │ ├── grid-item
│ │ │ ├── index.json
│ │ │ ├── index.wxs
│ │ │ └── index.wxml
│ │ │ ├── nav-bar
│ │ │ ├── index.json
│ │ │ └── index.wxs
│ │ │ ├── panel
│ │ │ ├── index.json
│ │ │ ├── index.wxss
│ │ │ ├── index.js
│ │ │ └── index.wxml
│ │ │ ├── radio
│ │ │ └── index.json
│ │ │ ├── search
│ │ │ └── index.json
│ │ │ ├── steps
│ │ │ ├── index.json
│ │ │ └── index.js
│ │ │ ├── collapse-item
│ │ │ └── index.json
│ │ │ ├── notice-bar
│ │ │ ├── index.json
│ │ │ └── index.wxml
│ │ │ ├── sidebar-item
│ │ │ ├── index.json
│ │ │ ├── index.wxml
│ │ │ └── index.js
│ │ │ ├── switch
│ │ │ ├── index.json
│ │ │ └── index.wxml
│ │ │ ├── notify
│ │ │ ├── index.json
│ │ │ ├── index.wxml
│ │ │ └── index.wxss
│ │ │ ├── overlay
│ │ │ ├── index.json
│ │ │ ├── index.wxss
│ │ │ ├── index.wxml
│ │ │ └── index.js
│ │ │ ├── goods-action-button
│ │ │ ├── index.json
│ │ │ └── index.wxml
│ │ │ ├── wxs
│ │ │ ├── array.wxs
│ │ │ ├── utils.wxs
│ │ │ ├── add-unit.wxs
│ │ │ ├── object.wxs
│ │ │ ├── style.wxs
│ │ │ └── bem.wxs
│ │ │ ├── field
│ │ │ ├── index.json
│ │ │ └── index.wxs
│ │ │ ├── button
│ │ │ ├── index.json
│ │ │ └── index.wxs
│ │ │ ├── image
│ │ │ ├── index.json
│ │ │ ├── index.wxs
│ │ │ ├── index.wxss
│ │ │ └── index.wxml
│ │ │ ├── popup
│ │ │ ├── index.json
│ │ │ ├── index.wxs
│ │ │ └── index.wxml
│ │ │ ├── tabbar-item
│ │ │ ├── index.json
│ │ │ ├── index.wxss
│ │ │ └── index.wxml
│ │ │ ├── tabs
│ │ │ └── index.json
│ │ │ ├── submit-bar
│ │ │ └── index.json
│ │ │ ├── uploader
│ │ │ ├── index.json
│ │ │ └── shared.js
│ │ │ ├── goods-action-icon
│ │ │ ├── index.json
│ │ │ ├── index.js
│ │ │ ├── index.wxss
│ │ │ └── index.wxml
│ │ │ ├── picker
│ │ │ ├── index.json
│ │ │ ├── shared.js
│ │ │ └── toolbar.wxml
│ │ │ ├── action-sheet
│ │ │ └── index.json
│ │ │ ├── tree-select
│ │ │ ├── index.json
│ │ │ ├── index.wxs
│ │ │ └── index.wxss
│ │ │ ├── toast
│ │ │ ├── index.json
│ │ │ ├── index.js
│ │ │ └── index.wxml
│ │ │ ├── dialog
│ │ │ └── index.json
│ │ │ └── mixins
│ │ │ ├── basic.js
│ │ │ ├── button.js
│ │ │ ├── link.js
│ │ │ └── open-type.js
│ └── wxa-plugin-canvas
│ │ ├── poster
│ │ ├── index.wxss
│ │ ├── index.json
│ │ ├── index.wxml
│ │ └── poster.js
│ │ └── index
│ │ ├── index.json
│ │ ├── index.wxml
│ │ └── index.wxss
├── pages
│ ├── card
│ │ └── main.json
│ ├── index
│ │ ├── main.json
│ │ └── main.wxml
│ ├── news
│ │ ├── main.json
│ │ └── main.wxml
│ ├── products
│ │ ├── main.json
│ │ └── main.wxml
│ ├── news-detail
│ │ ├── main.json
│ │ └── main.wxml
│ ├── user
│ │ ├── info.json
│ │ ├── info.wxml
│ │ └── info.wxss
│ └── cardposter
│ │ ├── main.json
│ │ ├── main.wxml
│ │ └── main.wxss
├── images
│ ├── fl.png
│ ├── fx.png
│ ├── gou.png
│ ├── qd.png
│ ├── cart.png
│ ├── fxad.jpeg
│ ├── gift.png
│ ├── kefu.png
│ ├── mp
│ │ ├── dt.png
│ │ ├── kf.png
│ │ ├── mp.png
│ │ ├── wx.png
│ │ ├── about.png
│ │ ├── dta.png
│ │ ├── mpa.png
│ │ ├── mpj.png
│ │ ├── pro.png
│ │ ├── proa.png
│ │ ├── pyq.png
│ │ ├── share.png
│ │ ├── txl.png
│ │ ├── abouta.png
│ │ ├── posters.png
│ │ └── nodata-message.png
│ ├── share.png
│ ├── add-addr.png
│ ├── gou-red.png
│ ├── ico-addr.png
│ ├── no-order.png
│ ├── nologin.png
│ ├── notice.png
│ ├── order
│ │ ├── pj.png
│ │ ├── fahuo.png
│ │ ├── shouhou.png
│ │ ├── shouhuo.png
│ │ └── topay.png
│ ├── upload.jpg
│ ├── addr-edit.png
│ ├── addr-line.png
│ ├── icon-cart.png
│ ├── more
│ │ ├── wave.png
│ │ ├── loading.gif
│ │ ├── title8.png
│ │ └── confirm-word1.png
│ ├── nav
│ │ ├── my-off.png
│ │ ├── my-on.png
│ │ ├── cart-off.png
│ │ ├── cart-on.png
│ │ ├── home-off.png
│ │ ├── home-on.png
│ │ ├── order-off.png
│ │ ├── order-on.png
│ │ ├── ic_catefory_normal.png
│ │ └── ic_catefory_pressed.png
│ ├── search-pic.png
│ ├── addr-active.png
│ ├── arrow-right.png
│ ├── ico-add-addr.png
│ ├── popup-close.png
│ ├── share
│ │ ├── share1.png
│ │ └── share2.png
│ └── order-details
│ │ ├── icon-ddfh.png
│ │ ├── icon-ddfk.png
│ │ ├── icon-ddgb.png
│ │ ├── icon-ddsh.png
│ │ ├── icon-jycg.png
│ │ ├── icon-wuliu.png
│ │ └── icon-address.png
├── components
│ └── login
│ │ ├── index.json
│ │ ├── sn.txt
│ │ └── index.wxml
├── wxParse
│ └── emojis
│ │ ├── 00.gif
│ │ ├── 01.gif
│ │ ├── 02.gif
│ │ ├── 03.gif
│ │ ├── 04.gif
│ │ ├── 05.gif
│ │ ├── 06.gif
│ │ ├── 07.gif
│ │ ├── 08.gif
│ │ ├── 09.gif
│ │ ├── 10.gif
│ │ ├── 11.gif
│ │ ├── 12.gif
│ │ ├── 13.gif
│ │ ├── 14.gif
│ │ ├── 15.gif
│ │ ├── 16.gif
│ │ ├── 17.gif
│ │ ├── 18.gif
│ │ ├── 19.gif
│ │ ├── 20.gif
│ │ ├── 21.gif
│ │ ├── 22.gif
│ │ ├── 23.gif
│ │ ├── 24.gif
│ │ ├── 25.gif
│ │ ├── 26.gif
│ │ ├── 27.gif
│ │ ├── 28.gif
│ │ ├── 29.gif
│ │ ├── 30.gif
│ │ ├── 31.gif
│ │ ├── 32.gif
│ │ ├── 33.gif
│ │ ├── 34.gif
│ │ ├── 35.gif
│ │ ├── 36.gif
│ │ ├── 37.gif
│ │ ├── 38.gif
│ │ ├── 39.gif
│ │ ├── 40.gif
│ │ ├── 41.gif
│ │ ├── 42.gif
│ │ ├── 43.gif
│ │ ├── 44.gif
│ │ ├── 45.gif
│ │ ├── 46.gif
│ │ ├── 47.gif
│ │ ├── 48.gif
│ │ ├── 49.gif
│ │ ├── 50.gif
│ │ ├── 51.gif
│ │ ├── 52.gif
│ │ ├── 53.gif
│ │ ├── 54.gif
│ │ ├── 55.gif
│ │ ├── 56.gif
│ │ ├── 57.gif
│ │ ├── 58.gif
│ │ ├── 59.gif
│ │ ├── 60.gif
│ │ ├── 61.gif
│ │ ├── 62.gif
│ │ ├── 63.gif
│ │ ├── 64.gif
│ │ ├── 65.gif
│ │ ├── 66.gif
│ │ ├── 67.gif
│ │ ├── 68.gif
│ │ ├── 69.gif
│ │ ├── 70.gif
│ │ ├── 71.gif
│ │ ├── 72.gif
│ │ ├── 73.gif
│ │ ├── 74.gif
│ │ ├── 75.gif
│ │ ├── 76.gif
│ │ ├── 77.gif
│ │ ├── 78.gif
│ │ ├── 79.gif
│ │ ├── 80.gif
│ │ ├── 81.gif
│ │ ├── 82.gif
│ │ ├── 83.gif
│ │ ├── 84.gif
│ │ ├── 85.gif
│ │ ├── 86.gif
│ │ ├── 87.gif
│ │ ├── 88.gif
│ │ ├── 89.gif
│ │ ├── 90.gif
│ │ ├── 91.gif
│ │ ├── 92.gif
│ │ ├── 93.gif
│ │ ├── 94.gif
│ │ ├── 95.gif
│ │ ├── 96.gif
│ │ ├── 97.gif
│ │ ├── 98.gif
│ │ ├── 99.gif
│ │ ├── 100.gif
│ │ ├── 101.gif
│ │ ├── 102.gif
│ │ ├── 103.gif
│ │ ├── 104.gif
│ │ ├── 105.gif
│ │ ├── 106.gif
│ │ ├── 107.gif
│ │ ├── 108.gif
│ │ ├── 109.gif
│ │ ├── 110.gif
│ │ ├── 111.gif
│ │ ├── 112.gif
│ │ ├── 113.gif
│ │ ├── 114.gif
│ │ ├── 115.gif
│ │ ├── 116.gif
│ │ ├── 117.gif
│ │ ├── 118.gif
│ │ ├── 119.gif
│ │ ├── 120.gif
│ │ ├── 121.gif
│ │ ├── 122.gif
│ │ ├── 123.gif
│ │ ├── 124.gif
│ │ ├── 125.gif
│ │ ├── 126.gif
│ │ ├── 127.gif
│ │ ├── 128.gif
│ │ ├── 129.gif
│ │ ├── 130.gif
│ │ ├── 131.gif
│ │ ├── 132.gif
│ │ ├── 133.gif
│ │ └── 134.gif
├── jsconfig.json
├── sitemap.json
├── config.js
├── template
│ ├── login
│ │ ├── index.js
│ │ └── index.wxml
│ └── share
│ │ └── index.wxml
├── project.private.config.json
├── package-lock.json
├── utils
│ ├── tools.js
│ └── image.js
└── package.json
└── .gitignore
/mpvue/static/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/mpvue/.eslintignore:
--------------------------------------------------------------------------------
1 | build/*.js
2 | config/*.js
3 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/common/style/theme.wxss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/common/style/var.wxss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/wxa-plugin-canvas/poster/index.wxss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/native/pages/card/main.json:
--------------------------------------------------------------------------------
1 | {
2 | "usingComponents": {}
3 | }
--------------------------------------------------------------------------------
/native/pages/index/main.json:
--------------------------------------------------------------------------------
1 | {
2 | "usingComponents": {}
3 | }
--------------------------------------------------------------------------------
/native/pages/news/main.json:
--------------------------------------------------------------------------------
1 | {
2 | "usingComponents": {}
3 | }
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/common/style/mixins/clearfix.wxss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/common/style/mixins/ellipsis.wxss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/common/style/mixins/hairline.wxss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/native/pages/products/main.json:
--------------------------------------------------------------------------------
1 | {
2 | "usingComponents": {}
3 | }
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/checkbox-group/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/radio-group/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/native/pages/news-detail/main.json:
--------------------------------------------------------------------------------
1 | {
2 | "usingComponents": {}
3 | }
--------------------------------------------------------------------------------
/native/pages/user/info.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "编辑资料"
3 | }
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/area/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';
--------------------------------------------------------------------------------
/native/pages/cardposter/main.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "生成海报"
3 | }
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/circle/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/col/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/collapse/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/grid/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/info/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/radio-group/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/row/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/slider/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/sticky/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/tab/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/tabbar/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/cell-group/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/checkbox-group/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/collapse/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/count-down/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/datetime-picker/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/index-bar/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/loading/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/progress/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/radio-group/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/sidebar/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/stepper/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/swipe-cell/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/transition/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/wxa-plugin-canvas/index/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
--------------------------------------------------------------------------------
/native/images/fl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/fl.png
--------------------------------------------------------------------------------
/native/images/fx.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/fx.png
--------------------------------------------------------------------------------
/native/images/gou.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/gou.png
--------------------------------------------------------------------------------
/native/images/qd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/qd.png
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/checkbox-group/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/dropdown-menu/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/goods-action/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/index-anchor/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/picker-column/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/share-sheet/options.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/native/images/cart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/cart.png
--------------------------------------------------------------------------------
/native/images/fxad.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/fxad.jpeg
--------------------------------------------------------------------------------
/native/images/gift.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/gift.png
--------------------------------------------------------------------------------
/native/images/kefu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/kefu.png
--------------------------------------------------------------------------------
/native/images/mp/dt.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/mp/dt.png
--------------------------------------------------------------------------------
/native/images/mp/kf.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/mp/kf.png
--------------------------------------------------------------------------------
/native/images/mp/mp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/mp/mp.png
--------------------------------------------------------------------------------
/native/images/mp/wx.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/mp/wx.png
--------------------------------------------------------------------------------
/native/images/share.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/share.png
--------------------------------------------------------------------------------
/mpvue/static/images/dt.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/mpvue/static/images/dt.png
--------------------------------------------------------------------------------
/mpvue/static/images/kf.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/mpvue/static/images/kf.png
--------------------------------------------------------------------------------
/mpvue/static/images/mp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/mpvue/static/images/mp.png
--------------------------------------------------------------------------------
/mpvue/static/images/wx.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/mpvue/static/images/wx.png
--------------------------------------------------------------------------------
/native/images/add-addr.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/add-addr.png
--------------------------------------------------------------------------------
/native/images/gou-red.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/gou-red.png
--------------------------------------------------------------------------------
/native/images/ico-addr.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/ico-addr.png
--------------------------------------------------------------------------------
/native/images/mp/about.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/mp/about.png
--------------------------------------------------------------------------------
/native/images/mp/dta.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/mp/dta.png
--------------------------------------------------------------------------------
/native/images/mp/mpa.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/mp/mpa.png
--------------------------------------------------------------------------------
/native/images/mp/mpj.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/mp/mpj.png
--------------------------------------------------------------------------------
/native/images/mp/pro.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/mp/pro.png
--------------------------------------------------------------------------------
/native/images/mp/proa.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/mp/proa.png
--------------------------------------------------------------------------------
/native/images/mp/pyq.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/mp/pyq.png
--------------------------------------------------------------------------------
/native/images/mp/share.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/mp/share.png
--------------------------------------------------------------------------------
/native/images/mp/txl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/mp/txl.png
--------------------------------------------------------------------------------
/native/images/no-order.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/no-order.png
--------------------------------------------------------------------------------
/native/images/nologin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/nologin.png
--------------------------------------------------------------------------------
/native/images/notice.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/notice.png
--------------------------------------------------------------------------------
/native/images/order/pj.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/order/pj.png
--------------------------------------------------------------------------------
/native/images/upload.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/upload.jpg
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/calendar/components/header/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/calendar/components/month/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true
3 | }
4 |
--------------------------------------------------------------------------------
/mpvue/static/images/dta.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/mpvue/static/images/dta.png
--------------------------------------------------------------------------------
/mpvue/static/images/mpa.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/mpvue/static/images/mpa.png
--------------------------------------------------------------------------------
/mpvue/static/images/mpj.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/mpvue/static/images/mpj.png
--------------------------------------------------------------------------------
/mpvue/static/images/pro.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/mpvue/static/images/pro.png
--------------------------------------------------------------------------------
/mpvue/static/images/proa.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/mpvue/static/images/proa.png
--------------------------------------------------------------------------------
/mpvue/static/images/pyq.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/mpvue/static/images/pyq.png
--------------------------------------------------------------------------------
/mpvue/static/images/txl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/mpvue/static/images/txl.png
--------------------------------------------------------------------------------
/native/components/login/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 |
5 | }
6 | }
--------------------------------------------------------------------------------
/native/images/addr-edit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/addr-edit.png
--------------------------------------------------------------------------------
/native/images/addr-line.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/addr-line.png
--------------------------------------------------------------------------------
/native/images/icon-cart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/icon-cart.png
--------------------------------------------------------------------------------
/native/images/more/wave.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/more/wave.png
--------------------------------------------------------------------------------
/native/images/mp/abouta.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/mp/abouta.png
--------------------------------------------------------------------------------
/native/images/mp/posters.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/mp/posters.png
--------------------------------------------------------------------------------
/native/images/nav/my-off.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/nav/my-off.png
--------------------------------------------------------------------------------
/native/images/nav/my-on.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/nav/my-on.png
--------------------------------------------------------------------------------
/native/images/search-pic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/search-pic.png
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/empty/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {}
4 | }
--------------------------------------------------------------------------------
/native/wxParse/emojis/00.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/00.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/01.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/01.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/02.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/02.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/03.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/03.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/04.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/04.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/05.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/05.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/06.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/06.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/07.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/07.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/08.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/08.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/09.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/09.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/10.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/10.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/11.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/11.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/12.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/12.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/13.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/13.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/14.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/14.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/15.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/15.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/16.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/16.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/17.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/17.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/18.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/18.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/19.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/19.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/20.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/20.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/21.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/21.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/22.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/22.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/23.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/23.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/24.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/24.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/25.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/25.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/26.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/26.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/27.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/27.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/28.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/28.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/29.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/29.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/30.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/30.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/31.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/31.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/32.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/32.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/33.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/33.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/34.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/34.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/35.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/35.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/36.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/36.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/37.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/37.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/38.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/38.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/39.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/39.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/40.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/40.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/41.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/41.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/42.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/42.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/43.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/43.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/44.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/44.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/45.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/45.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/46.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/46.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/47.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/47.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/48.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/48.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/49.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/49.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/50.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/50.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/51.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/51.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/52.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/52.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/53.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/53.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/54.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/54.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/55.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/55.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/56.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/56.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/57.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/57.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/58.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/58.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/59.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/59.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/60.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/60.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/61.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/61.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/62.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/62.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/63.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/63.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/64.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/64.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/65.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/65.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/66.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/66.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/67.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/67.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/68.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/68.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/69.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/69.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/70.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/70.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/71.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/71.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/72.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/72.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/73.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/73.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/74.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/74.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/75.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/75.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/76.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/76.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/77.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/77.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/78.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/78.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/79.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/79.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/80.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/80.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/81.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/81.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/82.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/82.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/83.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/83.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/84.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/84.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/85.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/85.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/86.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/86.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/87.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/87.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/88.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/88.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/89.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/89.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/90.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/90.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/91.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/91.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/92.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/92.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/93.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/93.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/94.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/94.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/95.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/95.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/96.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/96.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/97.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/97.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/98.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/98.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/99.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/99.gif
--------------------------------------------------------------------------------
/mpvue/static/images/about.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/mpvue/static/images/about.png
--------------------------------------------------------------------------------
/mpvue/static/images/abouta.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/mpvue/static/images/abouta.png
--------------------------------------------------------------------------------
/mpvue/static/images/posters.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/mpvue/static/images/posters.png
--------------------------------------------------------------------------------
/mpvue/static/images/share.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/mpvue/static/images/share.png
--------------------------------------------------------------------------------
/native/images/addr-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/addr-active.png
--------------------------------------------------------------------------------
/native/images/arrow-right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/arrow-right.png
--------------------------------------------------------------------------------
/native/images/ico-add-addr.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/ico-add-addr.png
--------------------------------------------------------------------------------
/native/images/more/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/more/loading.gif
--------------------------------------------------------------------------------
/native/images/more/title8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/more/title8.png
--------------------------------------------------------------------------------
/native/images/nav/cart-off.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/nav/cart-off.png
--------------------------------------------------------------------------------
/native/images/nav/cart-on.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/nav/cart-on.png
--------------------------------------------------------------------------------
/native/images/nav/home-off.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/nav/home-off.png
--------------------------------------------------------------------------------
/native/images/nav/home-on.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/nav/home-on.png
--------------------------------------------------------------------------------
/native/images/nav/order-off.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/nav/order-off.png
--------------------------------------------------------------------------------
/native/images/nav/order-on.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/nav/order-on.png
--------------------------------------------------------------------------------
/native/images/order/fahuo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/order/fahuo.png
--------------------------------------------------------------------------------
/native/images/order/shouhou.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/order/shouhou.png
--------------------------------------------------------------------------------
/native/images/order/shouhuo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/order/shouhuo.png
--------------------------------------------------------------------------------
/native/images/order/topay.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/order/topay.png
--------------------------------------------------------------------------------
/native/images/popup-close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/popup-close.png
--------------------------------------------------------------------------------
/native/images/share/share1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/share/share1.png
--------------------------------------------------------------------------------
/native/images/share/share2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/share/share2.png
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/common/style/clearfix.wxss:
--------------------------------------------------------------------------------
1 | .van-clearfix:after{display:table;clear:both;content:""}
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/divider/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {}
4 | }
5 |
--------------------------------------------------------------------------------
/native/wxParse/emojis/100.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/100.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/101.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/101.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/102.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/102.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/103.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/103.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/104.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/104.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/105.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/105.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/106.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/106.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/107.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/107.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/108.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/108.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/109.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/109.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/110.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/110.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/111.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/111.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/112.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/112.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/113.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/113.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/114.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/114.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/115.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/115.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/116.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/116.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/117.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/117.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/118.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/118.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/119.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/119.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/120.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/120.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/121.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/121.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/122.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/122.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/123.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/123.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/124.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/124.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/125.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/125.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/126.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/126.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/127.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/127.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/128.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/128.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/129.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/129.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/130.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/130.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/131.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/131.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/132.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/132.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/133.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/133.gif
--------------------------------------------------------------------------------
/native/wxParse/emojis/134.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/wxParse/emojis/134.gif
--------------------------------------------------------------------------------
/native/jsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "es2015",
4 | "module": "commonjs"
5 | }
6 | }
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/skeleton/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {}
4 | }
5 |
--------------------------------------------------------------------------------
/native/images/more/confirm-word1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/more/confirm-word1.png
--------------------------------------------------------------------------------
/native/images/mp/nodata-message.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/mp/nodata-message.png
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/sidebar/index.wxml:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/mpvue/static/images/nodata-message.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/mpvue/static/images/nodata-message.png
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/row/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';.van-row:after{display:table;clear:both;content:""}
--------------------------------------------------------------------------------
/mpvue/src/pages/about/main.js:
--------------------------------------------------------------------------------
1 | import Vue from 'vue'
2 | import App from './index'
3 |
4 | const app = new Vue(App)
5 | app.$mount()
6 |
--------------------------------------------------------------------------------
/mpvue/src/pages/card/main.js:
--------------------------------------------------------------------------------
1 | import Vue from 'vue'
2 | import App from './index'
3 |
4 | const app = new Vue(App)
5 | app.$mount()
6 |
--------------------------------------------------------------------------------
/mpvue/src/pages/index/main.js:
--------------------------------------------------------------------------------
1 | import Vue from 'vue'
2 | import App from './index'
3 |
4 | const app = new Vue(App)
5 | app.$mount()
6 |
--------------------------------------------------------------------------------
/mpvue/src/pages/news/main.js:
--------------------------------------------------------------------------------
1 | import Vue from 'vue'
2 | import App from './index'
3 |
4 | const app = new Vue(App)
5 | app.$mount()
6 |
--------------------------------------------------------------------------------
/native/images/nav/ic_catefory_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/nav/ic_catefory_normal.png
--------------------------------------------------------------------------------
/native/images/nav/ic_catefory_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/nav/ic_catefory_pressed.png
--------------------------------------------------------------------------------
/native/images/order-details/icon-ddfh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/order-details/icon-ddfh.png
--------------------------------------------------------------------------------
/native/images/order-details/icon-ddfk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/order-details/icon-ddfk.png
--------------------------------------------------------------------------------
/native/images/order-details/icon-ddgb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/order-details/icon-ddgb.png
--------------------------------------------------------------------------------
/native/images/order-details/icon-ddsh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/order-details/icon-ddsh.png
--------------------------------------------------------------------------------
/native/images/order-details/icon-jycg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/order-details/icon-jycg.png
--------------------------------------------------------------------------------
/mpvue/src/pages/cardposter/main.js:
--------------------------------------------------------------------------------
1 | import Vue from 'vue'
2 | import App from './index'
3 |
4 | const app = new Vue(App)
5 | app.$mount()
6 |
--------------------------------------------------------------------------------
/mpvue/src/pages/news-detail/main.js:
--------------------------------------------------------------------------------
1 | import Vue from 'vue'
2 | import App from './index'
3 |
4 | const app = new Vue(App)
5 | app.$mount()
6 |
--------------------------------------------------------------------------------
/mpvue/src/pages/products/main.js:
--------------------------------------------------------------------------------
1 | import Vue from 'vue'
2 | import App from './index'
3 |
4 | const app = new Vue(App)
5 | app.$mount()
6 |
--------------------------------------------------------------------------------
/native/images/order-details/icon-wuliu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/order-details/icon-wuliu.png
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/definitions/index.js:
--------------------------------------------------------------------------------
1 | "use strict";
2 | Object.defineProperty(exports, "__esModule", { value: true });
3 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/definitions/weapp.js:
--------------------------------------------------------------------------------
1 | "use strict";
2 | Object.defineProperty(exports, "__esModule", { value: true });
3 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/dropdown-item/shared.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | Object.defineProperty(exports, '__esModule', { value: true });
3 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/row/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/sidebar/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';.van-sidebar{width:80px;width:var(--sidebar-width,80px)}
--------------------------------------------------------------------------------
/mpvue/src/pages/authorization/main.js:
--------------------------------------------------------------------------------
1 | import Vue from 'vue'
2 | import App from './index'
3 |
4 | const app = new Vue(App)
5 | app.$mount()
6 |
--------------------------------------------------------------------------------
/native/images/order-details/icon-address.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gooking/visitingCard/HEAD/native/images/order-details/icon-address.png
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/grid/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';.van-grid{position:relative;box-sizing:border-box;overflow:hidden}
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/card/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-tag": "../tag/index"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/cell/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-icon": "../icon/index"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/icon/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-info": "../info/index"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/rate/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-icon": "../icon/index"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/tag/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-icon": "../icon/index"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/area/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-picker": "../picker/index"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/checkbox/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-icon": "../icon/index"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/grid-item/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-icon": "../icon/index"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/nav-bar/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-icon": "../icon/index"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/panel/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-cell": "../cell/index"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/radio/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-icon": "../icon/index"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/search/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-field": "../field/index"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/steps/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-icon": "../icon/index"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/collapse-item/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-cell": "../cell/index"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/notice-bar/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-icon": "../icon/index"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/sidebar-item/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-info": "../info/index"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/native/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}
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/switch/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-loading": "../loading/index"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/collapse/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/datetime-picker/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-picker": "../picker/index"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/notify/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-transition": "../transition/index"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/overlay/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-transition": "../transition/index"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/wxa-plugin-canvas/poster/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "we-canvas": "../index/index"
5 | }
6 | }
--------------------------------------------------------------------------------
/mpvue/.postcssrc.js:
--------------------------------------------------------------------------------
1 | // https://github.com/michael-ciniawsky/postcss-load-config
2 |
3 | module.exports = {
4 | "plugins": {
5 | "postcss-mpvue-wxss": {}
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/goods-action-button/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "component": true,
3 | "usingComponents": {
4 | "van-button": "../button/index"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/mpvue/config/dev.env.js:
--------------------------------------------------------------------------------
1 | var merge = require('webpack-merge')
2 | var prodEnv = require('./prod.env')
3 |
4 | module.exports = merge(prodEnv, {
5 | NODE_ENV: '"development"',
6 | })
--------------------------------------------------------------------------------
/native/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 |
--------------------------------------------------------------------------------
/mpvue/config/prod.env.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | NODE_ENV: '"production"',
3 | APP_NAME: '"八艺科技"',
4 | SUB_DOMAIN: '"bayi"',
5 | BASE_API_URL: '"https://api.it120.cc"',
6 | }
7 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/count-down/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 | {{ formattedTime }}
4 |
5 |
--------------------------------------------------------------------------------
/native/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 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/wxa-plugin-canvas/poster/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/native/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 |
--------------------------------------------------------------------------------
/native/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 |
--------------------------------------------------------------------------------
/native/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 |
--------------------------------------------------------------------------------
/native/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 |
--------------------------------------------------------------------------------
/native/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 |
--------------------------------------------------------------------------------
/native/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 |
--------------------------------------------------------------------------------
/native/sitemap.json:
--------------------------------------------------------------------------------
1 | {
2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html",
3 | "rules": [{
4 | "action": "allow",
5 | "page": "*"
6 | }]
7 | }
--------------------------------------------------------------------------------
/native/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 |
--------------------------------------------------------------------------------
/native/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 |
--------------------------------------------------------------------------------
/mpvue/.editorconfig:
--------------------------------------------------------------------------------
1 | root = true
2 |
3 | [*]
4 | charset = utf-8
5 | indent_style = space
6 | indent_size = 2
7 | end_of_line = lf
8 | insert_final_newline = true
9 | trim_trailing_whitespace = true
10 |
--------------------------------------------------------------------------------
/native/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 |
--------------------------------------------------------------------------------
/native/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 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | node_modules/
3 | dist/
4 | npm-debug.log*
5 | yarn-debug.log*
6 | yarn-error.log*
7 |
8 | # Editor directories and files
9 | .idea
10 | *.suo
11 | *.ntvs*
12 | *.njsproj
13 | *.sln
14 |
--------------------------------------------------------------------------------
/mpvue/package.swan.json:
--------------------------------------------------------------------------------
1 | {
2 | "appid": "wx038fce7447ddeb73",
3 | "setting": {
4 | "urlCheck": false
5 | },
6 | "condition": {
7 | "swan": {
8 | "current": -1,
9 | "list": []
10 | }
11 | }
12 | }
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/goods-action/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/native/config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | version: "25.12.08",
3 | note: 'UI改版美化',
4 | merchantId: 1708, // 填写商户id,后台,工厂设置,商户信息里面的商户id(注意不是商户号)
5 | subDomain: "aicard", // 根据教程 https://www.yuque.com/apifm/doc/qr6l4m 查看你自己的 subDomain
6 | }
--------------------------------------------------------------------------------
/native/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 |
--------------------------------------------------------------------------------
/native/components/login/sn.txt:
--------------------------------------------------------------------------------
1 | 1. app.json, usingComponents "login": "/components/login/index",
2 | 2. 在需要的页面上加这句代码即可
3 |
4 | show 控制弹框是否显示
5 | avatarUrl 回显的头像
6 | name 回显的昵称
--------------------------------------------------------------------------------
/native/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 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/area/index.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | function displayColumns(columns, columnsNum) {
3 | return columns.slice(0, +columnsNum);
4 | }
5 |
6 | module.exports = {
7 | displayColumns: displayColumns,
8 | };
9 |
--------------------------------------------------------------------------------
/native/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))}
--------------------------------------------------------------------------------
/native/template/login/index.js:
--------------------------------------------------------------------------------
1 | const WXAPI = require('apifm-wxapi')
2 |
3 | export default {
4 | init(page) {
5 | // page._cancelLogin = this._cancelLogin;
6 | // page._processLogin = this._processLogin;
7 | },
8 |
9 |
10 | }
--------------------------------------------------------------------------------
/native/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 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/wxa-plugin-canvas/index/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mpvue/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | mingpian
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/mpvue/src/main.js:
--------------------------------------------------------------------------------
1 | import Vue from 'vue'
2 | import App from './App'
3 | import store from './utils/store.js'
4 |
5 | Vue.config.productionTip = false
6 | App.mpType = 'app'
7 | Vue.prototype.$store = store
8 |
9 | const app = new Vue(App)
10 | app.$mount()
11 |
--------------------------------------------------------------------------------
/mpvue/src/components/support.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 | v 3.2
4 |
5 |
6 |
7 |
15 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/col/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/native/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)}
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/grid/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/native/pages/cardposter/main.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/cell-group/index.wxml:
--------------------------------------------------------------------------------
1 |
5 | {{ title }}
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/info/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 | {{ dot ? '' : info }}
8 |
--------------------------------------------------------------------------------
/native/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 |
--------------------------------------------------------------------------------
/mpvue/src/components/card.vue:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
9 |
14 |
15 |
20 |
--------------------------------------------------------------------------------
/mpvue/build/dev-client.js:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | require('eventsource-polyfill')
3 | var hotClient = require('webpack-hot-middleware/client?noInfo=true&reload=true')
4 |
5 | hotClient.subscribe(function (event) {
6 | if (event.action === 'reload') {
7 | window.location.reload()
8 | }
9 | })
10 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/tab/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/wxs/utils.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | var bem = require('./bem.wxs');
3 | var memoize = require('./memoize.wxs');
4 | var addUnit = require('./add-unit.wxs');
5 |
6 | module.exports = {
7 | bem: memoize(bem),
8 | memoize: memoize,
9 | addUnit: addUnit
10 | };
11 |
--------------------------------------------------------------------------------
/native/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)}
--------------------------------------------------------------------------------
/native/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}
--------------------------------------------------------------------------------
/native/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)}
--------------------------------------------------------------------------------
/native/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 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/info/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | Object.defineProperty(exports, '__esModule', { value: true });
3 | var component_1 = require('../common/component');
4 | component_1.VantComponent({
5 | props: {
6 | dot: Boolean,
7 | info: null,
8 | customStyle: String,
9 | },
10 | });
11 |
--------------------------------------------------------------------------------
/native/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 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/overlay/index.wxml:
--------------------------------------------------------------------------------
1 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/wxs/add-unit.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | var REGEXP = getRegExp('^\d+(\.\d+)?$');
3 |
4 | function addUnit(value) {
5 | if (value == null) {
6 | return undefined;
7 | }
8 |
9 | return REGEXP.test('' + value) ? value + 'px' : value;
10 | }
11 |
12 | module.exports = addUnit;
13 |
--------------------------------------------------------------------------------
/native/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 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/common/style/ellipsis.wxss:
--------------------------------------------------------------------------------
1 | .van-ellipsis{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.van-multi-ellipsis--l2{-webkit-line-clamp:2}.van-multi-ellipsis--l2,.van-multi-ellipsis--l3{display:-webkit-box;overflow:hidden;text-overflow:ellipsis;-webkit-box-orient:vertical}.van-multi-ellipsis--l3{-webkit-line-clamp:3}
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/share-sheet/index.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | function isMulti(options) {
3 | if (options == null || options[0] == null) {
4 | return false;
5 | }
6 |
7 | return "Array" === options.constructor && "Array" === options[0].constructor;
8 | }
9 |
10 | module.exports = {
11 | isMulti: isMulti
12 | };
13 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/grid/index.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | var style = require('../wxs/style.wxs');
3 | var addUnit = require('../wxs/add-unit.wxs');
4 |
5 | function rootStyle(data) {
6 | return style({
7 | 'padding-left': addUnit(data.gutter),
8 | });
9 | }
10 |
11 | module.exports = {
12 | rootStyle: rootStyle,
13 | };
14 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/wxs/object.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | var REGEXP = getRegExp('{|}|"', 'g');
3 |
4 | function keys(obj) {
5 | return JSON.stringify(obj)
6 | .replace(REGEXP, '')
7 | .split(',')
8 | .map(function(item) {
9 | return item.split(':')[0];
10 | });
11 | }
12 |
13 | module.exports.keys = keys;
14 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/cell-group/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | Object.defineProperty(exports, '__esModule', { value: true });
3 | var component_1 = require('../common/component');
4 | component_1.VantComponent({
5 | props: {
6 | title: String,
7 | border: {
8 | type: Boolean,
9 | value: true,
10 | },
11 | },
12 | });
13 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/cell-group/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';.van-cell-group__title{padding:16px 16px 8px;padding:var(--cell-group-title-padding,16px 16px 8px);font-size:14px;font-size:var(--cell-group-title-font-size,14px);line-height:16px;line-height:var(--cell-group-title-line-height,16px);color:#969799;color:var(--cell-group-title-color,#969799)}
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/tree-select/index.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | var array = require('../wxs/array.wxs');
3 |
4 | function isActive (activeList, itemId) {
5 | if (array.isArray(activeList)) {
6 | return activeList.indexOf(itemId) > -1;
7 | }
8 |
9 | return activeList === itemId;
10 | }
11 |
12 | module.exports.isActive = isActive;
13 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/nav-bar/index.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | var style = require('../wxs/style.wxs');
3 |
4 | function barStyle(data) {
5 | return style({
6 | 'z-index': data.zIndex,
7 | 'padding-top': data.safeAreaInsetTop ? data.statusBarHeight + 'px' : 0,
8 | });
9 | }
10 |
11 | module.exports = {
12 | barStyle: barStyle,
13 | };
14 |
--------------------------------------------------------------------------------
/native/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)}
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/transition/index.wxml:
--------------------------------------------------------------------------------
1 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/wxa-plugin-canvas/index/index.wxss:
--------------------------------------------------------------------------------
1 | .canvas {
2 | width: 750rpx;
3 | height: 750rpx;
4 | }
5 | .canvas.pro {
6 | position: absolute;
7 | bottom: 0;
8 | left: 0;
9 | transform: translate3d(-9999rpx, 0, 0);
10 | }
11 | .canvas.debug {
12 | position: absolute;
13 | bottom: 0;
14 | left: 0;
15 | border: 1rpx solid #ccc;
16 | }
--------------------------------------------------------------------------------
/native/project.private.config.json:
--------------------------------------------------------------------------------
1 | {
2 | "description": "项目私有配置文件。此文件中的内容将覆盖 project.config.json 中的相同字段。项目的改动优先同步到此文件中。详见文档:https://developers.weixin.qq.com/miniprogram/dev/devtools/projectconfig.html",
3 | "libVersion": "3.11.3",
4 | "setting": {
5 | "compileHotReLoad": true,
6 | "urlCheck": false
7 | },
8 | "projectname": "%E5%90%8D%E7%89%87%E5%B0%8F%E7%A8%8B%E5%BA%8F"
9 | }
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/slider/index.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | var style = require('../wxs/style.wxs');
3 | var addUnit = require('../wxs/add-unit.wxs');
4 |
5 | function barStyle(barHeight, activeColor) {
6 | return style({
7 | height: addUnit(barHeight),
8 | background: activeColor,
9 | });
10 | }
11 |
12 | module.exports = {
13 | barStyle: barStyle,
14 | };
15 |
--------------------------------------------------------------------------------
/mpvue/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "presets": [
3 | ["env", {
4 | "modules": false,
5 | "targets": {
6 | "browsers": ["> 1%", "last 2 versions", "not ie <= 8"]
7 | }
8 | }],
9 | "stage-2"
10 | ],
11 | "plugins": ["transform-runtime"],
12 | "env": {
13 | "test": {
14 | "presets": ["env", "stage-2"],
15 | "plugins": ["istanbul"]
16 | }
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/panel/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | Object.defineProperty(exports, '__esModule', { value: true });
3 | var component_1 = require('../common/component');
4 | component_1.VantComponent({
5 | classes: ['header-class', 'footer-class'],
6 | props: {
7 | desc: String,
8 | title: String,
9 | status: String,
10 | useFooterSlot: Boolean,
11 | },
12 | });
13 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/swipe-cell/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';.van-swipe-cell{position:relative;overflow:hidden}.van-swipe-cell__left,.van-swipe-cell__right{position:absolute;top:0;height:100%}.van-swipe-cell__left{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.van-swipe-cell__right{right:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}
--------------------------------------------------------------------------------
/native/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 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/sticky/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/divider/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/native/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;-webkit-align-items:center;align-items:center;box-sizing:initial;height:50px;height:var(--goods-action-height,50px);background-color:#fff;background-color:var(--goods-action-background-color,#fff)}.van-goods-action--safe{padding-bottom:env(safe-area-inset-bottom)}
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/tabbar/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/index-anchor/index.wxml:
--------------------------------------------------------------------------------
1 |
5 |
9 |
10 |
11 | {{ index }}
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/native/template/share/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/native/package-lock.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "wechat-app-mall",
3 | "version": "7.0.0",
4 | "lockfileVersion": 1,
5 | "requires": true,
6 | "dependencies": {
7 | "apifm-wxapi": {
8 | "version": "2.0.0",
9 | "resolved": "https://registry.npmjs.org/apifm-wxapi/-/apifm-wxapi-2.0.0.tgz",
10 | "integrity": "sha512-I8B8KbQ/zb43SYlWWKsE9qFeqG344OkfYuC4dZvHExAa4FbRC0Hna6Z2sehGXqkN3ILEbt5r7gjK5m1uC++1kQ=="
11 | }
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/dropdown-menu/index.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | function displayTitle(item) {
3 | if (item.title) {
4 | return item.title;
5 | }
6 |
7 | var match = item.options.filter(function(option) {
8 | return option.value === item.value;
9 | });
10 | var displayTitle = match.length ? match[0].text : '';
11 | return displayTitle;
12 | }
13 |
14 | module.exports = {
15 | displayTitle: displayTitle
16 | };
17 |
--------------------------------------------------------------------------------
/native/pages/news-detail/main.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | {{newsObject.title}}
5 | 📅 {{newsObject.dateAdd}}
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/common/color.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | Object.defineProperty(exports, '__esModule', { value: true });
3 | exports.GRAY_DARK = exports.GRAY = exports.ORANGE = exports.GREEN = exports.WHITE = exports.BLUE = exports.RED = void 0;
4 | exports.RED = '#ee0a24';
5 | exports.BLUE = '#1989fa';
6 | exports.WHITE = '#fff';
7 | exports.GREEN = '#07c160';
8 | exports.ORANGE = '#ff976a';
9 | exports.GRAY = '#323233';
10 | exports.GRAY_DARK = '#969799';
11 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/rate/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';.van-rate{display:-webkit-inline-flex;display:inline-flex;-webkit-user-select:none;user-select:none}.van-rate__item{position:relative;padding:0 2px;padding:0 var(--rate-horizontal-padding,2px)}.van-rate__icon{display:block;height:1em;font-size:20px;font-size:var(--rate-icon-size,20px)}.van-rate__icon--half{position:absolute;top:0;width:.5em;overflow:hidden;left:2px;left:var(--rate-horizontal-padding,2px)}
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/circle/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 | {{ text }}
9 |
10 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/dropdown-item/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';.van-dropdown-item{position:fixed;right:0;left:0;overflow:hidden}.van-dropdown-item__option{text-align:left}.van-dropdown-item__option--active .van-dropdown-item__icon,.van-dropdown-item__option--active .van-dropdown-item__title{color:#ee0a24;color:var(--dropdown-menu-option-active-color,#ee0a24)}.van-dropdown-item--up{top:0}.van-dropdown-item--down{bottom:0}.van-dropdown-item__icon{display:block;line-height:inherit}
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/loading/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | Object.defineProperty(exports, '__esModule', { value: true });
3 | var component_1 = require('../common/component');
4 | component_1.VantComponent({
5 | props: {
6 | color: String,
7 | vertical: Boolean,
8 | type: {
9 | type: String,
10 | value: 'circular',
11 | },
12 | size: String,
13 | textSize: String,
14 | },
15 | data: {
16 | array12: Array.from({ length: 12 }),
17 | },
18 | });
19 |
--------------------------------------------------------------------------------
/mpvue/src/utils/store.js:
--------------------------------------------------------------------------------
1 | import Vue from 'vue'
2 | import Vuex from 'vuex'
3 |
4 | Vue.use(Vuex)
5 |
6 | const store = new Vuex.Store({
7 | state: {
8 | isConnected: true
9 | },
10 | mutations: {
11 | setIsConnected: (state, isConnected) => {
12 | state.isConnected = isConnected
13 | }
14 | }
15 | })
16 |
17 | export default store
18 |
19 | /*
20 | this.$store.commit('setAppid','12344')
21 | computed: {
22 | appId () {
23 | return this.$store.state.appId
24 | }
25 | }
26 | */
27 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/popup/index.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | var style = require('../wxs/style.wxs');
3 |
4 | function popupClass(data) {
5 | return style([
6 | {
7 | 'z-index': data.zIndex,
8 | '-webkit-transition-duration': data.currentDuration + 'ms',
9 | 'transition-duration': data.currentDuration + 'ms',
10 | },
11 | data.display ? null : 'display: none',
12 | data.customStyle,
13 | ]);
14 | }
15 |
16 | module.exports = {
17 | popupClass: popupClass,
18 | };
19 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/transition/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | Object.defineProperty(exports, '__esModule', { value: true });
3 | var component_1 = require('../common/component');
4 | var transition_1 = require('../mixins/transition');
5 | component_1.VantComponent({
6 | classes: [
7 | 'enter-class',
8 | 'enter-active-class',
9 | 'enter-to-class',
10 | 'leave-class',
11 | 'leave-active-class',
12 | 'leave-to-class',
13 | ],
14 | mixins: [transition_1.transition(true)],
15 | });
16 |
--------------------------------------------------------------------------------
/native/utils/tools.js:
--------------------------------------------------------------------------------
1 | // 显示购物车tabBar的Badge
2 | function showTabBarBadge(){
3 | wx.getStorage({
4 | key: 'shopCarInfo',
5 | success: function (res) {
6 | if (res.data.shopNum > 0) {
7 | wx.setTabBarBadge({
8 | index: 2,
9 | text: `${res.data.shopNum}`
10 | });
11 | } else {
12 | wx.removeTabBarBadge({
13 | index: 2
14 | });
15 | }
16 | }
17 | });
18 | }
19 |
20 | module.exports = {
21 | showTabBarBadge: showTabBarBadge
22 | }
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/tag/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
8 |
14 |
15 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/picker-column/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';.van-picker-column{overflow:hidden;text-align:center;color:#000;color:var(--picker-option-text-color,#000);font-size:16px;font-size:var(--picker-option-font-size,16px)}.van-picker-column__item{padding:0 5px}.van-picker-column__item--selected{font-weight:500;font-weight:var(--font-weight-bold,500);color:#323233;color:var(--picker-option-selected-text-color,#323233)}.van-picker-column__item--disabled{opacity:.3;opacity:var(--picker-option-disabled-opacity,.3)}
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/calendar/components/header/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | Object.defineProperty(exports, '__esModule', { value: true });
3 | var component_1 = require('../../../common/component');
4 | component_1.VantComponent({
5 | props: {
6 | title: {
7 | type: String,
8 | value: '日期选择',
9 | },
10 | subtitle: String,
11 | showTitle: Boolean,
12 | showSubtitle: Boolean,
13 | },
14 | data: {
15 | weekdays: ['日', '一', '二', '三', '四', '五', '六'],
16 | },
17 | methods: {},
18 | });
19 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/mixins/basic.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | Object.defineProperty(exports, '__esModule', { value: true });
3 | exports.basic = void 0;
4 | exports.basic = Behavior({
5 | methods: {
6 | $emit: function (name, detail, options) {
7 | this.triggerEvent(name, detail, options);
8 | },
9 | set: function (data, callback) {
10 | this.setData(data, callback);
11 | return new Promise(function (resolve) {
12 | return wx.nextTick(resolve);
13 | });
14 | },
15 | },
16 | });
17 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/mixins/button.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | Object.defineProperty(exports, '__esModule', { value: true });
3 | exports.button = void 0;
4 | exports.button = Behavior({
5 | externalClasses: ['hover-class'],
6 | properties: {
7 | id: String,
8 | lang: String,
9 | businessId: Number,
10 | sessionFrom: String,
11 | sendMessageTitle: String,
12 | sendMessagePath: String,
13 | sendMessageImg: String,
14 | showMessageCard: Boolean,
15 | appParameter: String,
16 | ariaLabel: String,
17 | },
18 | });
19 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/switch/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/icon/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | Object.defineProperty(exports, '__esModule', { value: true });
3 | var component_1 = require('../common/component');
4 | component_1.VantComponent({
5 | props: {
6 | dot: Boolean,
7 | info: null,
8 | size: null,
9 | color: String,
10 | customStyle: String,
11 | classPrefix: {
12 | type: String,
13 | value: 'van-icon',
14 | },
15 | name: String,
16 | },
17 | methods: {
18 | onClick: function () {
19 | this.$emit('click');
20 | },
21 | },
22 | });
23 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/picker/shared.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | Object.defineProperty(exports, '__esModule', { value: true });
3 | exports.pickerProps = void 0;
4 | exports.pickerProps = {
5 | title: String,
6 | loading: Boolean,
7 | showToolbar: Boolean,
8 | cancelButtonText: {
9 | type: String,
10 | value: '取消',
11 | },
12 | confirmButtonText: {
13 | type: String,
14 | value: '确认',
15 | },
16 | visibleItemCount: {
17 | type: Number,
18 | value: 6,
19 | },
20 | itemHeight: {
21 | type: Number,
22 | value: 44,
23 | },
24 | };
25 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/datetime-picker/index.wxml:
--------------------------------------------------------------------------------
1 |
17 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/icon/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
8 |
14 |
20 |
21 |
--------------------------------------------------------------------------------
/mpvue/build/vue-loader.conf.js:
--------------------------------------------------------------------------------
1 | var utils = require('./utils')
2 | var config = require('../config')
3 | // var isProduction = process.env.NODE_ENV === 'production'
4 | // for mp
5 | var isProduction = true
6 |
7 | module.exports = {
8 | loaders: utils.cssLoaders({
9 | sourceMap: isProduction
10 | ? config.build.productionSourceMap
11 | : config.dev.cssSourceMap,
12 | extract: isProduction
13 | }),
14 | transformToRequire: {
15 | video: 'src',
16 | source: 'src',
17 | img: 'src',
18 | image: 'xlink:href'
19 | },
20 | fileExt: config.build.fileExt
21 | }
22 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/tag/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | Object.defineProperty(exports, '__esModule', { value: true });
3 | var component_1 = require('../common/component');
4 | component_1.VantComponent({
5 | props: {
6 | size: String,
7 | mark: Boolean,
8 | color: String,
9 | plain: Boolean,
10 | round: Boolean,
11 | textColor: String,
12 | type: {
13 | type: String,
14 | value: 'default',
15 | },
16 | closeable: Boolean,
17 | },
18 | methods: {
19 | onClose: function () {
20 | this.$emit('close');
21 | },
22 | },
23 | });
24 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/field/index.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | var utils = require('../wxs/utils.wxs');
3 |
4 | function inputStyle(autosize) {
5 | if (autosize && autosize.constructor === 'Object') {
6 | var style = '';
7 | if (autosize.minHeight) {
8 | style += 'min-height:' + utils.addUnit(autosize.minHeight) + ';';
9 | }
10 | if (autosize.maxHeight) {
11 | style += 'max-height:' + utils.addUnit(autosize.maxHeight) + ';';
12 | }
13 | return style;
14 | }
15 |
16 | return '';
17 | }
18 |
19 | module.exports = {
20 | inputStyle: inputStyle
21 | };
22 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/checkbox/index.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | var style = require('../wxs/style.wxs');
3 | var addUnit = require('../wxs/add-unit.wxs');
4 |
5 | function iconStyle(checkedColor, value, disabled, parentDisabled, iconSize) {
6 | var styles = {
7 | 'font-size': addUnit(iconSize),
8 | };
9 |
10 | if (checkedColor && value && !disabled && !parentDisabled) {
11 | styles['border-color'] = checkedColor;
12 | styles['background-color'] = checkedColor;
13 | }
14 |
15 | return style(styles);
16 | }
17 |
18 | module.exports = {
19 | iconStyle: iconStyle,
20 | };
21 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/index-bar/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';.van-index-bar{position:relative}.van-index-bar__sidebar{position:fixed;top:50%;right:0;display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;text-align:center;-webkit-transform:translateY(-50%);transform:translateY(-50%);-webkit-user-select:none;user-select:none}.van-index-bar__index{font-weight:500;padding:0 4px 0 16px;padding:0 var(--padding-base,4px) 0 var(--padding-md,16px);font-size:10px;font-size:var(--index-bar-index-font-size,10px);line-height:14px;line-height:var(--index-bar-index-line-height,14px)}
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/overlay/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | Object.defineProperty(exports, '__esModule', { value: true });
3 | var component_1 = require('../common/component');
4 | component_1.VantComponent({
5 | props: {
6 | show: Boolean,
7 | customStyle: String,
8 | duration: {
9 | type: null,
10 | value: 300,
11 | },
12 | zIndex: {
13 | type: Number,
14 | value: 1,
15 | },
16 | },
17 | methods: {
18 | onClick: function () {
19 | this.$emit('click');
20 | },
21 | // for prevent touchmove
22 | noop: function () {},
23 | },
24 | });
25 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/calendar/components/header/index.wxml:
--------------------------------------------------------------------------------
1 |
17 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/panel/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
19 |
20 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/notify/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
10 |
14 |
18 | {{ message }}
19 |
20 |
21 |
--------------------------------------------------------------------------------
/mpvue/src/utils/index.js:
--------------------------------------------------------------------------------
1 | function formatNumber (n) {
2 | const str = n.toString()
3 | return str[1] ? str : `0${str}`
4 | }
5 |
6 | export function formatTime (date) {
7 | const year = date.getFullYear()
8 | const month = date.getMonth() + 1
9 | const day = date.getDate()
10 |
11 | const hour = date.getHours()
12 | const minute = date.getMinutes()
13 | const second = date.getSeconds()
14 |
15 | const t1 = [year, month, day].map(formatNumber).join('/')
16 | const t2 = [hour, minute, second].map(formatNumber).join(':')
17 |
18 | return `${t1} ${t2}`
19 | }
20 |
21 | export default {
22 | formatNumber,
23 | formatTime
24 | }
25 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/sticky/index.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | var style = require('../wxs/style.wxs');
3 |
4 | function wrapStyle(data) {
5 | return style({
6 | transform: data.transform
7 | ? 'translate3d(0, ' + data.transform + 'px, 0)'
8 | : '',
9 | top: data.fixed ? data.offsetTop + 'px' : '',
10 | 'z-index': data.zIndex,
11 | });
12 | }
13 |
14 | function containerStyle(data) {
15 | return style({
16 | height: data.fixed ? data.height + 'px' : '',
17 | 'z-index': data.zIndex,
18 | });
19 | }
20 |
21 | module.exports = {
22 | wrapStyle: wrapStyle,
23 | containerStyle: containerStyle,
24 | };
25 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/empty/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 | {{ description }}
16 |
17 |
18 |
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/index-bar/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
22 |
23 |
--------------------------------------------------------------------------------
/mpvue/src/utils/request.js:
--------------------------------------------------------------------------------
1 | import axios from './axios'
2 |
3 | // 创建axios实例
4 | const service = axios.create({
5 | timeout: 60000 // 请求超时时间
6 | })
7 |
8 | // request拦截器
9 | service.interceptors.request.use(
10 | config => {
11 | return config
12 | },
13 | error => {
14 | // Do something with request error
15 | console.log(error) // for debug
16 | Promise.reject(error)
17 | }
18 | )
19 |
20 | // response 拦截器
21 | service.interceptors.response.use(
22 | response => {
23 | return response.data
24 | },
25 | error => {
26 | console.error(error)// for debug
27 | return Promise.reject(error)
28 | }
29 | )
30 |
31 | export default service
32 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/index-anchor/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';.van-index-anchor{padding:0 16px;padding:var(--index-anchor-padding,0 16px);color:#323233;color:var(--index-anchor-text-color,#323233);font-weight:500;font-weight:var(--index-anchor-font-weight,500);font-size:14px;font-size:var(--index-anchor-font-size,14px);line-height:32px;line-height:var(--index-anchor-line-height,32px);background-color:initial;background-color:var(--index-anchor-background-color,transparent)}.van-index-anchor--active{right:0;left:0;color:#07c160;color:var(--index-anchor-active-text-color,#07c160);background-color:#fff;background-color:var(--index-anchor-active-background-color,#fff)}
--------------------------------------------------------------------------------
/mpvue/project.config.json:
--------------------------------------------------------------------------------
1 | {
2 | "description": "项目配置文件。",
3 | "setting": {
4 | "urlCheck": true,
5 | "es6": false,
6 | "postcss": true,
7 | "minified": true,
8 | "newFeature": true,
9 | "autoAudits": false
10 | },
11 | "miniprogramRoot": "dist/wx/",
12 | "compileType": "miniprogram",
13 | "appid": "wx038fce7447ddeb73",
14 | "projectname": "mingpian",
15 | "condition": {
16 | "search": {
17 | "current": -1,
18 | "list": []
19 | },
20 | "conversation": {
21 | "current": -1,
22 | "list": []
23 | },
24 | "game": {
25 | "currentL": -1,
26 | "list": []
27 | },
28 | "miniprogram": {
29 | "current": -1,
30 | "list": []
31 | }
32 | }
33 | }
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/loading/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
14 |
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/area/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
21 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/sidebar-item/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
19 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/calendar/utils.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | function getMonthEndDay(year, month) {
3 | return 32 - getDate(year, month - 1, 32).getDate();
4 | }
5 |
6 | function compareMonth(date1, date2) {
7 | date1 = getDate(date1);
8 | date2 = getDate(date2);
9 |
10 | var year1 = date1.getFullYear();
11 | var year2 = date2.getFullYear();
12 | var month1 = date1.getMonth();
13 | var month2 = date2.getMonth();
14 |
15 | if (year1 === year2) {
16 | return month1 === month2 ? 0 : month1 > month2 ? 1 : -1;
17 | }
18 |
19 | return year1 > year2 ? 1 : -1;
20 | }
21 |
22 | module.exports = {
23 | getMonthEndDay: getMonthEndDay,
24 | compareMonth: compareMonth
25 | };
26 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/empty/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';.van-empty{display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;box-sizing:border-box;padding:32px 0}.van-empty__image{width:160px;height:160px}.van-empty__image:empty{display:none}.van-empty__image__img{width:100%;height:100%}.van-empty__image:not(:empty)+.van-empty__image{display:none}.van-empty__description{margin-top:16px;padding:0 60px;color:#969799;font-size:14px;line-height:20px}.van-empty__description:empty,.van-empty__description:not(:empty)+.van-empty__description{display:none}.van-empty__bottom{margin-top:24px}
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/swipe-cell/index.wxml:
--------------------------------------------------------------------------------
1 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/empty/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | Object.defineProperty(exports, '__esModule', { value: true });
3 | var component_1 = require('../common/component');
4 | var PRESETS = ['error', 'search', 'default', 'network'];
5 | component_1.VantComponent({
6 | props: {
7 | description: String,
8 | image: {
9 | type: String,
10 | value: 'default',
11 | },
12 | },
13 | created: function () {
14 | if (PRESETS.indexOf(this.data.image) !== -1) {
15 | this.setData({
16 | imageUrl:
17 | 'https://img.yzcdn.cn/vant/empty-image-' + this.data.image + '.png',
18 | });
19 | } else {
20 | this.setData({ imageUrl: this.data.image });
21 | }
22 | },
23 | });
24 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/progress/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
12 |
17 | {{ computed.pivotText(pivotText, percentage) }}
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/native/utils/image.js:
--------------------------------------------------------------------------------
1 | function imageUtil (originalWidth, originalHeight) {
2 | let imageSize = {}
3 | wx.getSystemInfo({
4 | success: function (res) {
5 | const windowWidth = res.windowWidth
6 | imageSize.x = 0
7 | imageSize.y = 0
8 | imageSize.windowWidth = windowWidth
9 | imageSize.imageWidth = originalWidth
10 | imageSize.imageHeight = originalHeight
11 | if (originalWidth > windowWidth) {
12 | imageSize.imageWidth = windowWidth
13 | imageSize.imageHeight = windowWidth * originalHeight / originalWidth
14 | } else {
15 | imageSize.x = (windowWidth - originalWidth) / 2
16 | }
17 | }
18 | })
19 | return imageSize
20 | }
21 |
22 | export default imageUtil
23 |
--------------------------------------------------------------------------------
/mpvue/src/utils/image.js:
--------------------------------------------------------------------------------
1 | function imageUtil (originalWidth, originalHeight) {
2 | let imageSize = {}
3 | wx.getSystemInfo({
4 | success: function (res) {
5 | const windowWidth = res.windowWidth
6 | imageSize.x = 0
7 | imageSize.y = 0
8 | imageSize.windowWidth = windowWidth
9 | imageSize.imageWidth = originalWidth
10 | imageSize.imageHeight = originalHeight
11 | if (originalWidth > windowWidth) {
12 | imageSize.imageWidth = windowWidth
13 | imageSize.imageHeight = windowWidth * originalHeight / originalWidth
14 | } else {
15 | imageSize.x = (windowWidth - originalWidth) / 2
16 | }
17 | }
18 | })
19 | return imageSize
20 | }
21 |
22 | export default imageUtil
23 |
--------------------------------------------------------------------------------
/native/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "wechat-app-mall",
3 | "version": "7.0.0",
4 | "description": "微信小程序商城,微信小程序微店",
5 | "main": "app.js",
6 | "dependencies": {
7 | "apifm-wxapi": "^25.12.8"
8 | },
9 | "devDependencies": {},
10 | "scripts": {
11 | "test": "echo \"Error: no test specified\" && exit 1"
12 | },
13 | "repository": {
14 | "type": "git",
15 | "url": "git+https://github.com/EastWorld/wechat-app-mall.git"
16 | },
17 | "keywords": [
18 | "微店",
19 | "小店",
20 | "微商城"
21 | ],
22 | "author": "gooking",
23 | "license": "ISC",
24 | "bugs": {
25 | "url": "https://github.com/EastWorld/wechat-app-mall/issues"
26 | },
27 | "homepage": "https://github.com/EastWorld/wechat-app-mall#readme"
28 | }
29 |
--------------------------------------------------------------------------------
/native/template/login/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | 授权登录
7 |
8 |
9 |
10 | ·请授权小程序登录
11 |
12 | ·我们不会公布您的这些信息
13 |
14 | ·只是为了给您提供更好的服务
15 |
16 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/toast/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | Object.defineProperty(exports, '__esModule', { value: true });
3 | var component_1 = require('../common/component');
4 | component_1.VantComponent({
5 | props: {
6 | show: Boolean,
7 | mask: Boolean,
8 | message: String,
9 | forbidClick: Boolean,
10 | zIndex: {
11 | type: Number,
12 | value: 1000,
13 | },
14 | type: {
15 | type: String,
16 | value: 'text',
17 | },
18 | loadingType: {
19 | type: String,
20 | value: 'circular',
21 | },
22 | position: {
23 | type: String,
24 | value: 'middle',
25 | },
26 | },
27 | methods: {
28 | // for prevent touchmove
29 | noop: function () {},
30 | },
31 | });
32 |
--------------------------------------------------------------------------------
/native/pages/products/main.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 暂无产品数据
5 |
6 |
7 |
8 |
9 |
10 | {{item.title}}
11 | {{item.descript}}
12 |
13 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/wxa-plugin-canvas/poster/poster.js:
--------------------------------------------------------------------------------
1 | const defaultOptions = {
2 | selector: '#poster'
3 | };
4 |
5 | function Poster(options = {}, that) {
6 | options = {
7 | ...defaultOptions,
8 | ...options,
9 | };
10 |
11 | const pages = getCurrentPages();
12 | let ctx = pages[pages.length - 1];
13 | if (that) ctx = that
14 | const poster = ctx.selectComponent(options.selector);
15 | delete options.selector;
16 |
17 | return poster;
18 | };
19 |
20 | Poster.create = (reset = false, that) => {
21 | const poster = Poster({}, that);
22 | if (!poster) {
23 | console.error('请设置组件的id="poster"!!!');
24 | } else {
25 | return Poster({}, that).onCreate(reset);
26 | }
27 | }
28 |
29 | export default Poster;
30 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/image/index.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | var style = require('../wxs/style.wxs');
3 | var addUnit = require('../wxs/add-unit.wxs');
4 |
5 | function rootStyle(data) {
6 | return style([
7 | {
8 | width: addUnit(data.width),
9 | height: addUnit(data.height),
10 | 'border-radius': addUnit(data.radius),
11 | },
12 | data.radius ? 'overflow: hidden' : null,
13 | ]);
14 | }
15 |
16 | var FIT_MODE_MAP = {
17 | none: 'center',
18 | fill: 'scaleToFill',
19 | cover: 'aspectFill',
20 | contain: 'aspectFit',
21 | widthFix: 'widthFix',
22 | heightFix: 'heightFix',
23 | };
24 |
25 | function mode(fit) {
26 | return FIT_MODE_MAP[fit];
27 | }
28 |
29 | module.exports = {
30 | rootStyle: rootStyle,
31 | mode: mode,
32 | };
33 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/notify/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';.van-notify{text-align:center;word-wrap:break-word;padding:6px 15px;padding:var(--notify-padding,6px 15px);font-size:14px;font-size:var(--notify-font-size,14px);line-height:20px;line-height:var(--notify-line-height,20px)}.van-notify__container{position:fixed;top:0;left:0;box-sizing:border-box;width:100%}.van-notify--primary{background-color:#1989fa;background-color:var(--notify-primary-background-color,#1989fa)}.van-notify--success{background-color:#07c160;background-color:var(--notify-success-background-color,#07c160)}.van-notify--danger{background-color:#ee0a24;background-color:var(--notify-danger-background-color,#ee0a24)}.van-notify--warning{background-color:#ff976a;background-color:var(--notify-warning-background-color,#ff976a)}
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/col/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | Object.defineProperty(exports, '__esModule', { value: true });
3 | var component_1 = require('../common/component');
4 | component_1.VantComponent({
5 | relation: {
6 | name: 'row',
7 | type: 'ancestor',
8 | current: 'col',
9 | },
10 | props: {
11 | span: Number,
12 | offset: Number,
13 | },
14 | data: {
15 | viewStyle: '',
16 | },
17 | methods: {
18 | setGutter: function (gutter) {
19 | var padding = gutter / 2 + 'px';
20 | var viewStyle = gutter
21 | ? 'padding-left: ' + padding + '; padding-right: ' + padding + ';'
22 | : '';
23 | if (viewStyle !== this.data.viewStyle) {
24 | this.setData({ viewStyle: viewStyle });
25 | }
26 | },
27 | },
28 | });
29 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/goods-action-icon/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | Object.defineProperty(exports, '__esModule', { value: true });
3 | var component_1 = require('../common/component');
4 | var button_1 = require('../mixins/button');
5 | var link_1 = require('../mixins/link');
6 | var open_type_1 = require('../mixins/open-type');
7 | component_1.VantComponent({
8 | classes: ['icon-class', 'text-class'],
9 | mixins: [link_1.link, button_1.button, open_type_1.openType],
10 | props: {
11 | text: String,
12 | dot: Boolean,
13 | info: String,
14 | icon: String,
15 | disabled: Boolean,
16 | loading: Boolean,
17 | },
18 | methods: {
19 | onClick: function (event) {
20 | this.$emit('click', event.detail);
21 | this.jumpLink();
22 | },
23 | },
24 | });
25 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/divider/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | Object.defineProperty(exports, '__esModule', { value: true });
3 | var component_1 = require('../common/component');
4 | component_1.VantComponent({
5 | props: {
6 | dashed: {
7 | type: Boolean,
8 | value: false,
9 | },
10 | hairline: {
11 | type: Boolean,
12 | value: false,
13 | },
14 | contentPosition: {
15 | type: String,
16 | value: '',
17 | },
18 | fontSize: {
19 | type: Number,
20 | value: '',
21 | },
22 | borderColor: {
23 | type: String,
24 | value: '',
25 | },
26 | textColor: {
27 | type: String,
28 | value: '',
29 | },
30 | customStyle: {
31 | type: String,
32 | value: '',
33 | },
34 | },
35 | });
36 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/mixins/link.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | Object.defineProperty(exports, '__esModule', { value: true });
3 | exports.link = void 0;
4 | exports.link = Behavior({
5 | properties: {
6 | url: String,
7 | linkType: {
8 | type: String,
9 | value: 'navigateTo',
10 | },
11 | },
12 | methods: {
13 | jumpLink: function (urlKey) {
14 | if (urlKey === void 0) {
15 | urlKey = 'url';
16 | }
17 | var url = this.data[urlKey];
18 | if (url) {
19 | if (
20 | this.data.linkType === 'navigateTo' &&
21 | getCurrentPages().length > 9
22 | ) {
23 | wx.redirectTo({ url: url });
24 | } else {
25 | wx[this.data.linkType]({ url: url });
26 | }
27 | }
28 | },
29 | },
30 | });
31 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/wxs/style.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | var object = require('./object.wxs');
3 | var array = require('./array.wxs');
4 |
5 | function style(styles) {
6 | if (array.isArray(styles)) {
7 | return styles
8 | .filter(function (item) {
9 | return item != null;
10 | })
11 | .map(function (item) {
12 | return style(item);
13 | })
14 | .join(';');
15 | }
16 |
17 | if ('Object' === styles.constructor) {
18 | return object
19 | .keys(styles)
20 | .filter(function (key) {
21 | return styles[key] != null;
22 | })
23 | .map(function (key) {
24 | return [key, [styles[key]]].join(':');
25 | })
26 | .join(';');
27 | }
28 |
29 | return styles;
30 | }
31 |
32 | module.exports = style;
33 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/goods-action-icon/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';.van-goods-action-icon{display:-webkit-flex!important;display:flex!important;-webkit-flex-direction:column;flex-direction:column;-webkit-justify-content:center!important;justify-content:center!important;line-height:1!important;border:none!important;font-size:10px!important;font-size:var(--goods-action-icon-font-size,10px)!important;color:#646566!important;color:var(--goods-action-icon-text-color,#646566)!important;min-width:48px;min-width:var(--goods-action-icon-width,48px);height:50px!important;height:var(--goods-action-icon-height,50px)!important}.van-goods-action-icon__icon{display:-webkit-flex;display:flex;margin:0 auto 5px;color:#323233;color:var(--goods-action-icon-color,#323233);font-size:18px;font-size:var(--goods-action-icon-size,18px)}
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/picker/toolbar.wxml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
13 | {{ cancelButtonText }}
14 |
15 | {{
16 | title
17 | }}
18 |
25 | {{ confirmButtonText }}
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/uploader/shared.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | Object.defineProperty(exports, '__esModule', { value: true });
3 | exports.chooseVideoProps = exports.chooseImageProps = void 0;
4 | // props for choose image
5 | exports.chooseImageProps = {
6 | sizeType: {
7 | type: Array,
8 | value: ['original', 'compressed'],
9 | },
10 | capture: {
11 | type: Array,
12 | value: ['album', 'camera'],
13 | },
14 | };
15 | // props for choose video
16 | exports.chooseVideoProps = {
17 | capture: {
18 | type: Array,
19 | value: ['album', 'camera'],
20 | },
21 | compressed: {
22 | type: Boolean,
23 | value: true,
24 | },
25 | maxDuration: {
26 | type: Number,
27 | value: 60,
28 | },
29 | camera: {
30 | type: String,
31 | value: 'back',
32 | },
33 | };
34 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/tabbar-item/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';:host{-webkit-flex:1;flex:1}.van-tabbar-item{display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;height:100%;color:#646566;color:var(--tabbar-item-text-color,#646566);font-size:12px;font-size:var(--tabbar-item-font-size,12px);line-height:1;line-height:var(--tabbar-item-line-height,1)}.van-tabbar-item__icon{position:relative;margin-bottom:4px;margin-bottom:var(--tabbar-item-margin-bottom,4px);font-size:22px;font-size:var(--tabbar-item-icon-size,22px)}.van-tabbar-item__icon__inner{display:block;min-width:1em}.van-tabbar-item--active{color:#1989fa;color:var(--tabbar-item-active-color,#1989fa)}.van-tabbar-item__info{margin-top:2px}
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/dropdown-menu/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
24 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/share-sheet/options.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
12 |
15 | {{ item.name }}
16 |
17 | {{ item.description }}
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/tabbar-item/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
8 |
9 |
15 |
16 |
17 |
18 |
19 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/grid-item/index.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | var style = require('../wxs/style.wxs');
3 | var addUnit = require('../wxs/add-unit.wxs');
4 |
5 | function wrapperStyle(data) {
6 | var width = 100 / data.columnNum + '%';
7 |
8 | return style({
9 | width: width,
10 | 'padding-top': data.square ? width : null,
11 | 'padding-right': addUnit(data.gutter),
12 | 'margin-top':
13 | data.index >= data.columnNum && !data.square
14 | ? addUnit(data.gutter)
15 | : null,
16 | });
17 | }
18 |
19 | function contentStyle(data) {
20 | return data.square
21 | ? style({
22 | right: addUnit(data.gutter),
23 | bottom: addUnit(data.gutter),
24 | height: 'auto',
25 | })
26 | : '';
27 | }
28 |
29 | module.exports = {
30 | wrapperStyle: wrapperStyle,
31 | contentStyle: contentStyle,
32 | };
33 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/calendar/index.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | var utils = require('./utils.wxs');
3 |
4 | function getMonths(minDate, maxDate) {
5 | var months = [];
6 | var cursor = getDate(minDate);
7 |
8 | cursor.setDate(1);
9 |
10 | do {
11 | months.push(cursor.getTime());
12 | cursor.setMonth(cursor.getMonth() + 1);
13 | } while (utils.compareMonth(cursor, getDate(maxDate)) !== 1);
14 |
15 | return months;
16 | }
17 |
18 | function getButtonDisabled(type, currentDate) {
19 | if (currentDate == null) {
20 | return true;
21 | }
22 |
23 | if (type === 'range') {
24 | return !currentDate[0] || !currentDate[1];
25 | }
26 |
27 | if (type === 'multiple') {
28 | return !currentDate.length;
29 | }
30 |
31 | return !currentDate;
32 | }
33 |
34 | module.exports = {
35 | getMonths: getMonths,
36 | getButtonDisabled: getButtonDisabled
37 | };
38 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/checkbox/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/common/style/hairline.wxss:
--------------------------------------------------------------------------------
1 | .van-hairline,.van-hairline--bottom,.van-hairline--left,.van-hairline--right,.van-hairline--surround,.van-hairline--top,.van-hairline--top-bottom{position:relative}.van-hairline--bottom:after,.van-hairline--left:after,.van-hairline--right:after,.van-hairline--surround:after,.van-hairline--top-bottom:after,.van-hairline--top:after,.van-hairline:after{position:absolute;box-sizing:border-box;-webkit-transform-origin:center;transform-origin:center;content:" ";pointer-events:none;top:-50%;right:-50%;bottom:-50%;left:-50%;border:0 solid #ebedf0;-webkit-transform:scale(.5);transform:scale(.5)}.van-hairline--top:after{border-top-width:1px}.van-hairline--left:after{border-left-width:1px}.van-hairline--right:after{border-right-width:1px}.van-hairline--bottom:after{border-bottom-width:1px}.van-hairline--top-bottom:after{border-width:1px 0}.van-hairline--surround:after{border-width:1px}
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/share-sheet/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';.van-share-sheet__header{padding:12px 16px 4px;text-align:center}.van-share-sheet__title{margin-top:8px;color:#323233;font-weight:400;font-size:14px;line-height:20px}.van-share-sheet__title:empty,.van-share-sheet__title:not(:empty)+.van-share-sheet__title{display:none}.van-share-sheet__description{display:block;margin-top:8px;color:#969799;font-size:12px;line-height:16px}.van-share-sheet__description:empty,.van-share-sheet__description:not(:empty)+.van-share-sheet__description{display:none}.van-share-sheet__cancel{display:block;box-sizing:initial;width:100%;height:auto;padding:0;font-size:16px;line-height:48px;text-align:center;background:#fff;border:none}.van-share-sheet__cancel:before{display:block;height:8px;background-color:#f7f8fa;content:" "}.van-share-sheet__cancel:after{display:none}.van-share-sheet__cancel:active{background-color:#f2f3f5}
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/slider/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
13 |
20 |
24 |
28 |
29 |
30 |
31 |
--------------------------------------------------------------------------------
/native/pages/news/main.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 暂无动态数据
5 |
6 |
7 | {{item.title}}
8 |
9 |
10 | {{item.descript}}
11 |
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/index-anchor/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | Object.defineProperty(exports, '__esModule', { value: true });
3 | var utils_1 = require('../common/utils');
4 | var component_1 = require('../common/component');
5 | component_1.VantComponent({
6 | relation: {
7 | name: 'index-bar',
8 | type: 'ancestor',
9 | current: 'index-anchor',
10 | },
11 | props: {
12 | useSlot: Boolean,
13 | index: null,
14 | },
15 | data: {
16 | active: false,
17 | wrapperStyle: '',
18 | anchorStyle: '',
19 | },
20 | methods: {
21 | scrollIntoView: function (scrollTop) {
22 | var _this = this;
23 | utils_1.getRect(this, '.van-index-anchor-wrapper').then(function (rect) {
24 | wx.pageScrollTo({
25 | duration: 0,
26 | scrollTop: scrollTop + rect.top - _this.parent.data.stickyOffsetTop,
27 | });
28 | });
29 | },
30 | },
31 | });
32 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/mixins/open-type.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | // @ts-nocheck
3 | Object.defineProperty(exports, '__esModule', { value: true });
4 | exports.openType = void 0;
5 | exports.openType = Behavior({
6 | properties: {
7 | openType: String,
8 | },
9 | methods: {
10 | bindGetUserInfo: function (event) {
11 | this.$emit('getuserinfo', event.detail);
12 | },
13 | bindContact: function (event) {
14 | this.$emit('contact', event.detail);
15 | },
16 | bindGetPhoneNumber: function (event) {
17 | this.$emit('getphonenumber', event.detail);
18 | },
19 | bindError: function (event) {
20 | this.$emit('error', event.detail);
21 | },
22 | bindLaunchApp: function (event) {
23 | this.$emit('launchapp', event.detail);
24 | },
25 | bindOpenSetting: function (event) {
26 | this.$emit('opensetting', event.detail);
27 | },
28 | },
29 | });
30 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/popup/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
12 |
26 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/progress/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';.van-progress{position:relative;height:4px;height:var(--progress-height,4px);border-radius:4px;border-radius:var(--progress-height,4px);background:#ebedf0;background:var(--progress-background-color,#ebedf0)}.van-progress__portion{position:absolute;left:0;height:100%;border-radius:inherit;background:#1989fa;background:var(--progress-color,#1989fa)}.van-progress__pivot{position:absolute;top:50%;box-sizing:border-box;min-width:3.6em;text-align:center;word-break:keep-all;border-radius:1em;-webkit-transform:translateY(-50%);transform:translateY(-50%);color:#fff;color:var(--progress-pivot-text-color,#fff);padding:0 5px;padding:var(--progress-pivot-padding,0 5px);font-size:10px;font-size:var(--progress-pivot-font-size,10px);line-height:1.6;line-height:var(--progress-pivot-line-height,1.6);background-color:#1989fa;background-color:var(--progress-pivot-background-color,#1989fa)}
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/button/index.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | var style = require('../wxs/style.wxs');
3 |
4 | function rootStyle(data) {
5 | if (!data.color) {
6 | return '';
7 | }
8 |
9 | var properties = {
10 | color: data.plain ? data.color : '#fff',
11 | background: data.plain ? null : data.color,
12 | };
13 |
14 | // hide border when color is linear-gradient
15 | if (data.color.indexOf('gradient') !== -1) {
16 | properties.border = 0;
17 | } else {
18 | properties['border-color'] = data.color;
19 | }
20 |
21 | return style(properties);
22 | }
23 |
24 | function loadingColor(data) {
25 | if (data.plain) {
26 | return data.color ? data.color : '#c9c9c9';
27 | }
28 |
29 | if (data.type === 'default') {
30 | return '#c9c9c9';
31 | }
32 |
33 | return '#fff';
34 | }
35 |
36 | module.exports = {
37 | rootStyle: rootStyle,
38 | loadingColor: loadingColor,
39 | };
40 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/slider/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';.van-slider{position:relative;border-radius:999px;border-radius:var(--border-radius-max,999px);background-color:#ebedf0;background-color:var(--slider-inactive-background-color,#ebedf0)}.van-slider:before{position:absolute;right:0;left:0;content:"";top:-8px;top:-var(--padding-xs,8px);bottom:-8px;bottom:-var(--padding-xs,8px)}.van-slider__bar{position:relative;border-radius:inherit;transition:width .2s;transition:width var(--animation-duration-fast,.2s);background-color:#1989fa;background-color:var(--slider-active-background-color,#1989fa)}.van-slider__button{width:24px;height:24px;border-radius:50%;box-shadow:0 1px 2px rgba(0,0,0,.5);background-color:#fff;background-color:var(--slider-button-background-color,#fff)}.van-slider__button-wrapper{position:absolute;top:50%;right:0;-webkit-transform:translate3d(50%,-50%,0);transform:translate3d(50%,-50%,0)}.van-slider--disabled{opacity:.5}
--------------------------------------------------------------------------------
/mpvue/.eslintrc.js:
--------------------------------------------------------------------------------
1 | // http://eslint.org/docs/user-guide/configuring
2 |
3 | module.exports = {
4 | root: true,
5 | parser: 'babel-eslint',
6 | parserOptions: {
7 | sourceType: 'module'
8 | },
9 | env: {
10 | browser: false,
11 | node: true,
12 | es6: true
13 | },
14 | // https://github.com/standard/standard/blob/master/docs/RULES-en.md
15 | extends: 'standard',
16 | // required to lint *.vue files
17 | plugins: [
18 | 'html'
19 | ],
20 | // add your custom rules here
21 | 'rules': {
22 | // allow paren-less arrow functions
23 | 'arrow-parens': 0,
24 | // allow async-await
25 | 'generator-star-spacing': 0,
26 | // allow debugger during development
27 | 'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0
28 | },
29 | globals: {
30 | App: true,
31 | Page: true,
32 | wx: true,
33 | getApp: true,
34 | getPage: true,
35 | requirePlugin: true
36 | }
37 | }
38 |
--------------------------------------------------------------------------------
/mpvue/src/utils/axios.js:
--------------------------------------------------------------------------------
1 | import axios from '../../node_modules/axios/dist/axios'
2 |
3 | axios.defaults.adapter = function (config) {
4 | // 发交易之前显示加载中
5 | wx.showLoading({ title: '拼命加载中...' })
6 | // 发交易调用(开发放开注释)
7 | return new Promise((resolve, reject) => {
8 | let _url = 'https://api.it120.cc'
9 | if (!config.publicDomain) {
10 | _url += ('/' + process.env.SUB_DOMAIN)
11 | }
12 | _url += config.url
13 | let _data = {}
14 | if (config.data) {
15 | _data = JSON.parse(config.data)
16 | }
17 | wx.request({
18 | ...config,
19 | url: _url,
20 | header: {
21 | 'content-type': 'application/x-www-form-urlencoded'
22 | },
23 | data: _data,
24 | success: res => {
25 | return resolve(res || {})
26 | },
27 | complete: res => {
28 | wx.hideLoading()
29 | // TODO:
30 | }
31 | })
32 | })
33 | }
34 |
35 | export default axios
36 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/goods-action/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | Object.defineProperty(exports, '__esModule', { value: true });
3 | var component_1 = require('../common/component');
4 | component_1.VantComponent({
5 | relation: {
6 | type: 'descendant',
7 | name: 'goods-action-button',
8 | current: 'goods-action',
9 | linked: function () {
10 | this.updateStyle();
11 | },
12 | unlinked: function () {
13 | this.updateStyle();
14 | },
15 | linkChanged: function () {
16 | this.updateStyle();
17 | },
18 | },
19 | props: {
20 | safeAreaInsetBottom: {
21 | type: Boolean,
22 | value: true,
23 | },
24 | },
25 | methods: {
26 | updateStyle: function () {
27 | var _this = this;
28 | wx.nextTick(function () {
29 | _this.children.forEach(function (child) {
30 | child.updateStyle();
31 | });
32 | });
33 | },
34 | },
35 | });
36 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/calendar/components/header/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../../../common/index.wxss';.van-calendar__header{-webkit-flex-shrink:0;flex-shrink:0;box-shadow:0 2px 10px rgba(125,126,128,.16);box-shadow:var(--calendar-header-box-shadow,0 2px 10px rgba(125,126,128,.16))}.van-calendar__header-subtitle,.van-calendar__header-title{text-align:center;height:44px;height:var(--calendar-header-title-height,44px);font-weight:500;font-weight:var(--font-weight-bold,500);line-height:44px;line-height:var(--calendar-header-title-height,44px)}.van-calendar__header-title+.van-calendar__header-title,.van-calendar__header-title:empty{display:none}.van-calendar__header-title:empty+.van-calendar__header-title{display:block!important}.van-calendar__weekdays{display:-webkit-flex;display:flex}.van-calendar__weekday{-webkit-flex:1;flex:1;text-align:center;font-size:12px;font-size:var(--calendar-weekdays-font-size,12px);line-height:30px;line-height:var(--calendar-weekdays-height,30px)}
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/icon/index.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | var style = require('../wxs/style.wxs');
3 | var addUnit = require('../wxs/add-unit.wxs');
4 |
5 | function isImage(name) {
6 | return name.indexOf('/') !== -1;
7 | }
8 |
9 | function rootClass(data) {
10 | var classes = ['custom-class'];
11 |
12 | if (data.classPrefix != null) {
13 | classes.push(data.classPrefix);
14 | }
15 |
16 | if (isImage(data.name)) {
17 | classes.push('van-icon--image');
18 | } else if (data.classPrefix != null) {
19 | classes.push(data.classPrefix + '-' + data.name);
20 | }
21 |
22 | return classes.join(' ');
23 | }
24 |
25 | function rootStyle(data) {
26 | return style([
27 | {
28 | color: data.color,
29 | 'font-size': addUnit(data.size),
30 | },
31 | data.customStyle,
32 | ]);
33 | }
34 |
35 | module.exports = {
36 | isImage: isImage,
37 | rootClass: rootClass,
38 | rootStyle: rootStyle,
39 | };
40 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/steps/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | Object.defineProperty(exports, '__esModule', { value: true });
3 | var component_1 = require('../common/component');
4 | var color_1 = require('../common/color');
5 | component_1.VantComponent({
6 | classes: ['desc-class'],
7 | props: {
8 | icon: String,
9 | steps: Array,
10 | active: Number,
11 | direction: {
12 | type: String,
13 | value: 'horizontal',
14 | },
15 | activeColor: {
16 | type: String,
17 | value: color_1.GREEN,
18 | },
19 | inactiveColor: {
20 | type: String,
21 | value: color_1.GRAY_DARK,
22 | },
23 | activeIcon: {
24 | type: String,
25 | value: 'checked',
26 | },
27 | inactiveIcon: String,
28 | },
29 | methods: {
30 | onClick: function (event) {
31 | var index = event.currentTarget.dataset.index;
32 | this.$emit('click-step', index);
33 | },
34 | },
35 | });
36 |
--------------------------------------------------------------------------------
/native/components/login/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 | ✨ 完善个人信息
4 | 跳过
5 |
6 |
7 |
10 | 点击上传头像
11 |
12 |
13 |
20 |
21 |
22 | ✓ 保存信息
23 |
24 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/skeleton/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
12 |
13 |
18 |
25 |
26 |
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/wxs/bem.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | var array = require('./array.wxs');
3 | var object = require('./object.wxs');
4 | var PREFIX = 'van-';
5 |
6 | function join(name, mods) {
7 | name = PREFIX + name;
8 | mods = mods.map(function(mod) {
9 | return name + '--' + mod;
10 | });
11 | mods.unshift(name);
12 | return mods.join(' ');
13 | }
14 |
15 | function traversing(mods, conf) {
16 | if (!conf) {
17 | return;
18 | }
19 |
20 | if (typeof conf === 'string' || typeof conf === 'number') {
21 | mods.push(conf);
22 | } else if (array.isArray(conf)) {
23 | conf.forEach(function(item) {
24 | traversing(mods, item);
25 | });
26 | } else if (typeof conf === 'object') {
27 | object.keys(conf).forEach(function(key) {
28 | conf[key] && mods.push(key);
29 | });
30 | }
31 | }
32 |
33 | function bem(name, conf) {
34 | var mods = [];
35 | traversing(mods, conf);
36 | return join(name, mods);
37 | }
38 |
39 | module.exports = bem;
40 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/share-sheet/options.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | var __assign =
3 | (this && this.__assign) ||
4 | function () {
5 | __assign =
6 | Object.assign ||
7 | function (t) {
8 | for (var s, i = 1, n = arguments.length; i < n; i++) {
9 | s = arguments[i];
10 | for (var p in s)
11 | if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
12 | }
13 | return t;
14 | };
15 | return __assign.apply(this, arguments);
16 | };
17 | Object.defineProperty(exports, '__esModule', { value: true });
18 | var component_1 = require('../common/component');
19 | component_1.VantComponent({
20 | props: {
21 | options: Array,
22 | showBorder: Boolean,
23 | },
24 | methods: {
25 | onSelect: function (event) {
26 | var index = event.currentTarget.dataset.index;
27 | var option = this.data.options[index];
28 | this.$emit('select', __assign(__assign({}, option), { index: index }));
29 | },
30 | },
31 | });
32 |
--------------------------------------------------------------------------------
/native/pages/cardposter/main.wxss:
--------------------------------------------------------------------------------
1 | /* 海报页面 - 精致设计 */
2 | page {
3 | background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
4 | }
5 |
6 | .container {
7 | display: flex;
8 | flex-direction: column;
9 | align-items: center;
10 | justify-content: center;
11 | }
12 |
13 | .canvas {
14 | width: 690rpx;
15 | margin: 30rpx auto;
16 | border-radius: 24rpx;
17 | box-shadow: 0 16rpx 48rpx rgba(0, 0, 0, 0.1);
18 | overflow: hidden;
19 | background: #ffffff;
20 | border: 8rpx solid #ffffff;
21 | }
22 |
23 | .button {
24 | width: 690rpx;
25 | margin: 40rpx auto;
26 | height: 96rpx;
27 | line-height: 96rpx;
28 | background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
29 | border-radius: 48rpx;
30 | color: #ffffff;
31 | font-size: 32rpx;
32 | font-weight: 600;
33 | box-shadow: 0 8rpx 24rpx rgba(102, 126, 234, 0.3);
34 | border: none;
35 | transition: all 0.3s ease;
36 | }
37 |
38 | .button:active {
39 | transform: scale(0.98);
40 | box-shadow: 0 4rpx 16rpx rgba(102, 126, 234, 0.2);
41 | }
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/progress/index.wxs:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | var utils = require('../wxs/utils.wxs');
3 | var style = require('../wxs/style.wxs');
4 |
5 | function pivotText(pivotText, percentage) {
6 | return pivotText || percentage + '%';
7 | }
8 |
9 | function rootStyle(data) {
10 | return style({
11 | 'height': data.strokeWidth ? utils.addUnit(data.strokeWidth) : '',
12 | 'background': data.trackColor,
13 | });
14 | }
15 |
16 | function portionStyle(data) {
17 | return style({
18 | background: data.inactive ? '#cacaca' : data.color,
19 | width: data.percentage ? data.percentage + '%' : '',
20 | });
21 | }
22 |
23 | function pivotStyle(data) {
24 | return style({
25 | color: data.textColor,
26 | right: data.right + 'px',
27 | background: data.pivotColor ? data.pivotColor : data.inactive ? '#cacaca' : data.color,
28 | });
29 | }
30 |
31 | module.exports = {
32 | pivotText: pivotText,
33 | rootStyle: rootStyle,
34 | portionStyle: portionStyle,
35 | pivotStyle: pivotStyle,
36 | };
37 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/sidebar-item/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | Object.defineProperty(exports, '__esModule', { value: true });
3 | var component_1 = require('../common/component');
4 | component_1.VantComponent({
5 | classes: ['active-class', 'disabled-class'],
6 | relation: {
7 | type: 'ancestor',
8 | name: 'sidebar',
9 | current: 'sidebar-item',
10 | },
11 | props: {
12 | dot: Boolean,
13 | badge: null,
14 | info: null,
15 | title: String,
16 | disabled: Boolean,
17 | },
18 | methods: {
19 | onClick: function () {
20 | var _this = this;
21 | var parent = this.parent;
22 | if (!parent || this.data.disabled) {
23 | return;
24 | }
25 | var index = parent.children.indexOf(this);
26 | parent.setActive(index).then(function () {
27 | _this.$emit('click', index);
28 | parent.$emit('change', index);
29 | });
30 | },
31 | setActive: function (selected) {
32 | return this.setData({ selected: selected });
33 | },
34 | },
35 | });
36 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/cell/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | Object.defineProperty(exports, '__esModule', { value: true });
3 | var link_1 = require('../mixins/link');
4 | var component_1 = require('../common/component');
5 | component_1.VantComponent({
6 | classes: [
7 | 'title-class',
8 | 'label-class',
9 | 'value-class',
10 | 'right-icon-class',
11 | 'hover-class',
12 | ],
13 | mixins: [link_1.link],
14 | props: {
15 | title: null,
16 | value: null,
17 | icon: String,
18 | size: String,
19 | label: String,
20 | center: Boolean,
21 | isLink: Boolean,
22 | required: Boolean,
23 | clickable: Boolean,
24 | titleWidth: String,
25 | customStyle: String,
26 | arrowDirection: String,
27 | useLabelSlot: Boolean,
28 | border: {
29 | type: Boolean,
30 | value: true,
31 | },
32 | titleStyle: String,
33 | },
34 | methods: {
35 | onClick: function (event) {
36 | this.$emit('click', event.detail);
37 | this.jumpLink();
38 | },
39 | },
40 | });
41 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/picker-column/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
11 |
12 | {{ getOptionText(option, valueKey) }}
21 |
22 |
23 |
--------------------------------------------------------------------------------
/native/pages/index/main.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | 📇
6 | 暂无名片数据
7 |
8 |
9 |
10 |
11 | {{ item.base.nick }}
12 | {{ item.ext['职位'] || '暂无职位' }}
13 |
14 |
15 | {{ item.base.mobile }}
16 | {{ item.ext['邮箱'] || '暂无邮箱' }}
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/image/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';.van-image{position:relative;display:inline-block}.van-image--round{overflow:hidden;border-radius:50%}.van-image--round .van-image__img{border-radius:inherit}.van-image__error,.van-image__img,.van-image__loading{display:block;width:100%;height:100%}.van-image__error,.van-image__loading{position:absolute;top:0;left:0;display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;color:#969799;color:var(--image-placeholder-text-color,#969799);font-size:14px;font-size:var(--image-placeholder-font-size,14px);background-color:#f7f8fa;background-color:var(--image-placeholder-background-color,#f7f8fa)}.van-image__loading-icon{color:#dcdee0;color:var(--image-loading-icon-color,#dcdee0);font-size:32px!important;font-size:var(--image-loading-icon-size,32px)!important}.van-image__error-icon{color:#dcdee0;color:var(--image-error-icon-color,#dcdee0);font-size:32px!important;font-size:var(--image-error-icon-size,32px)!important}
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/toast/index.wxml:
--------------------------------------------------------------------------------
1 |
7 |
12 |
16 |
17 | {{ message }}
18 |
19 |
20 |
21 |
27 |
28 | {{ message }}
29 |
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/goods-action-button/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
28 | {{ text }}
29 |
30 |
31 |
--------------------------------------------------------------------------------
/native/pages/user/info.wxml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/tree-select/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';.van-tree-select{position:relative;display:-webkit-flex;display:flex;-webkit-user-select:none;user-select:none;font-size:14px;font-size:var(--tree-select-font-size,14px)}.van-tree-select__nav{-webkit-flex:1;flex:1;background-color:#f7f8fa;background-color:var(--tree-select-nav-background-color,#f7f8fa);--sidebar-padding:12px 8px 12px 12px}.van-tree-select__nav__inner{width:100%!important;height:100%}.van-tree-select__content{-webkit-flex:2;flex:2;background-color:#fff;background-color:var(--tree-select-content-background-color,#fff)}.van-tree-select__item{position:relative;font-weight:700;padding:0 32px 0 16px;padding:0 32px 0 var(--padding-md,16px);line-height:44px;line-height:var(--tree-select-item-height,44px)}.van-tree-select__item--active{color:#ee0a24;color:var(--tree-select-item-active-color,#ee0a24)}.van-tree-select__item--disabled{color:#c8c9cc;color:var(--tree-select-item-disabled-color,#c8c9cc)}.van-tree-select__selected{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);right:16px;right:var(--padding-md,16px)}
--------------------------------------------------------------------------------
/mpvue/src/App.vue:
--------------------------------------------------------------------------------
1 |
33 |
34 |
45 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/radio-group/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | Object.defineProperty(exports, '__esModule', { value: true });
3 | var component_1 = require('../common/component');
4 | component_1.VantComponent({
5 | field: true,
6 | relation: {
7 | name: 'radio',
8 | type: 'descendant',
9 | current: 'radio-group',
10 | linked: function (target) {
11 | this.updateChild(target);
12 | },
13 | },
14 | props: {
15 | value: {
16 | type: null,
17 | observer: 'updateChildren',
18 | },
19 | disabled: {
20 | type: Boolean,
21 | observer: 'updateChildren',
22 | },
23 | },
24 | methods: {
25 | updateChildren: function () {
26 | var _this = this;
27 | (this.children || []).forEach(function (child) {
28 | return _this.updateChild(child);
29 | });
30 | },
31 | updateChild: function (child) {
32 | var _a = this.data,
33 | value = _a.value,
34 | disabled = _a.disabled;
35 | child.setData({
36 | value: value,
37 | disabled: disabled || child.data.disabled,
38 | });
39 | },
40 | },
41 | });
42 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/share-sheet/options.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';.van-share-sheet__options{position:relative;display:-webkit-flex;display:flex;padding:16px 0 16px 8px;overflow-x:auto;overflow-y:visible;-webkit-overflow-scrolling:touch}.van-share-sheet__options--border:before{position:absolute;box-sizing:border-box;-webkit-transform-origin:center;transform-origin:center;content:" ";pointer-events:none;top:0;right:0;left:16px;border-top:1px solid #ebedf0;-webkit-transform:scaleY(.5);transform:scaleY(.5)}.van-share-sheet__options::-webkit-scrollbar{height:0}.van-share-sheet__option{display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;-webkit-align-items:center;align-items:center;-webkit-user-select:none;user-select:none}.van-share-sheet__option:active{opacity:.7}.van-share-sheet__button{height:auto;padding:0;line-height:inherit;background-color:initial;border:0}.van-share-sheet__button:after{border:0}.van-share-sheet__icon{width:48px;height:48px;margin:0 16px}.van-share-sheet__name{margin-top:8px;padding:0 4px;color:#646566;font-size:12px}.van-share-sheet__option-description{padding:0 4px;color:#c8c9cc;font-size:12px}
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/goods-action-icon/index.wxml:
--------------------------------------------------------------------------------
1 |
25 |
33 |
34 | {{ text }}
35 |
36 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/image/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
19 |
20 |
24 |
25 |
26 |
27 |
31 |
32 |
33 |
34 |
35 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/skeleton/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';.van-skeleton{display:-webkit-flex;display:flex;box-sizing:border-box;width:100%;padding:0 16px;padding:var(--skeleton-padding,0 16px)}.van-skeleton__avatar{-webkit-flex-shrink:0;flex-shrink:0;margin-right:16px;margin-right:var(--padding-md,16px);background-color:#f2f3f5;background-color:var(--skeleton-avatar-background-color,#f2f3f5)}.van-skeleton__avatar--round{border-radius:100%}.van-skeleton__content{-webkit-flex:1;flex:1}.van-skeleton__avatar+.van-skeleton__content{padding-top:8px;padding-top:var(--padding-xs,8px)}.van-skeleton__row,.van-skeleton__title{height:16px;height:var(--skeleton-row-height,16px);background-color:#f2f3f5;background-color:var(--skeleton-row-background-color,#f2f3f5)}.van-skeleton__title{margin:0}.van-skeleton__row:not(:first-child){margin-top:12px;margin-top:var(--skeleton-row-margin-top,12px)}.van-skeleton__title+.van-skeleton__row{margin-top:20px}.van-skeleton--animate{-webkit-animation:van-skeleton-blink 1.2s ease-in-out infinite;animation:van-skeleton-blink 1.2s ease-in-out infinite}@-webkit-keyframes van-skeleton-blink{50%{opacity:.6}}@keyframes van-skeleton-blink{50%{opacity:.6}}
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/checkbox-group/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | Object.defineProperty(exports, '__esModule', { value: true });
3 | var component_1 = require('../common/component');
4 | component_1.VantComponent({
5 | field: true,
6 | relation: {
7 | name: 'checkbox',
8 | type: 'descendant',
9 | current: 'checkbox-group',
10 | linked: function (target) {
11 | this.updateChild(target);
12 | },
13 | },
14 | props: {
15 | max: Number,
16 | value: {
17 | type: Array,
18 | observer: 'updateChildren',
19 | },
20 | disabled: {
21 | type: Boolean,
22 | observer: 'updateChildren',
23 | },
24 | },
25 | methods: {
26 | updateChildren: function () {
27 | var _this = this;
28 | (this.children || []).forEach(function (child) {
29 | return _this.updateChild(child);
30 | });
31 | },
32 | updateChild: function (child) {
33 | var _a = this.data,
34 | value = _a.value,
35 | disabled = _a.disabled;
36 | child.setData({
37 | value: value.indexOf(child.data.name) !== -1,
38 | parentDisabled: disabled,
39 | });
40 | },
41 | },
42 | });
43 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/grid-item/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 | {{ text }}
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/calendar/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';.van-calendar{display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;height:100%;height:var(--calendar-height,100%);background-color:#fff;background-color:var(--calendar-background-color,#fff)}.van-calendar__close-icon{top:11px}.van-calendar__popup--bottom,.van-calendar__popup--top{height:80%;height:var(--calendar-popup-height,80%)}.van-calendar__popup--left,.van-calendar__popup--right{height:100%}.van-calendar__body{-webkit-flex:1;flex:1;overflow:auto;-webkit-overflow-scrolling:touch}.van-calendar__footer{-webkit-flex-shrink:0;flex-shrink:0;padding:0 16px;padding:0 var(--padding-md,16px)}.van-calendar__footer--safe-area-inset-bottom{padding-bottom:env(safe-area-inset-bottom)}.van-calendar__footer+.van-calendar__footer,.van-calendar__footer:empty{display:none}.van-calendar__footer:empty+.van-calendar__footer{display:block!important}.van-calendar__confirm{height:36px!important;height:var(--calendar-confirm-button-height,36px)!important;margin:7px 0!important;margin:var(--calendar-confirm-button-margin,7px 0)!important;line-height:34px!important;line-height:var(--calendar-confirm-button-line-height,34px)!important}
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/notice-bar/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
9 |
15 |
16 |
17 |
18 |
19 | {{ text }}
20 |
21 |
22 |
23 |
29 |
34 |
35 |
36 |
37 |
38 |
--------------------------------------------------------------------------------
/native/pages/user/info.wxss:
--------------------------------------------------------------------------------
1 | /* 用户信息页面 - 现代表单设计 */
2 | page {
3 | background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
4 | padding: 0 32rpx;
5 | box-sizing: border-box;
6 | }
7 |
8 | form {
9 | padding: 0 30rpx;
10 | }
11 |
12 | .van-cell {
13 | margin-bottom: 24rpx;
14 | border-radius: 16rpx;
15 | overflow: hidden;
16 | box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.04);
17 | }
18 |
19 | .van-field {
20 | background: #ffffff;
21 | border-radius: 16rpx;
22 | margin-bottom: 24rpx;
23 | box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.04);
24 | }
25 |
26 | .van-uploader {
27 | padding: 32rpx;
28 | background: #ffffff;
29 | border-radius: 16rpx;
30 | margin: 24rpx 0;
31 | box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.04);
32 | }
33 |
34 | .btn {
35 | padding: 32rpx;
36 | }
37 |
38 | .btn button {
39 | background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
40 | border-radius: 48rpx;
41 | height: 96rpx;
42 | font-size: 32rpx;
43 | font-weight: 600;
44 | box-shadow: 0 8rpx 24rpx rgba(102, 126, 234, 0.3);
45 | border: none;
46 | transition: all 0.3s ease;
47 | }
48 |
49 | .btn button:active {
50 | transform: scale(0.98);
51 | box-shadow: 0 4rpx 16rpx rgba(102, 126, 234, 0.2);
52 | }
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/skeleton/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | Object.defineProperty(exports, '__esModule', { value: true });
3 | var component_1 = require('../common/component');
4 | component_1.VantComponent({
5 | classes: ['avatar-class', 'title-class', 'row-class'],
6 | props: {
7 | row: {
8 | type: Number,
9 | value: 0,
10 | observer: function (value) {
11 | this.setData({ rowArray: Array.from({ length: value }) });
12 | },
13 | },
14 | title: Boolean,
15 | avatar: Boolean,
16 | loading: {
17 | type: Boolean,
18 | value: true,
19 | },
20 | animate: {
21 | type: Boolean,
22 | value: true,
23 | },
24 | avatarSize: {
25 | type: String,
26 | value: '32px',
27 | },
28 | avatarShape: {
29 | type: String,
30 | value: 'round',
31 | },
32 | titleWidth: {
33 | type: String,
34 | value: '40%',
35 | },
36 | rowWidth: {
37 | type: null,
38 | value: '100%',
39 | observer: function (val) {
40 | this.setData({ isArray: val instanceof Array });
41 | },
42 | },
43 | },
44 | data: {
45 | isArray: false,
46 | rowArray: [],
47 | },
48 | });
49 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/calendar/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
19 |
23 |
24 |
25 |
30 |
31 |
32 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/row/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | Object.defineProperty(exports, '__esModule', { value: true });
3 | var component_1 = require('../common/component');
4 | component_1.VantComponent({
5 | relation: {
6 | name: 'col',
7 | type: 'descendant',
8 | current: 'row',
9 | linked: function (target) {
10 | if (this.data.gutter) {
11 | target.setGutter(this.data.gutter);
12 | }
13 | },
14 | },
15 | props: {
16 | gutter: {
17 | type: Number,
18 | observer: 'setGutter',
19 | },
20 | },
21 | data: {
22 | viewStyle: '',
23 | },
24 | mounted: function () {
25 | if (this.data.gutter) {
26 | this.setGutter();
27 | }
28 | },
29 | methods: {
30 | setGutter: function () {
31 | var _this = this;
32 | var gutter = this.data.gutter;
33 | var margin = '-' + Number(gutter) / 2 + 'px';
34 | var viewStyle = gutter
35 | ? 'margin-right: ' + margin + '; margin-left: ' + margin + ';'
36 | : '';
37 | this.setData({ viewStyle: viewStyle });
38 | this.getRelationNodes('../col/index').forEach(function (col) {
39 | col.setGutter(_this.data.gutter);
40 | });
41 | },
42 | },
43 | });
44 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/info/index.wxss:
--------------------------------------------------------------------------------
1 | @import '../common/index.wxss';.van-info{position:absolute;top:0;right:0;display:-webkit-inline-flex;display:inline-flex;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;box-sizing:border-box;white-space:nowrap;-webkit-transform:translate(50%,-50%);transform:translate(50%,-50%);-webkit-transform-origin:100%;transform-origin:100%;height:16px;height:var(--info-size,16px);min-width:16px;min-width:var(--info-size,16px);padding:0 3px;padding:var(--info-padding,0 3px);color:#fff;color:var(--info-color,#fff);font-weight:500;font-weight:var(--info-font-weight,500);font-size:12px;font-size:var(--info-font-size,12px);font-family:-apple-system-font,Helvetica Neue,Arial,sans-serif;font-family:var(--info-font-family,-apple-system-font,Helvetica Neue,Arial,sans-serif);background-color:#ee0a24;background-color:var(--info-background-color,#ee0a24);border:1px solid #fff;border:var(--info-border-width,1px) solid var(--white,#fff);border-radius:16px;border-radius:var(--info-size,16px)}.van-info--dot{min-width:0;border-radius:100%;width:8px;width:var(--info-dot-size,8px);height:8px;height:var(--info-dot-size,8px);background-color:#ee0a24;background-color:var(--info-dot-color,#ee0a24)}
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/rate/index.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
13 |
22 |
23 |
33 |
34 |
35 |
--------------------------------------------------------------------------------
/native/miniprogram_npm/@vant/weapp/common/index.wxss:
--------------------------------------------------------------------------------
1 | .van-ellipsis{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.van-multi-ellipsis--l2{-webkit-line-clamp:2}.van-multi-ellipsis--l2,.van-multi-ellipsis--l3{display:-webkit-box;overflow:hidden;text-overflow:ellipsis;-webkit-box-orient:vertical}.van-multi-ellipsis--l3{-webkit-line-clamp:3}.van-clearfix:after{display:table;clear:both;content:""}.van-hairline,.van-hairline--bottom,.van-hairline--left,.van-hairline--right,.van-hairline--surround,.van-hairline--top,.van-hairline--top-bottom{position:relative}.van-hairline--bottom:after,.van-hairline--left:after,.van-hairline--right:after,.van-hairline--surround:after,.van-hairline--top-bottom:after,.van-hairline--top:after,.van-hairline:after{position:absolute;box-sizing:border-box;-webkit-transform-origin:center;transform-origin:center;content:" ";pointer-events:none;top:-50%;right:-50%;bottom:-50%;left:-50%;border:0 solid #ebedf0;-webkit-transform:scale(.5);transform:scale(.5)}.van-hairline--top:after{border-top-width:1px}.van-hairline--left:after{border-left-width:1px}.van-hairline--right:after{border-right-width:1px}.van-hairline--bottom:after{border-bottom-width:1px}.van-hairline--top-bottom:after{border-width:1px 0}.van-hairline--surround:after{border-width:1px}
--------------------------------------------------------------------------------