├── .gitignore
├── uni.scss
├── unpackage
└── dist
│ └── dev
│ ├── .automator
│ ├── app-plus
│ │ └── .automator.json
│ └── mp-weixin
│ │ └── .automator.json
│ ├── mp-weixin
│ ├── components
│ │ ├── popup
│ │ │ ├── popup.js
│ │ │ ├── popup.json
│ │ │ └── popup.wxml
│ │ ├── navbar
│ │ │ ├── navbar.json
│ │ │ ├── navbar.wxss
│ │ │ └── navbar.wxml
│ │ └── shopcart
│ │ │ ├── shopCart.json
│ │ │ ├── shopCart.wxml
│ │ │ └── shopCart.wxss
│ ├── pages
│ │ ├── order
│ │ │ ├── index.wxml
│ │ │ └── index.json
│ │ ├── profile
│ │ │ ├── web
│ │ │ │ ├── help.wxml
│ │ │ │ ├── comment.wxml
│ │ │ │ ├── feedback.wxml
│ │ │ │ ├── help.json
│ │ │ │ ├── comment.json
│ │ │ │ ├── feedback.json
│ │ │ │ ├── editAddress.json
│ │ │ │ ├── login.wxss
│ │ │ │ ├── login.json
│ │ │ │ ├── editAddress.wxss
│ │ │ │ ├── address.json
│ │ │ │ ├── editAddress.wxml
│ │ │ │ ├── login.wxml
│ │ │ │ └── address.wxss
│ │ │ ├── index.json
│ │ │ └── index.wxss
│ │ ├── shop
│ │ │ ├── web
│ │ │ │ ├── comment.wxml
│ │ │ │ ├── comment.json
│ │ │ │ ├── foodList.json
│ │ │ │ └── foodList.wxml
│ │ │ ├── index.json
│ │ │ ├── index.wxss
│ │ │ └── index.wxml
│ │ └── index
│ │ │ ├── web
│ │ │ ├── opList.json
│ │ │ ├── shopClassify.json
│ │ │ ├── shopList.json
│ │ │ ├── shopClassify.wxss
│ │ │ ├── shopClassify.wxml
│ │ │ ├── opList.wxss
│ │ │ ├── opList.wxml
│ │ │ └── shopList.wxss
│ │ │ ├── index.json
│ │ │ └── index.wxml
│ ├── uni_modules
│ │ ├── uni-swipe-action
│ │ │ └── components
│ │ │ │ ├── uni-swipe-action
│ │ │ │ ├── uni-swipe-action.wxml
│ │ │ │ └── uni-swipe-action.json
│ │ │ │ └── uni-swipe-action-item
│ │ │ │ ├── uni-swipe-action-item.json
│ │ │ │ └── uni-swipe-action-item.wxss
│ │ ├── uni-forms
│ │ │ └── components
│ │ │ │ ├── uni-forms
│ │ │ │ ├── uni-forms.wxss
│ │ │ │ ├── uni-forms.json
│ │ │ │ └── uni-forms.wxml
│ │ │ │ └── uni-forms-item
│ │ │ │ ├── uni-forms-item.json
│ │ │ │ ├── uni-forms-item.wxml
│ │ │ │ └── uni-forms-item.wxss
│ │ ├── uni-grid
│ │ │ └── components
│ │ │ │ ├── uni-grid
│ │ │ │ ├── uni-grid.json
│ │ │ │ ├── uni-grid.wxml
│ │ │ │ └── uni-grid.wxss
│ │ │ │ └── uni-grid-item
│ │ │ │ ├── uni-grid-item.json
│ │ │ │ ├── uni-grid-item.wxml
│ │ │ │ └── uni-grid-item.wxss
│ │ ├── uni-icons
│ │ │ └── components
│ │ │ │ └── uni-icons
│ │ │ │ ├── uni-icons.json
│ │ │ │ └── uni-icons.wxml
│ │ ├── uni-segmented-control
│ │ │ └── components
│ │ │ │ └── uni-segmented-control
│ │ │ │ ├── uni-segmented-control.json
│ │ │ │ ├── uni-segmented-control.wxss
│ │ │ │ └── uni-segmented-control.wxml
│ │ └── uni-notice-bar
│ │ │ └── components
│ │ │ └── uni-notice-bar
│ │ │ └── uni-notice-bar.json
│ ├── app.js
│ ├── static
│ │ ├── c1.png
│ │ ├── c2.png
│ │ ├── c3.png
│ │ ├── c4.png
│ │ ├── c5.png
│ │ ├── c6.png
│ │ ├── c7.png
│ │ ├── c8.png
│ │ ├── c9.png
│ │ ├── uni.png
│ │ ├── logo.png
│ │ ├── customicons.ttf
│ │ ├── img
│ │ │ ├── tabbar
│ │ │ │ ├── cart.png
│ │ │ │ ├── home.png
│ │ │ │ ├── news.png
│ │ │ │ ├── member.png
│ │ │ │ ├── cart-active.png
│ │ │ │ ├── home-active.png
│ │ │ │ ├── news-active.png
│ │ │ │ └── member-active.png
│ │ │ ├── default_avatar.png
│ │ │ └── shopcart
│ │ │ │ ├── active.png
│ │ │ │ └── default.png
│ │ └── customicons.css
│ ├── app.wxss
│ ├── common
│ │ └── main.wxss
│ ├── project.config.json
│ └── app.json
│ └── app-plus
│ ├── static
│ ├── logo.png
│ ├── uni.png
│ └── img
│ │ ├── tabbar
│ │ ├── cart.png
│ │ ├── home.png
│ │ ├── member.png
│ │ ├── news.png
│ │ ├── cart-active.png
│ │ ├── home-active.png
│ │ ├── news-active.png
│ │ └── member-active.png
│ │ ├── default_avatar.png
│ │ └── shopcart
│ │ ├── active.png
│ │ ├── default.png
│ │ └── shop-cart.png
│ ├── __uniapperror.png
│ ├── __uniappsuccess.png
│ ├── uni_modules
│ └── uni-icons
│ │ └── components
│ │ └── uni-icons
│ │ └── uniicons.ttf
│ └── __uniappview.html
├── uni_modules
├── uni-scss
│ ├── index.scss
│ ├── styles
│ │ ├── setting
│ │ │ ├── _border.scss
│ │ │ ├── _text.scss
│ │ │ ├── _space.scss
│ │ │ ├── _radius.scss
│ │ │ └── _color.scss
│ │ ├── index.scss
│ │ └── tools
│ │ │ └── functions.scss
│ ├── changelog.md
│ ├── readme.md
│ ├── theme.scss
│ ├── variables.scss
│ └── package.json
├── uni-fav
│ ├── components
│ │ └── uni-fav
│ │ │ └── i18n
│ │ │ ├── zh-Hans.json
│ │ │ ├── zh-Hant.json
│ │ │ ├── en.json
│ │ │ └── index.js
│ ├── readme.md
│ ├── changelog.md
│ └── package.json
├── uni-pagination
│ ├── components
│ │ └── uni-pagination
│ │ │ └── i18n
│ │ │ ├── en.json
│ │ │ ├── es.json
│ │ │ ├── zh-Hans.json
│ │ │ ├── zh-Hant.json
│ │ │ ├── fr.json
│ │ │ └── index.js
│ ├── readme.md
│ └── changelog.md
├── uni-ui
│ └── components
│ │ └── uni-ui
│ │ └── uni-ui.vue
├── uni-icons
│ ├── components
│ │ └── uni-icons
│ │ │ └── uniicons.ttf
│ ├── readme.md
│ ├── changelog.md
│ └── package.json
├── uni-search-bar
│ ├── components
│ │ └── uni-search-bar
│ │ │ └── i18n
│ │ │ ├── zh-Hans.json
│ │ │ ├── zh-Hant.json
│ │ │ ├── en.json
│ │ │ └── index.js
│ ├── readme.md
│ └── changelog.md
├── uni-countdown
│ ├── components
│ │ └── uni-countdown
│ │ │ └── i18n
│ │ │ ├── en.json
│ │ │ ├── zh-Hans.json
│ │ │ ├── zh-Hant.json
│ │ │ └── index.js
│ ├── readme.md
│ ├── changelog.md
│ └── package.json
├── uni-load-more
│ ├── components
│ │ └── uni-load-more
│ │ │ └── i18n
│ │ │ ├── zh-Hans.json
│ │ │ ├── zh-Hant.json
│ │ │ ├── en.json
│ │ │ └── index.js
│ ├── readme.md
│ ├── changelog.md
│ └── package.json
├── uni-popup
│ ├── components
│ │ ├── uni-popup
│ │ │ ├── i18n
│ │ │ │ ├── zh-Hant.json
│ │ │ │ ├── zh-Hans.json
│ │ │ │ ├── en.json
│ │ │ │ └── index.js
│ │ │ ├── popup.js
│ │ │ └── keypress.js
│ │ └── uni-popup-dialog
│ │ │ └── keypress.js
│ ├── readme.md
│ ├── changelog.md
│ └── package.json
├── uni-fab
│ ├── readme.md
│ ├── changelog.md
│ └── package.json
├── uni-calendar
│ ├── components
│ │ └── uni-calendar
│ │ │ └── i18n
│ │ │ ├── index.js
│ │ │ ├── zh-Hans.json
│ │ │ ├── zh-Hant.json
│ │ │ └── en.json
│ ├── changelog.md
│ └── package.json
├── uni-goods-nav
│ ├── components
│ │ └── uni-goods-nav
│ │ │ └── i18n
│ │ │ ├── index.js
│ │ │ ├── zh-Hans.json
│ │ │ ├── zh-Hant.json
│ │ │ └── en.json
│ ├── readme.md
│ └── changelog.md
├── uni-grid
│ ├── readme.md
│ ├── changelog.md
│ └── package.json
├── uni-test
│ ├── readme.md
│ ├── components
│ │ └── uni-test
│ │ │ └── uni-test.vue
│ ├── changelog.md
│ └── package.json
├── uni-drawer
│ ├── readme.md
│ ├── changelog.md
│ ├── components
│ │ └── uni-drawer
│ │ │ └── keypress.js
│ └── package.json
├── uni-group
│ ├── readme.md
│ ├── changelog.md
│ └── package.json
├── uni-combox
│ ├── readme.md
│ └── changelog.md
├── uni-datetime-picker
│ ├── components
│ │ └── uni-datetime-picker
│ │ │ ├── i18n
│ │ │ ├── index.js
│ │ │ ├── zh-Hans.json
│ │ │ ├── zh-Hant.json
│ │ │ └── en.json
│ │ │ └── keypress.js
│ └── readme.md
├── uni-card
│ ├── readme.md
│ └── changelog.md
├── uni-steps
│ ├── readme.md
│ └── changelog.md
├── uni-table
│ ├── readme.md
│ ├── i18n
│ │ ├── zh-Hans.json
│ │ ├── zh-Hant.json
│ │ ├── index.js
│ │ ├── en.json
│ │ ├── es.json
│ │ └── fr.json
│ ├── components
│ │ └── uni-tbody
│ │ │ └── uni-tbody.vue
│ ├── changelog.md
│ └── package.json
├── uni-transition
│ ├── readme.md
│ ├── changelog.md
│ └── package.json
├── uni-dateformat
│ ├── readme.md
│ ├── changelog.md
│ └── components
│ │ └── uni-dateformat
│ │ └── uni-dateformat.vue
├── uni-row
│ ├── readme.md
│ ├── changelog.md
│ └── package.json
├── uni-swiper-dot
│ ├── readme.md
│ ├── changelog.md
│ └── package.json
├── uni-tag
│ ├── readme.md
│ ├── changelog.md
│ └── package.json
├── uni-rate
│ ├── readme.md
│ ├── changelog.md
│ └── package.json
├── uni-badge
│ ├── readme.md
│ └── changelog.md
├── uni-indexed-list
│ ├── readme.md
│ └── changelog.md
├── uni-link
│ ├── readme.md
│ └── changelog.md
├── uni-notice-bar
│ ├── readme.md
│ └── changelog.md
├── uni-nav-bar
│ ├── readme.md
│ ├── components
│ │ └── uni-nav-bar
│ │ │ └── uni-status-bar.vue
│ └── changelog.md
├── uni-number-box
│ ├── readme.md
│ ├── changelog.md
│ └── package.json
├── uni-swipe-action
│ ├── readme.md
│ ├── components
│ │ ├── uni-swipe-action-item
│ │ │ ├── isPC.js
│ │ │ └── mpwxs.js
│ │ └── uni-swipe-action
│ │ │ └── uni-swipe-action.vue
│ └── changelog.md
├── uni-file-picker
│ └── readme.md
├── uni-title
│ ├── readme.md
│ └── changelog.md
├── uni-segmented-control
│ ├── readme.md
│ └── changelog.md
├── uni-collapse
│ ├── readme.md
│ └── changelog.md
├── uni-easyinput
│ ├── readme.md
│ ├── changelog.md
│ └── components
│ │ └── uni-easyinput
│ │ └── common.js
├── uni-list
│ ├── changelog.md
│ └── components
│ │ ├── uni-list-chat
│ │ └── uni-list-chat.scss
│ │ └── uni-list
│ │ └── uni-refresh.vue
├── uni-data-checkbox
│ ├── readme.md
│ └── changelog.md
├── uni-forms
│ ├── readme.md
│ └── changelog.md
└── uni-data-picker
│ ├── readme.md
│ ├── components
│ └── uni-data-picker
│ │ └── keypress.js
│ └── changelog.md
├── static
├── logo.png
├── uni.png
└── img
│ ├── tabbar
│ ├── cart.png
│ ├── home.png
│ ├── news.png
│ ├── member.png
│ ├── cart-active.png
│ ├── home-active.png
│ ├── news-active.png
│ └── member-active.png
│ ├── default_avatar.png
│ └── shopcart
│ ├── active.png
│ ├── default.png
│ └── shop-cart.png
├── uni_modules.7z
├── config.json
├── pages
├── profile
│ ├── web
│ │ ├── feedback.vue
│ │ └── help.vue
│ └── config.js
└── index
│ └── web
│ └── shopClassify.vue
├── package.json
├── index.html
├── App.vue
├── .hbuilderx
└── launch.json
├── main.js
├── components
├── navbar
│ └── navbar.vue
└── popup
│ └── popup.vue
├── plugins
└── axios
│ ├── axios.js
│ └── index.js
├── README.md
└── apis
└── front-apis.js
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
--------------------------------------------------------------------------------
/uni.scss:
--------------------------------------------------------------------------------
1 | @import '@/uni_modules/uni-scss/variables.scss';
--------------------------------------------------------------------------------
/unpackage/dist/dev/.automator/app-plus/.automator.json:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/.automator/mp-weixin/.automator.json:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/uni_modules/uni-scss/index.scss:
--------------------------------------------------------------------------------
1 | @import './styles/index.scss';
2 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/components/popup/popup.js:
--------------------------------------------------------------------------------
1 | Component({})
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/order/index.wxml:
--------------------------------------------------------------------------------
1 | 订单页面
--------------------------------------------------------------------------------
/static/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/static/logo.png
--------------------------------------------------------------------------------
/static/uni.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/static/uni.png
--------------------------------------------------------------------------------
/uni_modules.7z:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/uni_modules.7z
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/profile/web/help.wxml:
--------------------------------------------------------------------------------
1 | 帮助中心
--------------------------------------------------------------------------------
/static/img/tabbar/cart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/static/img/tabbar/cart.png
--------------------------------------------------------------------------------
/static/img/tabbar/home.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/static/img/tabbar/home.png
--------------------------------------------------------------------------------
/static/img/tabbar/news.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/static/img/tabbar/news.png
--------------------------------------------------------------------------------
/uni_modules/uni-scss/styles/setting/_border.scss:
--------------------------------------------------------------------------------
1 | .uni-border {
2 | border: 1px $uni-border-1 solid;
3 | }
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/profile/web/comment.wxml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/shop/web/comment.wxml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/config.json:
--------------------------------------------------------------------------------
1 | {
2 | "axios_config": {
3 | "host": "http://124.70.20.215",
4 | "port": 2140
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/static/img/tabbar/member.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/static/img/tabbar/member.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/profile/web/feedback.wxml:
--------------------------------------------------------------------------------
1 | 客服中心
--------------------------------------------------------------------------------
/static/img/default_avatar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/static/img/default_avatar.png
--------------------------------------------------------------------------------
/static/img/shopcart/active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/static/img/shopcart/active.png
--------------------------------------------------------------------------------
/static/img/shopcart/default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/static/img/shopcart/default.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/components/navbar/navbar.json:
--------------------------------------------------------------------------------
1 | {
2 | "usingComponents": {},
3 | "component": true
4 | }
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/components/popup/popup.json:
--------------------------------------------------------------------------------
1 | {
2 | "usingComponents": {},
3 | "component": true
4 | }
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/shop/web/comment.json:
--------------------------------------------------------------------------------
1 | {
2 | "usingComponents": {},
3 | "component": true
4 | }
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/shop/web/foodList.json:
--------------------------------------------------------------------------------
1 | {
2 | "usingComponents": {},
3 | "component": true
4 | }
--------------------------------------------------------------------------------
/static/img/shopcart/shop-cart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/static/img/shopcart/shop-cart.png
--------------------------------------------------------------------------------
/static/img/tabbar/cart-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/static/img/tabbar/cart-active.png
--------------------------------------------------------------------------------
/static/img/tabbar/home-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/static/img/tabbar/home-active.png
--------------------------------------------------------------------------------
/static/img/tabbar/news-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/static/img/tabbar/news-active.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/components/shopcart/shopCart.json:
--------------------------------------------------------------------------------
1 | {
2 | "usingComponents": {},
3 | "component": true
4 | }
--------------------------------------------------------------------------------
/static/img/tabbar/member-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/static/img/tabbar/member-active.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/order/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "我的订单",
3 | "usingComponents": {}
4 | }
--------------------------------------------------------------------------------
/uni_modules/uni-fav/components/uni-fav/i18n/zh-Hans.json:
--------------------------------------------------------------------------------
1 | {
2 | "uni-fav.collect": "收藏",
3 | "uni-fav.collected": "已收藏"
4 | }
5 |
--------------------------------------------------------------------------------
/uni_modules/uni-fav/components/uni-fav/i18n/zh-Hant.json:
--------------------------------------------------------------------------------
1 | {
2 | "uni-fav.collect": "收藏",
3 | "uni-fav.collected": "已收藏"
4 | }
5 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/profile/web/help.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "帮助中心",
3 | "usingComponents": {}
4 | }
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/uni_modules/uni-swipe-action/components/uni-swipe-action/uni-swipe-action.wxml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/uni_modules/uni-fav/components/uni-fav/i18n/en.json:
--------------------------------------------------------------------------------
1 | {
2 | "uni-fav.collect": "collect",
3 | "uni-fav.collected": "collected"
4 | }
5 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/app.js:
--------------------------------------------------------------------------------
1 |
2 | require('./common/runtime.js')
3 | require('./common/vendor.js')
4 | require('./common/main.js')
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/profile/web/comment.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "我的评价",
3 | "usingComponents": {}
4 | }
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/profile/web/feedback.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "客服中心",
3 | "usingComponents": {}
4 | }
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/unpackage/dist/dev/app-plus/static/logo.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/uni.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/unpackage/dist/dev/app-plus/static/uni.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/profile/web/editAddress.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "编辑收货地址",
3 | "usingComponents": {}
4 | }
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/c1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/unpackage/dist/dev/mp-weixin/static/c1.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/c2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/unpackage/dist/dev/mp-weixin/static/c2.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/c3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/unpackage/dist/dev/mp-weixin/static/c3.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/c4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/unpackage/dist/dev/mp-weixin/static/c4.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/c5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/unpackage/dist/dev/mp-weixin/static/c5.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/c6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/unpackage/dist/dev/mp-weixin/static/c6.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/c7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/unpackage/dist/dev/mp-weixin/static/c7.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/c8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/unpackage/dist/dev/mp-weixin/static/c8.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/c9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/unpackage/dist/dev/mp-weixin/static/c9.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/uni.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/unpackage/dist/dev/mp-weixin/static/uni.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/uni_modules/uni-forms/components/uni-forms/uni-forms.wxss:
--------------------------------------------------------------------------------
1 | @charset "UTF-8";
2 | /* 水平间距 */
3 | /* 水平间距 */
4 |
5 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/uni_modules/uni-grid/components/uni-grid/uni-grid.json:
--------------------------------------------------------------------------------
1 | {
2 | "usingComponents": {},
3 | "component": true
4 | }
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/__uniapperror.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/unpackage/dist/dev/app-plus/__uniapperror.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/unpackage/dist/dev/mp-weixin/static/logo.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/uni_modules/uni-forms/components/uni-forms/uni-forms.json:
--------------------------------------------------------------------------------
1 | {
2 | "usingComponents": {},
3 | "component": true
4 | }
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/uni_modules/uni-icons/components/uni-icons/uni-icons.json:
--------------------------------------------------------------------------------
1 | {
2 | "usingComponents": {},
3 | "component": true
4 | }
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/__uniappsuccess.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/unpackage/dist/dev/app-plus/__uniappsuccess.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/uni_modules/uni-grid/components/uni-grid-item/uni-grid-item.json:
--------------------------------------------------------------------------------
1 | {
2 | "usingComponents": {},
3 | "component": true
4 | }
--------------------------------------------------------------------------------
/uni_modules/uni-pagination/components/uni-pagination/i18n/en.json:
--------------------------------------------------------------------------------
1 | {
2 | "uni-pagination.prevText": "prev",
3 | "uni-pagination.nextText": "next"
4 | }
5 |
--------------------------------------------------------------------------------
/uni_modules/uni-ui/components/uni-ui/uni-ui.vue:
--------------------------------------------------------------------------------
1 |
2 | 占位组件,请勿使用
3 |
4 |
6 |
8 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/customicons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/unpackage/dist/dev/mp-weixin/static/customicons.ttf
--------------------------------------------------------------------------------
/uni_modules/uni-pagination/components/uni-pagination/i18n/es.json:
--------------------------------------------------------------------------------
1 | {
2 | "uni-pagination.prevText": "anterior",
3 | "uni-pagination.nextText": "próxima"
4 | }
5 |
--------------------------------------------------------------------------------
/uni_modules/uni-pagination/components/uni-pagination/i18n/zh-Hans.json:
--------------------------------------------------------------------------------
1 | {
2 | "uni-pagination.prevText": "上一页",
3 | "uni-pagination.nextText": "下一页"
4 | }
5 |
--------------------------------------------------------------------------------
/uni_modules/uni-pagination/components/uni-pagination/i18n/zh-Hant.json:
--------------------------------------------------------------------------------
1 | {
2 | "uni-pagination.prevText": "上一頁",
3 | "uni-pagination.nextText": "下一頁"
4 | }
5 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/app.wxss:
--------------------------------------------------------------------------------
1 | @import './common/main.wxss';
2 |
3 | [data-custom-hidden="true"],[bind-data-custom-hidden="true"]{display: none !important;}
--------------------------------------------------------------------------------
/uni_modules/uni-icons/components/uni-icons/uniicons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/uni_modules/uni-icons/components/uni-icons/uniicons.ttf
--------------------------------------------------------------------------------
/uni_modules/uni-pagination/components/uni-pagination/i18n/fr.json:
--------------------------------------------------------------------------------
1 | {
2 | "uni-pagination.prevText": "précédente",
3 | "uni-pagination.nextText": "suivante"
4 | }
5 |
--------------------------------------------------------------------------------
/uni_modules/uni-search-bar/components/uni-search-bar/i18n/zh-Hans.json:
--------------------------------------------------------------------------------
1 | {
2 | "uni-search-bar.cancel": "cancel",
3 | "uni-search-bar.placeholder": "请输入搜索内容"
4 | }
5 |
--------------------------------------------------------------------------------
/uni_modules/uni-search-bar/components/uni-search-bar/i18n/zh-Hant.json:
--------------------------------------------------------------------------------
1 | {
2 | "uni-search-bar.cancel": "cancel",
3 | "uni-search-bar.placeholder": "請輸入搜索內容"
4 | }
5 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/tabbar/cart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/unpackage/dist/dev/app-plus/static/img/tabbar/cart.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/tabbar/home.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/unpackage/dist/dev/app-plus/static/img/tabbar/home.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/tabbar/member.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/unpackage/dist/dev/app-plus/static/img/tabbar/member.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/tabbar/news.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/unpackage/dist/dev/app-plus/static/img/tabbar/news.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/img/tabbar/cart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/unpackage/dist/dev/mp-weixin/static/img/tabbar/cart.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/img/tabbar/home.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/unpackage/dist/dev/mp-weixin/static/img/tabbar/home.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/img/tabbar/news.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/unpackage/dist/dev/mp-weixin/static/img/tabbar/news.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/uni_modules/uni-swipe-action/components/uni-swipe-action/uni-swipe-action.json:
--------------------------------------------------------------------------------
1 | {
2 | "usingComponents": {},
3 | "component": true
4 | }
--------------------------------------------------------------------------------
/uni_modules/uni-search-bar/components/uni-search-bar/i18n/en.json:
--------------------------------------------------------------------------------
1 | {
2 | "uni-search-bar.cancel": "cancel",
3 | "uni-search-bar.placeholder": "Search enter content"
4 | }
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/default_avatar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/unpackage/dist/dev/app-plus/static/img/default_avatar.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/shopcart/active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/unpackage/dist/dev/app-plus/static/img/shopcart/active.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/img/default_avatar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/unpackage/dist/dev/mp-weixin/static/img/default_avatar.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/img/tabbar/member.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/unpackage/dist/dev/mp-weixin/static/img/tabbar/member.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/shopcart/default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/unpackage/dist/dev/app-plus/static/img/shopcart/default.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/shopcart/shop-cart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/unpackage/dist/dev/app-plus/static/img/shopcart/shop-cart.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/tabbar/cart-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/unpackage/dist/dev/app-plus/static/img/tabbar/cart-active.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/tabbar/home-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/unpackage/dist/dev/app-plus/static/img/tabbar/home-active.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/tabbar/news-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/unpackage/dist/dev/app-plus/static/img/tabbar/news-active.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/img/shopcart/active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/unpackage/dist/dev/mp-weixin/static/img/shopcart/active.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/img/shopcart/default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/unpackage/dist/dev/mp-weixin/static/img/shopcart/default.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/uni_modules/uni-swipe-action/components/uni-swipe-action-item/uni-swipe-action-item.json:
--------------------------------------------------------------------------------
1 | {
2 | "usingComponents": {},
3 | "component": true
4 | }
--------------------------------------------------------------------------------
/uni_modules/uni-scss/changelog.md:
--------------------------------------------------------------------------------
1 | ## 1.0.2(2021-11-22)
2 | - 修复 / 符号在 vue 不同版本兼容问题引起的报错问题
3 | ## 1.0.1(2021-11-22)
4 | - 修复 vue3中scss语法兼容问题
5 | ## 1.0.0(2021-11-18)
6 | - init
7 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/static/img/tabbar/member-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/unpackage/dist/dev/app-plus/static/img/tabbar/member-active.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/img/tabbar/cart-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/unpackage/dist/dev/mp-weixin/static/img/tabbar/cart-active.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/img/tabbar/home-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/unpackage/dist/dev/mp-weixin/static/img/tabbar/home-active.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/img/tabbar/news-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/unpackage/dist/dev/mp-weixin/static/img/tabbar/news-active.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/uni_modules/uni-segmented-control/components/uni-segmented-control/uni-segmented-control.json:
--------------------------------------------------------------------------------
1 | {
2 | "usingComponents": {},
3 | "component": true
4 | }
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/img/tabbar/member-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/unpackage/dist/dev/mp-weixin/static/img/tabbar/member-active.png
--------------------------------------------------------------------------------
/uni_modules/uni-countdown/components/uni-countdown/i18n/en.json:
--------------------------------------------------------------------------------
1 | {
2 | "uni-countdown.day": "day",
3 | "uni-countdown.h": "h",
4 | "uni-countdown.m": "m",
5 | "uni-countdown.s": "s"
6 | }
7 |
--------------------------------------------------------------------------------
/uni_modules/uni-countdown/components/uni-countdown/i18n/zh-Hans.json:
--------------------------------------------------------------------------------
1 | {
2 | "uni-countdown.day": "天",
3 | "uni-countdown.h": "时",
4 | "uni-countdown.m": "分",
5 | "uni-countdown.s": "秒"
6 | }
7 |
--------------------------------------------------------------------------------
/uni_modules/uni-countdown/components/uni-countdown/i18n/zh-Hant.json:
--------------------------------------------------------------------------------
1 | {
2 | "uni-countdown.day": "天",
3 | "uni-countdown.h": "時",
4 | "uni-countdown.m": "分",
5 | "uni-countdown.s": "秒"
6 | }
7 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/index/web/opList.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "店铺分类",
3 | "usingComponents": {
4 | "uni-tag": "/uni_modules/uni-tag/components/uni-tag/uni-tag"
5 | }
6 | }
--------------------------------------------------------------------------------
/uni_modules/uni-load-more/components/uni-load-more/i18n/zh-Hans.json:
--------------------------------------------------------------------------------
1 | {
2 | "uni-load-more.contentdown": "上拉显示更多",
3 | "uni-load-more.contentrefresh": "正在加载...",
4 | "uni-load-more.contentnomore": "没有更多数据了"
5 | }
6 |
--------------------------------------------------------------------------------
/uni_modules/uni-load-more/components/uni-load-more/i18n/zh-Hant.json:
--------------------------------------------------------------------------------
1 | {
2 | "uni-load-more.contentdown": "上拉顯示更多",
3 | "uni-load-more.contentrefresh": "正在加載...",
4 | "uni-load-more.contentnomore": "沒有更多數據了"
5 | }
6 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/uni_modules/uni-icons/components/uni-icons/uniicons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yg10323/uniapp-order/HEAD/unpackage/dist/dev/app-plus/uni_modules/uni-icons/components/uni-icons/uniicons.ttf
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/common/main.wxss:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 | /*每个页面公共css */
27 |
28 |
--------------------------------------------------------------------------------
/uni_modules/uni-popup/components/uni-popup/i18n/zh-Hant.json:
--------------------------------------------------------------------------------
1 | {
2 | "uni-popup.cancel": "取消",
3 | "uni-popup.ok": "確定",
4 | "uni-popup.placeholder": "請輸入",
5 | "uni-popup.title": "提示",
6 | "uni-popup.shareTitle": "分享到"
7 | }
8 |
--------------------------------------------------------------------------------
/uni_modules/uni-load-more/components/uni-load-more/i18n/en.json:
--------------------------------------------------------------------------------
1 | {
2 | "uni-load-more.contentdown": "Pull up to show more",
3 | "uni-load-more.contentrefresh": "loading...",
4 | "uni-load-more.contentnomore": "No more data"
5 | }
6 |
--------------------------------------------------------------------------------
/uni_modules/uni-popup/components/uni-popup/i18n/zh-Hans.json:
--------------------------------------------------------------------------------
1 | {
2 | "uni-popup.cancel": "取消",
3 | "uni-popup.ok": "确定",
4 | "uni-popup.placeholder": "请输入",
5 | "uni-popup.title": "提示",
6 | "uni-popup.shareTitle": "分享到"
7 | }
8 |
--------------------------------------------------------------------------------
/uni_modules/uni-scss/readme.md:
--------------------------------------------------------------------------------
1 | `uni-sass` 是 `uni-ui`提供的一套全局样式 ,通过一些简单的类名和`sass`变量,实现简单的页面布局操作,比如颜色、边距、圆角等。
2 |
3 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-sass)
4 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/profile/web/login.wxss:
--------------------------------------------------------------------------------
1 | @charset "UTF-8";
2 | /* 水平间距 */
3 | /* 水平间距 */
4 | .login.data-v-2b2020df {
5 | padding: 10px;
6 | }
7 | .btn.data-v-2b2020df {
8 | margin-bottom: 10px;
9 | }
10 |
11 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/uni_modules/uni-forms/components/uni-forms-item/uni-forms-item.json:
--------------------------------------------------------------------------------
1 | {
2 | "usingComponents": {
3 | "uni-icons": "/uni_modules/uni-icons/components/uni-icons/uni-icons"
4 | },
5 | "component": true
6 | }
--------------------------------------------------------------------------------
/pages/profile/web/feedback.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 | 客服中心
4 |
5 |
6 |
7 |
12 |
13 |
15 |
--------------------------------------------------------------------------------
/uni_modules/uni-fab/readme.md:
--------------------------------------------------------------------------------
1 | ## Fab 悬浮按钮
2 | > **组件名:uni-fab**
3 | > 代码块: `uFab`
4 |
5 |
6 | 点击可展开一个图形按钮菜单
7 |
8 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-fab)
9 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
--------------------------------------------------------------------------------
/uni_modules/uni-fav/components/uni-fav/i18n/index.js:
--------------------------------------------------------------------------------
1 | import en from './en.json'
2 | import zhHans from './zh-Hans.json'
3 | import zhHant from './zh-Hant.json'
4 | export default {
5 | en,
6 | 'zh-Hans': zhHans,
7 | 'zh-Hant': zhHant
8 | }
9 |
--------------------------------------------------------------------------------
/uni_modules/uni-popup/components/uni-popup/i18n/en.json:
--------------------------------------------------------------------------------
1 | {
2 | "uni-popup.cancel": "cancel",
3 | "uni-popup.ok": "ok",
4 | "uni-popup.placeholder": "pleace enter",
5 | "uni-popup.title": "Hint",
6 | "uni-popup.shareTitle": "Share to"
7 | }
8 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/uni_modules/uni-notice-bar/components/uni-notice-bar/uni-notice-bar.json:
--------------------------------------------------------------------------------
1 | {
2 | "usingComponents": {
3 | "uni-icons": "/uni_modules/uni-icons/components/uni-icons/uni-icons"
4 | },
5 | "component": true
6 | }
--------------------------------------------------------------------------------
/uni_modules/uni-popup/components/uni-popup/i18n/index.js:
--------------------------------------------------------------------------------
1 | import en from './en.json'
2 | import zhHans from './zh-Hans.json'
3 | import zhHant from './zh-Hant.json'
4 | export default {
5 | en,
6 | 'zh-Hans': zhHans,
7 | 'zh-Hant': zhHant
8 | }
9 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/profile/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "个人中心",
3 | "enablePullDownRefresh": false,
4 | "usingComponents": {
5 | "uni-icons": "/uni_modules/uni-icons/components/uni-icons/uni-icons"
6 | }
7 | }
--------------------------------------------------------------------------------
/uni_modules/uni-calendar/components/uni-calendar/i18n/index.js:
--------------------------------------------------------------------------------
1 | import en from './en.json'
2 | import zhHans from './zh-Hans.json'
3 | import zhHant from './zh-Hant.json'
4 | export default {
5 | en,
6 | 'zh-Hans': zhHans,
7 | 'zh-Hant': zhHant
8 | }
9 |
--------------------------------------------------------------------------------
/uni_modules/uni-countdown/components/uni-countdown/i18n/index.js:
--------------------------------------------------------------------------------
1 | import en from './en.json'
2 | import zhHans from './zh-Hans.json'
3 | import zhHant from './zh-Hant.json'
4 | export default {
5 | en,
6 | 'zh-Hans': zhHans,
7 | 'zh-Hant': zhHant
8 | }
9 |
--------------------------------------------------------------------------------
/uni_modules/uni-goods-nav/components/uni-goods-nav/i18n/index.js:
--------------------------------------------------------------------------------
1 | import en from './en.json'
2 | import zhHans from './zh-Hans.json'
3 | import zhHant from './zh-Hant.json'
4 | export default {
5 | en,
6 | 'zh-Hans': zhHans,
7 | 'zh-Hant': zhHant
8 | }
9 |
--------------------------------------------------------------------------------
/uni_modules/uni-icons/readme.md:
--------------------------------------------------------------------------------
1 | ## Icons 图标
2 | > **组件名:uni-icons**
3 | > 代码块: `uIcons`
4 |
5 | 用于展示 icons 图标 。
6 |
7 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-icons)
8 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
9 |
--------------------------------------------------------------------------------
/uni_modules/uni-load-more/components/uni-load-more/i18n/index.js:
--------------------------------------------------------------------------------
1 | import en from './en.json'
2 | import zhHans from './zh-Hans.json'
3 | import zhHant from './zh-Hant.json'
4 | export default {
5 | en,
6 | 'zh-Hans': zhHans,
7 | 'zh-Hant': zhHant
8 | }
9 |
--------------------------------------------------------------------------------
/uni_modules/uni-grid/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | ## Grid 宫格
4 | > **组件名:uni-grid**
5 | > 代码块: `uGrid`
6 |
7 |
8 | 宫格组件。
9 |
10 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-grid)
11 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
--------------------------------------------------------------------------------
/uni_modules/uni-search-bar/components/uni-search-bar/i18n/index.js:
--------------------------------------------------------------------------------
1 | import en from './en.json'
2 | import zhHans from './zh-Hans.json'
3 | import zhHant from './zh-Hant.json'
4 | export default {
5 | en,
6 | 'zh-Hans': zhHans,
7 | 'zh-Hant': zhHant
8 | }
9 |
--------------------------------------------------------------------------------
/uni_modules/uni-test/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | ## DataCheckbox 数据驱动的单选复选框
4 | > **组件名:uni-data-checkbox**
5 | > 代码块: `uDataCheckbox`
6 |
7 |
8 | 本组件是基于uni-app基础组件checkbox的封装。本组件要解决问题包括:
9 |
10 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-card)
--------------------------------------------------------------------------------
/uni_modules/uni-drawer/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | ## Drawer 抽屉
4 | > **组件名:uni-drawer**
5 | > 代码块: `uDrawer`
6 |
7 | 抽屉侧滑菜单。
8 |
9 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-drawer)
10 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
--------------------------------------------------------------------------------
/uni_modules/uni-fav/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | ## Fav 收藏按钮
4 | > **组件名:uni-fav**
5 | > 代码块: `uFav`
6 |
7 | 用于收藏功能,可点击切换选中、不选中的状态。
8 |
9 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-fav)
10 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
--------------------------------------------------------------------------------
/uni_modules/uni-goods-nav/components/uni-goods-nav/i18n/zh-Hans.json:
--------------------------------------------------------------------------------
1 | {
2 | "uni-goods-nav.options.shop": "店铺",
3 | "uni-goods-nav.options.cart": "购物车",
4 | "uni-goods-nav.buttonGroup.addToCart": "加入购物车",
5 | "uni-goods-nav.buttonGroup.buyNow": "立即购买"
6 | }
7 |
--------------------------------------------------------------------------------
/uni_modules/uni-goods-nav/components/uni-goods-nav/i18n/zh-Hant.json:
--------------------------------------------------------------------------------
1 | {
2 | "uni-goods-nav.options.shop": "店鋪",
3 | "uni-goods-nav.options.cart": "購物車",
4 | "uni-goods-nav.buttonGroup.addToCart": "加入購物車",
5 | "uni-goods-nav.buttonGroup.buyNow": "立即購買"
6 | }
7 |
--------------------------------------------------------------------------------
/uni_modules/uni-group/readme.md:
--------------------------------------------------------------------------------
1 |
2 | ## Group 分组
3 | > **组件名:uni-group**
4 | > 代码块: `uGroup`
5 |
6 | 分组组件可用于将组件分组,添加间隔,以产生明显的区块。
7 |
8 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-group)
9 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
--------------------------------------------------------------------------------
/pages/profile/web/help.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 | 帮助中心
4 |
5 |
6 |
7 |
15 |
16 |
18 |
--------------------------------------------------------------------------------
/uni_modules/uni-combox/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | ## Combox 组合框
4 | > **组件名:uni-combox**
5 | > 代码块: `uCombox`
6 |
7 |
8 | 组合框组件。
9 |
10 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-combox)
11 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
--------------------------------------------------------------------------------
/uni_modules/uni-datetime-picker/components/uni-datetime-picker/i18n/index.js:
--------------------------------------------------------------------------------
1 | import en from './en.json'
2 | import zhHans from './zh-Hans.json'
3 | import zhHant from './zh-Hant.json'
4 | export default {
5 | en,
6 | 'zh-Hans': zhHans,
7 | 'zh-Hant': zhHant
8 | }
9 |
--------------------------------------------------------------------------------
/uni_modules/uni-goods-nav/components/uni-goods-nav/i18n/en.json:
--------------------------------------------------------------------------------
1 | {
2 | "uni-goods-nav.options.shop": "shop",
3 | "uni-goods-nav.options.cart": "cart",
4 | "uni-goods-nav.buttonGroup.addToCart": "add to cart",
5 | "uni-goods-nav.buttonGroup.buyNow": "buy now"
6 | }
7 |
--------------------------------------------------------------------------------
/uni_modules/uni-card/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | ## Card 卡片
4 | > **组件名:uni-card**
5 | > 代码块: `uCard`
6 |
7 | 卡片视图组件。
8 |
9 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-card)
10 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
11 |
12 |
13 |
--------------------------------------------------------------------------------
/uni_modules/uni-countdown/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | ## CountDown 倒计时
4 | > **组件名:uni-countdown**
5 | > 代码块: `uCountDown`
6 |
7 | 倒计时组件。
8 |
9 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-countdown)
10 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/components/shopcart/shopCart.wxml:
--------------------------------------------------------------------------------
1 | 图片费用右侧
--------------------------------------------------------------------------------
/uni_modules/uni-goods-nav/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | ## GoodsNav 商品导航
4 | > **组件名:uni-goods-nav**
5 | > 代码块: `uGoodsNav`
6 |
7 | 商品加入购物车,立即购买等。
8 |
9 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-goods-nav)
10 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/index/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "外卖猫",
3 | "usingComponents": {
4 | "navbar": "/components/navbar/navbar",
5 | "shop-classify": "/pages/index/web/shopClassify",
6 | "shop-list": "/pages/index/web/shopList"
7 | }
8 | }
--------------------------------------------------------------------------------
/uni_modules/uni-steps/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | ## Steps 步骤条
4 | > **组件名:uni-steps**
5 | > 代码块: `uSteps`
6 |
7 |
8 | 步骤条,常用于显示进度
9 |
10 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-steps)
11 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
12 |
13 |
14 |
--------------------------------------------------------------------------------
/uni_modules/uni-table/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | ## Table 表单
4 | > 组件名:``uni-table``,代码块: `uTable`。
5 |
6 | 用于展示多条结构类似的数据
7 |
8 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-table)
9 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/uni_modules/uni-transition/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | ## Transition 过渡动画
4 | > **组件名:uni-transition**
5 | > 代码块: `uTransition`
6 |
7 |
8 | 元素过渡动画
9 |
10 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-transition)
11 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/index/web/shopClassify.json:
--------------------------------------------------------------------------------
1 | {
2 | "usingComponents": {
3 | "uni-grid": "/uni_modules/uni-grid/components/uni-grid/uni-grid",
4 | "uni-grid-item": "/uni_modules/uni-grid/components/uni-grid-item/uni-grid-item"
5 | },
6 | "component": true
7 | }
--------------------------------------------------------------------------------
/uni_modules/uni-dateformat/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | ### DateFormat 日期格式化
4 | > **组件名:uni-dateformat**
5 | > 代码块: `uDateformat`
6 |
7 |
8 | 日期格式化组件。
9 |
10 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-dateformat)
11 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
--------------------------------------------------------------------------------
/uni_modules/uni-row/readme.md:
--------------------------------------------------------------------------------
1 | ## Layout 布局
2 |
3 | > **组件名 uni-row、uni-col**
4 | > 代码块: `uRow`、`uCol`
5 |
6 |
7 | 流式栅格系统,随着屏幕或视口分为 24 份,可以迅速简便地创建布局。
8 |
9 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-row)
10 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
--------------------------------------------------------------------------------
/uni_modules/uni-swiper-dot/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | ## SwiperDot 轮播图指示点
4 | > **组件名:uni-swiper-dot**
5 | > 代码块: `uSwiperDot`
6 |
7 |
8 | 自定义轮播图指示点
9 |
10 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-swiper-dot)
11 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
--------------------------------------------------------------------------------
/uni_modules/uni-tag/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | ## Tag 标签
4 | > **组件名:uni-tag**
5 | > 代码块: `uTag`
6 |
7 |
8 | 用于展示1个或多个文字标签,可点击切换选中、不选中的状态 。
9 |
10 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-tag)
11 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
12 |
13 |
14 |
--------------------------------------------------------------------------------
/uni_modules/uni-rate/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | ## Rate 评分
4 | > **组件名:uni-rate**
5 | > 代码块: `uRate`
6 | > 关联组件:`uni-icons`
7 |
8 |
9 | 评分组件,多用于购买商品后,对商品进行评价等场景
10 |
11 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-rate)
12 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
--------------------------------------------------------------------------------
/uni_modules/uni-scss/styles/index.scss:
--------------------------------------------------------------------------------
1 | @import './setting/_variables.scss';
2 | @import './setting/_border.scss';
3 | @import './setting/_color.scss';
4 | @import './setting/_space.scss';
5 | @import './setting/_radius.scss';
6 | @import './setting/_text.scss';
7 | @import './setting/_styles.scss';
8 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/uni_modules/uni-grid/components/uni-grid/uni-grid.wxml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/uni_modules/uni-badge/readme.md:
--------------------------------------------------------------------------------
1 | ## Badge 数字角标
2 | > **组件名:uni-badge**
3 | > 代码块: `uBadge`
4 |
5 | 数字角标一般和其它控件(列表、9宫格等)配合使用,用于进行数量提示,默认为实心灰色背景,
6 |
7 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-badge)
8 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
9 |
10 |
11 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/profile/web/login.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "登录",
3 | "usingComponents": {
4 | "uni-forms": "/uni_modules/uni-forms/components/uni-forms/uni-forms",
5 | "uni-forms-item": "/uni_modules/uni-forms/components/uni-forms-item/uni-forms-item"
6 | }
7 | }
--------------------------------------------------------------------------------
/uni_modules/uni-indexed-list/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | ## IndexedList 索引列表
4 | > **组件名:uni-indexed-list**
5 | > 代码块: `uIndexedList`
6 |
7 |
8 | 用于展示索引列表。
9 |
10 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-indexed-list)
11 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
12 |
--------------------------------------------------------------------------------
/uni_modules/uni-link/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | ## Link 链接
4 | > **组件名:uni-link**
5 | > 代码块: `uLink`
6 |
7 |
8 | uni-link是一个外部网页超链接组件,在小程序内复制url,在app内打开外部浏览器,在h5端打开新网页。
9 |
10 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-link)
11 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
--------------------------------------------------------------------------------
/uni_modules/uni-notice-bar/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | ## NoticeBar 通告栏
4 | > **组件名:uni-notice-bar**
5 | > 代码块: `uNoticeBar`
6 |
7 |
8 | 通告栏组件 。
9 |
10 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-notice-bar)
11 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
12 |
13 |
14 |
--------------------------------------------------------------------------------
/uni_modules/uni-search-bar/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | ## SearchBar 搜索栏
4 |
5 | > **组件名:uni-search-bar**
6 | > 代码块: `uSearchBar`
7 |
8 |
9 | 搜索栏组件
10 |
11 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-search-bar)
12 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
13 |
14 |
15 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/uni_modules/uni-icons/components/uni-icons/uni-icons.wxml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/uni_modules/uni-nav-bar/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | ## NavBar 导航栏
4 | > **组件名:uni-nav-bar**
5 | > 代码块: `uNavBar`
6 |
7 | 导航栏组件,主要用于头部导航。
8 |
9 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-nav-bar)
10 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
11 |
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/uni_modules/uni-number-box/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | ## NumberBox 数字输入框
4 | > **组件名:uni-number-box**
5 | > 代码块: `uNumberBox`
6 |
7 |
8 | 带加减按钮的数字输入框。
9 |
10 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-number-box)
11 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
12 |
13 |
14 |
--------------------------------------------------------------------------------
/uni_modules/uni-table/i18n/zh-Hans.json:
--------------------------------------------------------------------------------
1 | {
2 | "filter-dropdown.reset": "重置",
3 | "filter-dropdown.search": "搜索",
4 | "filter-dropdown.submit": "确定",
5 | "filter-dropdown.filter": "筛选",
6 | "filter-dropdown.gt": "大于等于",
7 | "filter-dropdown.lt": "小于等于",
8 | "filter-dropdown.date": "日期范围"
9 | }
10 |
--------------------------------------------------------------------------------
/uni_modules/uni-table/i18n/zh-Hant.json:
--------------------------------------------------------------------------------
1 | {
2 | "filter-dropdown.reset": "重置",
3 | "filter-dropdown.search": "搜索",
4 | "filter-dropdown.submit": "確定",
5 | "filter-dropdown.filter": "篩選",
6 | "filter-dropdown.gt": "大於等於",
7 | "filter-dropdown.lt": "小於等於",
8 | "filter-dropdown.date": "日期範圍"
9 | }
10 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/uni_modules/uni-forms/components/uni-forms/uni-forms.wxml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/uni_modules/uni-pagination/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | ## Pagination 分页器
4 | > **组件名:uni-pagination**
5 | > 代码块: `uPagination`
6 |
7 |
8 | 分页器组件,用于展示页码、请求数据等。
9 |
10 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-pagination)
11 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
12 |
13 |
14 |
--------------------------------------------------------------------------------
/uni_modules/uni-table/i18n/index.js:
--------------------------------------------------------------------------------
1 | import en from './en.json'
2 | import es from './es.json'
3 | import fr from './fr.json'
4 | import zhHans from './zh-Hans.json'
5 | import zhHant from './zh-Hant.json'
6 | export default {
7 | en,
8 | es,
9 | fr,
10 | 'zh-Hans': zhHans,
11 | 'zh-Hant': zhHant
12 | }
13 |
--------------------------------------------------------------------------------
/uni_modules/uni-swipe-action/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | ## SwipeAction 滑动操作
4 | > **组件名:uni-swipe-action**
5 | > 代码块: `uSwipeAction`、`uSwipeActionItem`
6 |
7 |
8 | 通过滑动触发选项的容器
9 |
10 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-swipe-action)
11 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
--------------------------------------------------------------------------------
/uni_modules/uni-file-picker/readme.md:
--------------------------------------------------------------------------------
1 |
2 | ## FilePicker 文件选择上传
3 |
4 | > **组件名:uni-file-picker**
5 | > 代码块: `uFilePicker`
6 |
7 |
8 | 文件选择上传组件,可以选择图片、视频等任意文件并上传到当前绑定的服务空间
9 |
10 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-file-picker)
11 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
--------------------------------------------------------------------------------
/uni_modules/uni-load-more/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | ### LoadMore 加载更多
4 | > **组件名:uni-load-more**
5 | > 代码块: `uLoadMore`
6 |
7 |
8 | 用于列表中,做滚动加载使用,展示 loading 的各种状态。
9 |
10 |
11 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-load-more)
12 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
13 |
14 |
15 |
--------------------------------------------------------------------------------
/uni_modules/uni-title/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | ## Title 章节标题
4 | > **组件名:uni-title**
5 | > 代码块: `uTitle`
6 |
7 |
8 | 章节标题,通常用于记录页面标题,使用当前组件,uni-app 如果开启统计,将会自动统计页面标题 。
9 |
10 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-title)
11 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/index/index.wxml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/uni_modules/uni-segmented-control/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | ## SegmentedControl 分段器
4 | > **组件名:uni-segmented-control**
5 | > 代码块: `uSegmentedControl`
6 |
7 |
8 | 用作不同视图的显示
9 |
10 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-segmented-control)
11 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
12 |
13 |
14 |
--------------------------------------------------------------------------------
/uni_modules/uni-pagination/components/uni-pagination/i18n/index.js:
--------------------------------------------------------------------------------
1 | import en from './en.json'
2 | import es from './es.json'
3 | import fr from './fr.json'
4 | import zhHans from './zh-Hans.json'
5 | import zhHant from './zh-Hant.json'
6 | export default {
7 | en,
8 | es,
9 | fr,
10 | 'zh-Hans': zhHans,
11 | 'zh-Hant': zhHant
12 | }
13 |
--------------------------------------------------------------------------------
/uni_modules/uni-popup/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | ## Popup 弹出层
4 | > **组件名:uni-popup**
5 | > 代码块: `uPopup`
6 | > 关联组件:`uni-transition`
7 |
8 |
9 | 弹出层组件,在应用中弹出一个消息提示窗口、提示框等
10 |
11 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-popup)
12 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
13 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/uni_modules/uni-calendar/changelog.md:
--------------------------------------------------------------------------------
1 | ## 1.4.2(2021-08-24)
2 | - 新增 支持国际化
3 | ## 1.4.1(2021-08-05)
4 | - 修复 弹出层被 tabbar 遮盖 bug
5 | ## 1.4.0(2021-07-30)
6 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834)
7 | ## 1.3.16(2021-05-12)
8 | - 新增 组件示例地址
9 | ## 1.3.15(2021-02-04)
10 | - 调整为uni_modules目录规范
11 |
--------------------------------------------------------------------------------
/uni_modules/uni-table/i18n/en.json:
--------------------------------------------------------------------------------
1 | {
2 | "filter-dropdown.reset": "Reset",
3 | "filter-dropdown.search": "Search",
4 | "filter-dropdown.submit": "Submit",
5 | "filter-dropdown.filter": "Filter",
6 | "filter-dropdown.gt": "Greater or equal to",
7 | "filter-dropdown.lt": "Less than or equal to",
8 | "filter-dropdown.date": "Date"
9 | }
10 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/index/web/shopList.json:
--------------------------------------------------------------------------------
1 | {
2 | "usingComponents": {
3 | "uni-grid": "/uni_modules/uni-grid/components/uni-grid/uni-grid",
4 | "uni-grid-item": "/uni_modules/uni-grid/components/uni-grid-item/uni-grid-item",
5 | "uni-tag": "/uni_modules/uni-tag/components/uni-tag/uni-tag"
6 | },
7 | "component": true
8 | }
--------------------------------------------------------------------------------
/uni_modules/uni-table/i18n/es.json:
--------------------------------------------------------------------------------
1 | {
2 | "filter-dropdown.reset": "Reiniciar",
3 | "filter-dropdown.search": "Búsqueda",
4 | "filter-dropdown.submit": "Entregar",
5 | "filter-dropdown.filter": "Filtrar",
6 | "filter-dropdown.gt": "Mayor o igual a",
7 | "filter-dropdown.lt": "Menos que o igual a",
8 | "filter-dropdown.date": "Fecha"
9 | }
10 |
--------------------------------------------------------------------------------
/uni_modules/uni-table/i18n/fr.json:
--------------------------------------------------------------------------------
1 | {
2 | "filter-dropdown.reset": "Réinitialiser",
3 | "filter-dropdown.search": "Chercher",
4 | "filter-dropdown.submit": "Soumettre",
5 | "filter-dropdown.filter": "Filtre",
6 | "filter-dropdown.gt": "Supérieur ou égal à",
7 | "filter-dropdown.lt": "Inférieur ou égal à",
8 | "filter-dropdown.date": "Date"
9 | }
10 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/profile/web/editAddress.wxss:
--------------------------------------------------------------------------------
1 | @charset "UTF-8";
2 | /* 水平间距 */
3 | /* 水平间距 */
4 | .info-item.data-v-8e93fe00 {
5 | display: flex;
6 | padding: 10px;
7 | border-bottom: 1px solid #ccc;
8 | }
9 | .info-item .label.data-v-8e93fe00 {
10 | margin-right: 15px;
11 | }
12 | .btn.data-v-8e93fe00 {
13 | margin: 20px;
14 | }
15 |
16 |
--------------------------------------------------------------------------------
/uni_modules/uni-collapse/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | ## Collapse 折叠面板
4 | > **组件名:uni-collapse**
5 | > 代码块: `uCollapse`
6 | > 关联组件:`uni-collapse-item`、`uni-icons`。
7 |
8 |
9 | 折叠面板用来折叠/显示过长的内容或者是列表。通常是在多内容分类项使用,折叠不重要的内容,显示重要内容。点击可以展开折叠部分。
10 |
11 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-collapse)
12 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/components/navbar/navbar.wxss:
--------------------------------------------------------------------------------
1 | @charset "UTF-8";
2 | /* 水平间距 */
3 | /* 水平间距 */
4 | .navbar.data-v-3f9c1e44 {
5 | display: flex;
6 | justify-content: space-between;
7 | align-items: center;
8 | padding: 10px;
9 | }
10 | input.data-v-3f9c1e44 {
11 | background-color: #f8f8f8;
12 | padding: 5px;
13 | border-radius: 8px;
14 | }
15 |
16 |
--------------------------------------------------------------------------------
/uni_modules/uni-calendar/components/uni-calendar/i18n/zh-Hans.json:
--------------------------------------------------------------------------------
1 | {
2 | "uni-calender.ok": "确定",
3 | "uni-calender.cancel": "取消",
4 | "uni-calender.today": "今日",
5 | "uni-calender.SUN": "日",
6 | "uni-calender.MON": "一",
7 | "uni-calender.TUE": "二",
8 | "uni-calender.WED": "三",
9 | "uni-calender.THU": "四",
10 | "uni-calender.FRI": "五",
11 | "uni-calender.SAT": "六"
12 | }
13 |
--------------------------------------------------------------------------------
/uni_modules/uni-calendar/components/uni-calendar/i18n/zh-Hant.json:
--------------------------------------------------------------------------------
1 | {
2 | "uni-calender.ok": "確定",
3 | "uni-calender.cancel": "取消",
4 | "uni-calender.today": "今日",
5 | "uni-calender.SUN": "日",
6 | "uni-calender.MON": "一",
7 | "uni-calender.TUE": "二",
8 | "uni-calender.WED": "三",
9 | "uni-calender.THU": "四",
10 | "uni-calender.FRI": "五",
11 | "uni-calender.SAT": "六"
12 | }
13 |
--------------------------------------------------------------------------------
/uni_modules/uni-calendar/components/uni-calendar/i18n/en.json:
--------------------------------------------------------------------------------
1 | {
2 | "uni-calender.ok": "ok",
3 | "uni-calender.cancel": "cancel",
4 | "uni-calender.today": "today",
5 | "uni-calender.MON": "MON",
6 | "uni-calender.TUE": "TUE",
7 | "uni-calender.WED": "WED",
8 | "uni-calender.THU": "THU",
9 | "uni-calender.FRI": "FRI",
10 | "uni-calender.SAT": "SAT",
11 | "uni-calender.SUN": "SUN"
12 | }
13 |
--------------------------------------------------------------------------------
/uni_modules/uni-easyinput/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | ### Easyinput 增强输入框
4 | > **组件名:uni-easyinput**
5 | > 代码块: `uEasyinput`
6 |
7 |
8 | easyinput 组件是对原生input组件的增强 ,是专门为配合表单组件[uni-forms](https://ext.dcloud.net.cn/plugin?id=2773)而设计的,easyinput 内置了边框,图标等,同时包含 input 所有功能
9 |
10 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-easyinput)
11 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
--------------------------------------------------------------------------------
/uni_modules/uni-title/changelog.md:
--------------------------------------------------------------------------------
1 | ## 1.1.0(2021-11-19)
2 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource)
3 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-title](https://uniapp.dcloud.io/component/uniui/uni-title)
4 | ## 1.0.2(2021-05-12)
5 | - 新增 示例地址
6 | - 修复 示例项目缺少组件的Bug
7 | ## 1.0.1(2021-02-05)
8 | - 调整为uni_modules目录规范
9 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "uni-order",
3 | "version": "1.0.0",
4 | "description": "外卖点餐系统-uniapp",
5 | "main": "main.js",
6 | "dependencies": {
7 | "axios": "^0.25.0",
8 | "axios-adapter-uniapp": "^0.1.3"
9 | },
10 | "devDependencies": {},
11 | "scripts": {
12 | "test": "echo \"Error: no test specified\" && exit 1"
13 | },
14 | "author": "",
15 | "license": "ISC"
16 | }
17 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/uni_modules/uni-swipe-action/components/uni-swipe-action-item/isPC.js:
--------------------------------------------------------------------------------
1 | export function isPC() {
2 | var userAgentInfo = navigator.userAgent;
3 | var Agents = ["Android", "iPhone", "SymbianOS", "Windows Phone", "iPad", "iPod"];
4 | var flag = true;
5 | for (let v = 0; v < Agents.length - 1; v++) {
6 | if (userAgentInfo.indexOf(Agents[v]) > 0) {
7 | flag = false;
8 | break;
9 | }
10 | }
11 | return flag;
12 | }
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/components/shopcart/shopCart.wxss:
--------------------------------------------------------------------------------
1 | @charset "UTF-8";
2 | /* 水平间距 */
3 | /* 水平间距 */
4 | .shop-cart.data-v-15a6e6e4 {
5 | display: flex;
6 | justify-content: space-between;
7 | height: 50px;
8 | width: 100px;
9 | background-color: red;
10 | border-radius: 50%;
11 | }
12 | .left.data-v-15a6e6e4 {
13 | display: flex;
14 | width: 50%;
15 | background-color: yellow;
16 | }
17 |
18 |
--------------------------------------------------------------------------------
/uni_modules/uni-test/components/uni-test/uni-test.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 | 测试插件
4 |
5 |
6 |
7 |
23 |
24 |
27 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/uni_modules/uni-grid/components/uni-grid/uni-grid.wxss:
--------------------------------------------------------------------------------
1 | @charset "UTF-8";
2 | /* 水平间距 */
3 | /* 水平间距 */
4 | .uni-grid-wrap {
5 | display: flex;
6 | flex: 1;
7 | flex-direction: column;
8 | }
9 | .uni-grid {
10 | display: flex;
11 | flex-direction: row;
12 | flex-wrap: wrap;
13 | }
14 | .uni-grid--border {
15 | position: relative;
16 | z-index: 1;
17 | border-left: 1px #D2D2D2 solid;
18 | }
19 |
20 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/index/web/shopClassify.wxss:
--------------------------------------------------------------------------------
1 | @charset "UTF-8";
2 | /* 水平间距 */
3 | /* 水平间距 */
4 | .shop-classify.data-v-2c8740cb {
5 | text-align: center;
6 | }
7 | .shop-classify-list.data-v-2c8740cb {
8 | padding: 20px 10px;
9 | }
10 | .shop-classify-list .col-item.data-v-2c8740cb {
11 | margin-bottom: 10px;
12 | }
13 | .shop-classify-list .col-item .classify-text.data-v-2c8740cb {
14 | font-size: 14px;
15 | }
16 |
17 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/customicons.css:
--------------------------------------------------------------------------------
1 | @font-face {
2 | font-family: "customicons"; /* Project id 2878519 */
3 | src:url('/static/customicons.ttf') format('truetype');
4 | }
5 |
6 | .customicons {
7 | font-family: "customicons" !important;
8 | }
9 |
10 | .youxi:before {
11 | content: "\e60e";
12 | }
13 |
14 | .wenjian:before {
15 | content: "\e60f";
16 | }
17 |
18 | .zhuanfa:before {
19 | content: "\e610";
20 | }
21 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/profile/web/address.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "收货信息",
3 | "usingComponents": {
4 | "uni-icons": "/uni_modules/uni-icons/components/uni-icons/uni-icons",
5 | "uni-swipe-action": "/uni_modules/uni-swipe-action/components/uni-swipe-action/uni-swipe-action",
6 | "uni-swipe-action-item": "/uni_modules/uni-swipe-action/components/uni-swipe-action-item/uni-swipe-action-item",
7 | "popup": "/components/popup/popup"
8 | }
9 | }
--------------------------------------------------------------------------------
/uni_modules/uni-dateformat/changelog.md:
--------------------------------------------------------------------------------
1 | ## 1.0.0(2021-11-19)
2 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource)
3 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-dateformat](https://uniapp.dcloud.io/component/uniui/uni-dateformat)
4 | ## 0.0.5(2021-07-08)
5 | - 调整 默认时间不再是当前时间,而是显示'-'字符
6 | ## 0.0.4(2021-05-12)
7 | - 新增 组件示例地址
8 | ## 0.0.3(2021-02-04)
9 | - 调整为uni_modules目录规范
10 | - 修复 iOS 平台日期格式化出错的问题
11 |
--------------------------------------------------------------------------------
/uni_modules/uni-table/components/uni-tbody/uni-tbody.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
27 |
28 |
30 |
--------------------------------------------------------------------------------
/uni_modules/uni-row/changelog.md:
--------------------------------------------------------------------------------
1 | ## 1.0.0(2021-11-19)
2 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource)
3 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-row](https://uniapp.dcloud.io/component/uniui/uni-row)
4 | ## 0.1.0(2021-07-13)
5 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834)
6 | ## 0.0.4(2021-05-12)
7 | - 新增 组件示例地址
8 | ## 0.0.3(2021-02-05)
9 | - 调整为uni_modules目录规范
10 | - 新增uni-row组件
11 |
--------------------------------------------------------------------------------
/App.vue:
--------------------------------------------------------------------------------
1 |
24 |
25 |
28 |
--------------------------------------------------------------------------------
/uni_modules/uni-scss/styles/setting/_text.scss:
--------------------------------------------------------------------------------
1 | @mixin get-styles($k,$c) {
2 | @if $k == size or $k == weight{
3 | font-#{$k}:#{$c}
4 | }@else{
5 | #{$k}:#{$c}
6 | }
7 | }
8 |
9 | @each $key, $child in $uni-headings {
10 | /* #ifndef APP-NVUE */
11 | .uni-#{$key} {
12 | @each $k, $c in $child {
13 | @include get-styles($k,$c)
14 | }
15 | }
16 | /* #endif */
17 | /* #ifdef APP-NVUE */
18 | .container .uni-#{$key} {
19 | @each $k, $c in $child {
20 | @include get-styles($k,$c)
21 | }
22 | }
23 | /* #endif */
24 | }
25 |
--------------------------------------------------------------------------------
/uni_modules/uni-segmented-control/changelog.md:
--------------------------------------------------------------------------------
1 | ## 1.2.0(2021-11-19)
2 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource)
3 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-segmented-control](https://uniapp.dcloud.io/component/uniui/uni-segmented-control)
4 | ## 1.1.0(2021-07-30)
5 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834)
6 | ## 1.0.5(2021-05-12)
7 | - 新增 项目示例地址
8 | ## 1.0.4(2021-02-05)
9 | - 调整为uni_modules目录规范
10 |
--------------------------------------------------------------------------------
/uni_modules/uni-popup/components/uni-popup/popup.js:
--------------------------------------------------------------------------------
1 |
2 | export default {
3 | data() {
4 | return {
5 |
6 | }
7 | },
8 | created(){
9 | this.popup = this.getParent()
10 | },
11 | methods:{
12 | /**
13 | * 获取父元素实例
14 | */
15 | getParent(name = 'uniPopup') {
16 | let parent = this.$parent;
17 | let parentName = parent.$options.name;
18 | while (parentName !== name) {
19 | parent = parent.$parent;
20 | if (!parent) return false
21 | parentName = parent.$options.name;
22 | }
23 | return parent;
24 | },
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/shop/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "店铺",
3 | "usingComponents": {
4 | "uni-icons": "/uni_modules/uni-icons/components/uni-icons/uni-icons",
5 | "uni-notice-bar": "/uni_modules/uni-notice-bar/components/uni-notice-bar/uni-notice-bar",
6 | "uni-segmented-control": "/uni_modules/uni-segmented-control/components/uni-segmented-control/uni-segmented-control",
7 | "food-list": "/pages/shop/web/foodList",
8 | "comment": "/pages/shop/web/comment",
9 | "shop-cart": "/components/shopcart/shopCart"
10 | }
11 | }
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/components/navbar/navbar.wxml:
--------------------------------------------------------------------------------
1 | 城市扫码
--------------------------------------------------------------------------------
/uni_modules/uni-swiper-dot/changelog.md:
--------------------------------------------------------------------------------
1 | ## 1.2.0(2021-11-19)
2 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource)
3 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-swiper-dot](https://uniapp.dcloud.io/component/uniui/uni-swiper-dot)
4 | ## 1.1.0(2021-07-30)
5 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834)
6 | ## 1.0.6(2021-05-12)
7 | - 新增 示例地址
8 | - 修复 示例项目缺少组件的Bug
9 | ## 1.0.5(2021-02-05)
10 | - 调整为uni_modules目录规范
11 | - 新增 clickItem 事件,支持指示点控制轮播
12 | - 新增 支持 pc 可用
13 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/uni_modules/uni-grid/components/uni-grid-item/uni-grid-item.wxml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/uni_modules/uni-grid/changelog.md:
--------------------------------------------------------------------------------
1 | ## 1.4.0(2021-11-19)
2 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource)
3 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-grid](https://uniapp.dcloud.io/component/uniui/uni-grid)
4 | ## 1.3.2(2021-11-09)
5 | - 新增 提供组件设计资源,组件样式调整
6 | ## 1.3.1(2021-07-30)
7 | - 优化 vue3下事件警告的问题
8 | ## 1.3.0(2021-07-13)
9 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834)
10 | ## 1.2.4(2021-05-12)
11 | - 新增 组件示例地址
12 | ## 1.2.3(2021-02-05)
13 | - 调整为uni_modules目录规范
14 |
--------------------------------------------------------------------------------
/uni_modules/uni-drawer/changelog.md:
--------------------------------------------------------------------------------
1 | ## 1.2.1(2021-11-22)
2 | - 修复 vue3中个别scss变量无法找到的问题
3 | ## 1.2.0(2021-11-19)
4 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource)
5 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-drawer](https://uniapp.dcloud.io/component/uniui/uni-drawer)
6 | ## 1.1.1(2021-07-30)
7 | - 优化 vue3下事件警告的问题
8 | ## 1.1.0(2021-07-13)
9 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834)
10 | ## 1.0.7(2021-05-12)
11 | - 新增 组件示例地址
12 | ## 1.0.6(2021-02-04)
13 | - 调整为uni_modules目录规范
14 |
--------------------------------------------------------------------------------
/uni_modules/uni-group/changelog.md:
--------------------------------------------------------------------------------
1 | ## 1.2.1(2021-11-22)
2 | - 修复 vue3中某些scss变量无法找到的问题
3 | ## 1.2.0(2021-11-19)
4 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource)
5 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-group](https://uniapp.dcloud.io/component/uniui/uni-group)
6 | ## 1.1.7(2021-11-08)
7 | ## 1.1.0(2021-07-30)
8 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834)
9 | - 优化 组件文档
10 | ## 1.0.3(2021-05-12)
11 | - 新增 组件示例地址
12 | ## 1.0.2(2021-02-05)
13 | - 调整为uni_modules目录规范
14 | - 优化 兼容 nvue 页面
15 |
--------------------------------------------------------------------------------
/uni_modules/uni-link/changelog.md:
--------------------------------------------------------------------------------
1 | ## 1.0.0(2021-11-19)
2 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource)
3 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-link](https://uniapp.dcloud.io/component/uniui/uni-link)
4 | ## 1.1.7(2021-11-08)
5 | ## 0.0.7(2021-09-03)
6 | - 修复 在 nvue 下不显示的 bug
7 | ## 0.0.6(2021-07-30)
8 | - 新增 支持自定义插槽
9 | ## 0.0.5(2021-06-21)
10 | - 新增 download 属性,H5平台下载文件名
11 | ## 0.0.4(2021-05-12)
12 | - 新增 组件示例地址
13 | ## 0.0.3(2021-03-09)
14 | - 新增 href 属性支持 tel:|mailto:
15 |
16 | ## 0.0.2(2021-02-05)
17 | - 调整为uni_modules目录规范
18 |
--------------------------------------------------------------------------------
/uni_modules/uni-nav-bar/components/uni-nav-bar/uni-status-bar.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
20 |
21 |
28 |
--------------------------------------------------------------------------------
/uni_modules/uni-steps/changelog.md:
--------------------------------------------------------------------------------
1 | ## 1.1.1(2021-11-22)
2 | - 修复 vue3中某些scss变量无法找到的问题
3 | ## 1.1.0(2021-11-19)
4 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource)
5 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-steps](https://uniapp.dcloud.io/component/uniui/uni-steps)
6 | ## 1.0.8(2021-05-12)
7 | - 新增 项目示例地址
8 | ## 1.0.7(2021-05-06)
9 | - 修复 uni-steps 横向布局时,多行文字高度不合理的 bug
10 | ## 1.0.6(2021-04-21)
11 | - 优化 添加依赖 uni-icons, 导入后自动下载依赖
12 | ## 1.0.5(2021-02-05)
13 | - 优化 组件引用关系,通过uni_modules引用组件
14 |
15 | ## 1.0.4(2021-02-05)
16 | - 调整为uni_modules目录规范
17 |
--------------------------------------------------------------------------------
/uni_modules/uni-load-more/changelog.md:
--------------------------------------------------------------------------------
1 | ## 1.3.0(2021-11-19)
2 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource)
3 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-load-more](https://uniapp.dcloud.io/component/uniui/uni-load-more)
4 | ## 1.2.1(2021-08-24)
5 | - 新增 支持国际化
6 | ## 1.2.0(2021-07-30)
7 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834)
8 | ## 1.1.8(2021-05-12)
9 | - 新增 组件示例地址
10 | ## 1.1.7(2021-03-30)
11 | - 修复 uni-load-more 在首页使用时,h5 平台报 'uni is not defined' 的 bug
12 | ## 1.1.6(2021-02-05)
13 | - 调整为uni_modules目录规范
14 |
--------------------------------------------------------------------------------
/.hbuilderx/launch.json:
--------------------------------------------------------------------------------
1 | { // launch.json 配置了启动调试时相关设置,configurations下节点名称可为 app-plus/h5/mp-weixin/mp-baidu/mp-alipay/mp-qq/mp-toutiao/mp-360/
2 | // launchtype项可配置值为local或remote, local代表前端连本地云函数,remote代表前端连云端云函数
3 | "version": "0.0",
4 | "configurations": [{
5 | "app-plus" :
6 | {
7 | "launchtype" : "local"
8 | },
9 | "default" :
10 | {
11 | "launchtype" : "local"
12 | },
13 | "h5" :
14 | {
15 | "launchtype" : "local"
16 | },
17 | "mp-weixin" :
18 | {
19 | "launchtype" : "local"
20 | },
21 | "type" : "uniCloud"
22 | }
23 | ]
24 | }
25 |
--------------------------------------------------------------------------------
/uni_modules/uni-fab/changelog.md:
--------------------------------------------------------------------------------
1 | ## 1.2.2(2021-12-29)
2 | - 更新 组件依赖
3 | ## 1.2.1(2021-11-19)
4 | - 修复 阴影颜色不正确的bug
5 | ## 1.2.0(2021-11-19)
6 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource)
7 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-fab](https://uniapp.dcloud.io/component/uniui/uni-fab)
8 | ## 1.1.1(2021-11-09)
9 | - 新增 提供组件设计资源,组件样式调整
10 | ## 1.1.0(2021-07-30)
11 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834)
12 | ## 1.0.7(2021-05-12)
13 | - 新增 组件示例地址
14 | ## 1.0.6(2021-02-05)
15 | - 调整为uni_modules目录规范
16 | - 优化 按钮背景色调整
17 | - 优化 兼容pc端
18 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/project.config.json:
--------------------------------------------------------------------------------
1 | {
2 | "description": "项目配置文件。",
3 | "packOptions": {
4 | "ignore": []
5 | },
6 | "setting": {
7 | "urlCheck": false
8 | },
9 | "compileType": "miniprogram",
10 | "libVersion": "",
11 | "appid": "touristappid",
12 | "projectname": "uni-order",
13 | "condition": {
14 | "search": {
15 | "current": -1,
16 | "list": []
17 | },
18 | "conversation": {
19 | "current": -1,
20 | "list": []
21 | },
22 | "game": {
23 | "current": -1,
24 | "list": []
25 | },
26 | "miniprogram": {
27 | "current": -1,
28 | "list": []
29 | }
30 | }
31 | }
--------------------------------------------------------------------------------
/uni_modules/uni-combox/changelog.md:
--------------------------------------------------------------------------------
1 | ## 1.0.1(2021-11-23)
2 | - 优化 label、label-width 属性
3 | ## 1.0.0(2021-11-19)
4 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource)
5 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-combox](https://uniapp.dcloud.io/component/uniui/uni-combox)
6 | ## 0.1.0(2021-07-30)
7 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834)
8 | ## 0.0.6(2021-05-12)
9 | - 新增 组件示例地址
10 | ## 0.0.5(2021-04-21)
11 | - 优化 添加依赖 uni-icons, 导入后自动下载依赖
12 | ## 0.0.4(2021-02-05)
13 | - 优化 组件引用关系,通过uni_modules引用组件
14 | ## 0.0.3(2021-02-04)
15 | - 调整为uni_modules目录规范
16 |
--------------------------------------------------------------------------------
/uni_modules/uni-goods-nav/changelog.md:
--------------------------------------------------------------------------------
1 | ## 1.2.0(2021-11-19)
2 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource)
3 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-goods-nav](https://uniapp.dcloud.io/component/uniui/uni-goods-nav)
4 | ## 1.1.1(2021-08-24)
5 | - 新增 支持国际化
6 | ## 1.1.0(2021-07-13)
7 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834)
8 | ## 1.0.7(2021-05-12)
9 | - 新增 组件示例地址
10 | ## 1.0.6(2021-04-21)
11 | - 优化 添加依赖 uni-icons, 导入后自动下载依赖
12 | ## 1.0.5(2021-02-05)
13 | - 优化 组件引用关系,通过uni_modules引用组件
14 |
15 | ## 1.0.4(2021-02-05)
16 | - 调整为uni_modules目录规范
17 |
--------------------------------------------------------------------------------
/main.js:
--------------------------------------------------------------------------------
1 | import App from './App'
2 |
3 | // #ifndef VUE3
4 | import Vue from 'vue'
5 | import store from './store'
6 | import { initStore } from './store'
7 | import api from './plugins/axios'
8 | import utils from './utils'
9 |
10 | Vue.config.productionTip = false
11 |
12 | initStore();//h5页面刷新后初始化vux中的数据
13 | Vue.prototype.$api = api;
14 | Vue.prototype.$utils = utils;
15 |
16 | App.mpType = 'app'
17 | const app = new Vue({
18 | ...App,
19 | store
20 | })
21 | app.$mount()
22 | // #endif
23 |
24 | // #ifdef VUE3
25 | import {
26 | createSSRApp
27 | } from 'vue'
28 | export function createApp() {
29 | const app = createSSRApp(App)
30 | return {
31 | app
32 | }
33 | }
34 | // #endif
35 |
--------------------------------------------------------------------------------
/uni_modules/uni-notice-bar/changelog.md:
--------------------------------------------------------------------------------
1 | ## 1.2.0(2021-11-19)
2 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource)
3 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-notice-bar](https://uniapp.dcloud.io/component/uniui/uni-notice-bar)
4 | ## 1.1.1(2021-11-09)
5 | - 新增 提供组件设计资源,组件样式调整
6 | ## 1.1.0(2021-07-30)
7 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834)
8 | ## 1.0.9(2021-05-12)
9 | - 新增 组件示例地址
10 | ## 1.0.8(2021-04-21)
11 | - 优化 添加依赖 uni-icons, 导入后自动下载依赖
12 | ## 1.0.7(2021-02-05)
13 | - 优化 组件引用关系,通过uni_modules引用组件
14 |
15 | ## 1.0.6(2021-02-05)
16 | - 调整为uni_modules目录规范
17 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/uni_modules/uni-grid/components/uni-grid-item/uni-grid-item.wxss:
--------------------------------------------------------------------------------
1 | @charset "UTF-8";
2 | /* 水平间距 */
3 | /* 水平间距 */
4 | .uni-grid-item {
5 | height: 100%;
6 | display: flex;
7 | }
8 | .uni-grid-item__box {
9 | display: flex;
10 | width: 100%;
11 | position: relative;
12 | flex: 1;
13 | flex-direction: column;
14 | }
15 | .uni-grid-item--border {
16 | position: relative;
17 | z-index: 0;
18 | border-bottom: 1px #D2D2D2 solid;
19 | border-right: 1px #D2D2D2 solid;
20 | }
21 | .uni-grid-item--border-top {
22 | position: relative;
23 | border-top: 1px #D2D2D2 solid;
24 | z-index: 0;
25 | }
26 | .uni-highlight:active {
27 | background-color: #f1f1f1;
28 | }
29 |
30 |
--------------------------------------------------------------------------------
/uni_modules/uni-icons/changelog.md:
--------------------------------------------------------------------------------
1 | ## 1.3.3(2022-01-17)
2 | - 修复 nvue 有些图标不显示的bug,兼容老版本图标
3 | ## 1.3.2(2021-12-01)
4 | - 优化 示例可复制图标名称
5 | ## 1.3.1(2021-11-23)
6 | - 优化 兼容旧组件 type 值
7 | ## 1.3.0(2021-11-19)
8 | - 新增 更多图标
9 | - 优化 自定义图标使用方式
10 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource)
11 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-icons](https://uniapp.dcloud.io/component/uniui/uni-icons)
12 | ## 1.1.7(2021-11-08)
13 | ## 1.2.0(2021-07-30)
14 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834)
15 | ## 1.1.5(2021-05-12)
16 | - 新增 组件示例地址
17 | ## 1.1.4(2021-02-05)
18 | - 调整为uni_modules目录规范
19 |
--------------------------------------------------------------------------------
/uni_modules/uni-fav/changelog.md:
--------------------------------------------------------------------------------
1 | ## 1.2.0(2021-11-19)
2 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource)
3 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-fav](https://uniapp.dcloud.io/component/uniui/uni-fav)
4 | ## 1.1.1(2021-08-24)
5 | - 新增 支持国际化
6 | ## 1.1.0(2021-07-13)
7 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834)
8 | ## 1.0.6(2021-05-12)
9 | - 新增 组件示例地址
10 | ## 1.0.5(2021-04-21)
11 | - 优化 添加依赖 uni-icons, 导入后自动下载依赖
12 | ## 1.0.4(2021-02-05)
13 | - 优化 组件引用关系,通过uni_modules引用组件
14 | ## 1.0.3(2021-02-05)
15 | - 优化 组件引用关系,通过uni_modules引用组件
16 | ## 1.0.2(2021-02-05)
17 | - 调整为uni_modules目录规范
18 |
--------------------------------------------------------------------------------
/uni_modules/uni-scss/theme.scss:
--------------------------------------------------------------------------------
1 | // 间距基础倍数
2 | $uni-space-root: 2;
3 | // 边框半径默认值
4 | $uni-radius-root:5px;
5 | // 主色
6 | $uni-primary: #2979ff;
7 | // 辅助色
8 | $uni-success: #4cd964;
9 | // 警告色
10 | $uni-warning: #f0ad4e;
11 | // 错误色
12 | $uni-error: #dd524d;
13 | // 描述色
14 | $uni-info: #909399;
15 | // 中性色
16 | $uni-main-color: #303133;
17 | $uni-base-color: #606266;
18 | $uni-secondary-color: #909399;
19 | $uni-extra-color: #C0C4CC;
20 | // 背景色
21 | $uni-bg-color: #f5f5f5;
22 | // 边框颜色
23 | $uni-border-1: #DCDFE6;
24 | $uni-border-2: #E4E7ED;
25 | $uni-border-3: #EBEEF5;
26 | $uni-border-4: #F2F6FC;
27 |
28 | // 常规色
29 | $uni-black: #000000;
30 | $uni-white: #ffffff;
31 | $uni-transparent: rgba($color: #000000, $alpha: 0);
32 |
--------------------------------------------------------------------------------
/uni_modules/uni-indexed-list/changelog.md:
--------------------------------------------------------------------------------
1 | ## 1.2.1(2021-11-22)
2 | - 修复 vue3中某些scss变量无法找到的问题
3 | ## 1.2.0(2021-11-19)
4 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource)
5 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-indexed-list](https://uniapp.dcloud.io/component/uniui/uni-indexed-list)
6 | ## 1.1.0(2021-07-30)
7 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834)
8 | ## 1.0.11(2021-05-12)
9 | - 新增 组件示例地址
10 | ## 1.0.10(2021-04-21)
11 | - 优化 添加依赖 uni-icons, 导入后自动下载依赖
12 | ## 1.0.9(2021-02-05)
13 | - 优化 组件引用关系,通过uni_modules引用组件
14 |
15 | ## 1.0.8(2021-02-05)
16 | - 调整为uni_modules目录规范
17 | - 新增 支持 PC 端
18 |
--------------------------------------------------------------------------------
/uni_modules/uni-datetime-picker/components/uni-datetime-picker/i18n/zh-Hans.json:
--------------------------------------------------------------------------------
1 | {
2 | "uni-datetime-picker.selectDate": "选择日期",
3 | "uni-datetime-picker.selectTime": "选择时间",
4 | "uni-datetime-picker.selectDateTime": "选择日期时间",
5 | "uni-datetime-picker.startDate": "开始日期",
6 | "uni-datetime-picker.endDate": "结束日期",
7 | "uni-datetime-picker.startTime": "开始时间",
8 | "uni-datetime-picker.endTime": "结束时间",
9 | "uni-datetime-picker.ok": "确定",
10 | "uni-datetime-picker.clear": "清除",
11 | "uni-datetime-picker.cancel": "取消",
12 | "uni-calender.SUN": "日",
13 | "uni-calender.MON": "一",
14 | "uni-calender.TUE": "二",
15 | "uni-calender.WED": "三",
16 | "uni-calender.THU": "四",
17 | "uni-calender.FRI": "五",
18 | "uni-calender.SAT": "六"
19 | }
20 |
--------------------------------------------------------------------------------
/uni_modules/uni-datetime-picker/components/uni-datetime-picker/i18n/zh-Hant.json:
--------------------------------------------------------------------------------
1 | {
2 | "uni-datetime-picker.selectDate": "選擇日期",
3 | "uni-datetime-picker.selectTime": "選擇時間",
4 | "uni-datetime-picker.selectDateTime": "選擇日期時間",
5 | "uni-datetime-picker.startDate": "開始日期",
6 | "uni-datetime-picker.endDate": "結束日期",
7 | "uni-datetime-picker.startTime": "開始时间",
8 | "uni-datetime-picker.endTime": "結束时间",
9 | "uni-datetime-picker.ok": "確定",
10 | "uni-datetime-picker.clear": "清除",
11 | "uni-datetime-picker.cancel": "取消",
12 | "uni-calender.SUN": "日",
13 | "uni-calender.MON": "一",
14 | "uni-calender.TUE": "二",
15 | "uni-calender.WED": "三",
16 | "uni-calender.THU": "四",
17 | "uni-calender.FRI": "五",
18 | "uni-calender.SAT": "六"
19 | }
20 |
--------------------------------------------------------------------------------
/uni_modules/uni-datetime-picker/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | > `重要通知:组件升级更新 2.0.0 后,支持日期+时间范围选择,组件 ui 将使用日历选择日期,ui 变化较大,同时支持 PC 和 移动端。此版本不向后兼容,不再支持单独的时间选择(type=time)及相关的 hide-second 属性(时间选可使用内置组件 picker)。若仍需使用旧版本,可在插件市场下载*非uni_modules版本*,旧版本将不再维护`
4 |
5 | ## DatetimePicker 时间选择器
6 |
7 | > **组件名:uni-datetime-picker**
8 | > 代码块: `uDatetimePicker`
9 |
10 |
11 | 该组件的优势是,支持**时间戳**输入和输出(起始时间、终止时间也支持时间戳),可**同时选择**日期和时间。
12 |
13 | 若只是需要单独选择日期和时间,不需要时间戳输入和输出,可使用原生的 picker 组件。
14 |
15 | **_点击 picker 默认值规则:_**
16 |
17 | - 若设置初始值 value, 会显示在 picker 显示框中
18 | - 若无初始值 value,则初始值 value 为当前本地时间 Date.now(), 但不会显示在 picker 显示框中
19 |
20 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-datetime-picker)
21 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
--------------------------------------------------------------------------------
/uni_modules/uni-scss/styles/tools/functions.scss:
--------------------------------------------------------------------------------
1 | // 合并 map
2 | @function map-deep-merge($parent-map, $child-map){
3 | $result: $parent-map;
4 | @each $key, $child in $child-map {
5 | $parent-has-key: map-has-key($result, $key);
6 | $parent-value: map-get($result, $key);
7 | $parent-type: type-of($parent-value);
8 | $child-type: type-of($child);
9 | $parent-is-map: $parent-type == map;
10 | $child-is-map: $child-type == map;
11 |
12 | @if (not $parent-has-key) or ($parent-type != $child-type) or (not ($parent-is-map and $child-is-map)){
13 | $result: map-merge($result, ( $key: $child ));
14 | }@else {
15 | $result: map-merge($result, ( $key: map-deep-merge($parent-value, $child) ));
16 | }
17 | }
18 | @return $result;
19 | };
20 |
--------------------------------------------------------------------------------
/uni_modules/uni-list/changelog.md:
--------------------------------------------------------------------------------
1 | ## 1.2.0(2021-11-23)
2 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource)
3 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-list](https://uniapp.dcloud.io/component/uniui/uni-list)
4 | ## 1.1.3(2021-08-30)
5 | - 修复 在vue3中to属性在发行应用的时候报错的bug
6 | ## 1.1.2(2021-07-30)
7 | - 优化 vue3下事件警告的问题
8 | ## 1.1.1(2021-07-21)
9 | - 修复 与其他组件嵌套使用时,点击失效的Bug
10 | ## 1.1.0(2021-07-13)
11 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834)
12 | ## 1.0.17(2021-05-12)
13 | - 新增 组件示例地址
14 | ## 1.0.16(2021-02-05)
15 | - 优化 组件引用关系,通过uni_modules引用组件
16 | ## 1.0.15(2021-02-05)
17 | - 调整为uni_modules目录规范
18 | - 修复 uni-list-chat 角标显示不正常的问题
19 |
--------------------------------------------------------------------------------
/uni_modules/uni-data-checkbox/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | ## DataCheckbox 数据驱动的单选复选框
4 | > **组件名:uni-data-checkbox**
5 | > 代码块: `uDataCheckbox`
6 |
7 |
8 | 本组件是基于uni-app基础组件checkbox的封装。本组件要解决问题包括:
9 |
10 | 1. 数据绑定型组件:给本组件绑定一个data,会自动渲染一组候选内容。再以往,开发者需要编写不少代码实现类似功能
11 | 2. 自动的表单校验:组件绑定了data,且符合[uni-forms](https://ext.dcloud.net.cn/plugin?id=2773)组件的表单校验规范,搭配使用会自动实现表单校验
12 | 3. 本组件合并了单选多选
13 | 4. 本组件有若干风格选择,如普通的单选多选框、并列button风格、tag风格。开发者可以快速选择需要的风格。但作为一个封装组件,样式代码虽然不用自己写了,却会牺牲一定的样式自定义性
14 |
15 | 在uniCloud开发中,`DB Schema`中配置了enum枚举等类型后,在web控制台的[自动生成表单](https://uniapp.dcloud.io/uniCloud/schema?id=autocode)功能中,会自动生成``uni-data-checkbox``组件并绑定好data
16 |
17 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-data-checkbox)
18 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
--------------------------------------------------------------------------------
/components/navbar/navbar.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 城市
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | 扫码
13 |
14 |
15 |
16 |
17 |
22 |
23 |
--------------------------------------------------------------------------------
/uni_modules/uni-transition/changelog.md:
--------------------------------------------------------------------------------
1 | ## 1.3.1(2021-11-23)
2 | - 修复 init 方法初始化问题
3 | ## 1.3.0(2021-11-19)
4 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource)
5 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-transition](https://uniapp.dcloud.io/component/uniui/uni-transition)
6 | ## 1.2.1(2021-09-27)
7 | - 修复 init 方法不生效的 Bug
8 | ## 1.2.0(2021-07-30)
9 | - 组件兼容 vue3,如何创建 vue3 项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834)
10 | ## 1.1.1(2021-05-12)
11 | - 新增 示例地址
12 | - 修复 示例项目缺少组件的 Bug
13 | ## 1.1.0(2021-04-22)
14 | - 新增 通过方法自定义动画
15 | - 新增 custom-class 非 NVUE 平台支持自定义 class 定制样式
16 | - 优化 动画触发逻辑,使动画更流畅
17 | - 优化 支持单独的动画类型
18 | - 优化 文档示例
19 | ## 1.0.2(2021-02-05)
20 | - 调整为 uni_modules 目录规范
21 |
--------------------------------------------------------------------------------
/uni_modules/uni-countdown/changelog.md:
--------------------------------------------------------------------------------
1 | ## 1.2.0(2021-11-19)
2 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource)
3 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-countdown](https://uniapp.dcloud.io/component/uniui/uni-countdown)
4 | ## 1.1.3(2021-10-18)
5 | - 重构
6 | - 新增 font-size 支持自定义字体大小
7 | ## 1.1.2(2021-08-24)
8 | - 新增 支持国际化
9 | ## 1.1.1(2021-07-30)
10 | - 优化 vue3下小程序事件警告的问题
11 | ## 1.1.0(2021-07-30)
12 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834)
13 | ## 1.0.5(2021-06-18)
14 | - 修复 uni-countdown 重复赋值跳两秒的 bug
15 | ## 1.0.4(2021-05-12)
16 | - 新增 组件示例地址
17 | ## 1.0.3(2021-05-08)
18 | - 修复 uni-countdown 不能控制倒计时的 bug
19 | ## 1.0.2(2021-02-04)
20 | - 调整为uni_modules目录规范
21 |
--------------------------------------------------------------------------------
/uni_modules/uni-datetime-picker/components/uni-datetime-picker/i18n/en.json:
--------------------------------------------------------------------------------
1 | {
2 | "uni-datetime-picker.selectDate": "select date",
3 | "uni-datetime-picker.selectTime": "select time",
4 | "uni-datetime-picker.selectDateTime": "select datetime",
5 | "uni-datetime-picker.startDate": "start date",
6 | "uni-datetime-picker.endDate": "end date",
7 | "uni-datetime-picker.startTime": "start time",
8 | "uni-datetime-picker.endTime": "end time",
9 | "uni-datetime-picker.ok": "ok",
10 | "uni-datetime-picker.clear": "clear",
11 | "uni-datetime-picker.cancel": "cancel",
12 | "uni-calender.MON": "MON",
13 | "uni-calender.TUE": "TUE",
14 | "uni-calender.WED": "WED",
15 | "uni-calender.THU": "THU",
16 | "uni-calender.FRI": "FRI",
17 | "uni-calender.SAT": "SAT",
18 | "uni-calender.SUN": "SUN"
19 | }
20 |
--------------------------------------------------------------------------------
/uni_modules/uni-pagination/changelog.md:
--------------------------------------------------------------------------------
1 | ## 1.2.1(2021-11-22)
2 | - 修复 vue3中某些scss变量无法找到的问题
3 | ## 1.2.0(2021-11-19)
4 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource)
5 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-pagination](https://uniapp.dcloud.io/component/uniui/uni-pagination)
6 | ## 1.1.2(2021-10-08)
7 | - 修复 current 、value 属性未监听,导致高亮样式失效的 bug
8 | ## 1.1.1(2021-08-20)
9 | - 新增 支持国际化
10 | ## 1.1.0(2021-07-30)
11 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834)
12 | ## 1.0.7(2021-05-12)
13 | - 新增 组件示例地址
14 | ## 1.0.6(2021-04-12)
15 | - 新增 PC 和 移动端适配不同的 ui
16 | ## 1.0.5(2021-02-05)
17 | - 优化 组件引用关系,通过uni_modules引用组件
18 |
19 | ## 1.0.4(2021-02-05)
20 | - 调整为uni_modules目录规范
21 |
--------------------------------------------------------------------------------
/uni_modules/uni-test/changelog.md:
--------------------------------------------------------------------------------
1 | ## 2.0.13(2021-11-18)
2 | 邱
3 | ## 2.0.12(2021-11-18)
4 | 123123
5 | ## 2.0.11(2021-11-18)
6 | 0000
7 | ## 2.0.10(2021-11-18)
8 | 111234
9 | ## 2.0.9(2021-11-18)
10 | 3333
11 | ## 2.0.8(2021-11-18)
12 | ===
13 | ## 2.0.7(2021-11-18)
14 | 111
15 | ## 2.0.6(2021-05-26)
16 | - test
17 | ## 0.0.37(2021-03-23)
18 | - uni-forms 更新 校验器
19 | - uni-forms 修复 表单规则设置类型为 number 的情况下,值为0校验失败的Bug
20 |
21 |
22 | ## 0.0.36(2021-03-23)
23 | - uni-forms 更新 校验器
24 | - uni-forms 修复 表单规则设置类型为 number 的情况下,值为0校验失败的Bug
25 |
26 |
27 | ## 0.0.35(2021-03-23)
28 | - uni-forms 更新 校验器
29 | - uni-forms 修复 表单规则设置类型为 number 的情况下,值为0校验失败的Bug
30 |
31 |
32 | ## 0.0.34(2021-03-23)
33 | - 测试新同步插件
34 | ## 0.0.33(2021-03-09)
35 | - test
36 | ## 0.0.32(2021-02-24)
37 | - 更新 read 2
38 | ## 0.0.31(2021-02-24)
39 | - 同步 readme.md
40 |
--------------------------------------------------------------------------------
/uni_modules/uni-table/changelog.md:
--------------------------------------------------------------------------------
1 | ## 1.2.0(2021-11-19)
2 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource)
3 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-table](https://uniapp.dcloud.io/component/uniui/uni-table)
4 | ## 1.1.0(2021-07-30)
5 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834)
6 | ## 1.0.7(2021-07-08)
7 | - 新增 uni-th 支持 date 日期筛选范围
8 | ## 1.0.6(2021-07-05)
9 | - 新增 uni-th 支持 range 筛选范围
10 | ## 1.0.5(2021-06-28)
11 | - 新增 uni-th 筛选功能
12 | ## 1.0.4(2021-05-12)
13 | - 新增 示例地址
14 | - 修复 示例项目缺少组件的Bug
15 | ## 1.0.3(2021-04-16)
16 | - 新增 sortable 属性,是否开启单列排序
17 | - 优化 表格多选逻辑
18 | ## 1.0.2(2021-03-22)
19 | - uni-tr 添加 disabled 属性,用于 type=selection 时,设置某行是否可由全选按钮控制
20 | ## 1.0.1(2021-02-05)
21 | - 调整为uni_modules目录规范
22 |
--------------------------------------------------------------------------------
/uni_modules/uni-rate/changelog.md:
--------------------------------------------------------------------------------
1 | ## 1.3.0(2021-11-19)
2 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource)
3 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-rate](https://uniapp.dcloud.io/component/uniui/uni-rate)
4 | ## 1.2.2(2021-09-10)
5 | - 优化 默认值修改为 0 颗星
6 | ## 1.2.1(2021-07-30)
7 | - 优化 vue3下事件警告的问题
8 | ## 1.2.0(2021-07-13)
9 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834)
10 | ## 1.1.2(2021-05-12)
11 | - 新增 组件示例地址
12 | ## 1.1.1(2021-04-21)
13 | - 修复 布局变化后 uni-rate 星星计算不准确的 bug
14 | - 优化 添加依赖 uni-icons, 导入 uni-rate 自动下载依赖
15 | ## 1.1.0(2021-04-16)
16 | - 修复 uni-rate 属性 margin 值为 string 组件失效的 bug
17 |
18 | ## 1.0.9(2021-02-05)
19 | - 优化 组件引用关系,通过uni_modules引用组件
20 |
21 | ## 1.0.8(2021-02-05)
22 | - 调整为uni_modules目录规范
23 | - 支持 pc 端
24 |
--------------------------------------------------------------------------------
/uni_modules/uni-forms/readme.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | ## Forms 表单
4 |
5 | > **组件名:uni-forms**
6 | > 代码块: `uForms`、`uni-forms-item`
7 | > 关联组件:`uni-forms-item`、`uni-easyinput`、`uni-data-checkbox`、`uni-group`。
8 |
9 |
10 | uni-app的内置组件已经有了 `