├── .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 | 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 | 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 | 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 | 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 | 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 | 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 | 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的内置组件已经有了 `
`组件,用于提交表单内容。 11 | 12 | 然而几乎每个表单都需要做表单验证,为了方便做表单验证,减少重复开发,`uni ui` 又基于 ``组件封装了 ``组件,内置了表单验证功能。 13 | 14 | `` 提供了 `rules`属性来描述校验规则、``子组件来包裹具体的表单项,以及给原生或三方组件提供了 `binddata()` 来设置表单值。 15 | 16 | 每个要校验的表单项,不管input还是checkbox,都必须放在``组件中,且一个``组件只能放置一个表单项。 17 | 18 | ``组件内部预留了显示error message的区域,默认是在表单项的底部。 19 | 20 | 另外,``组件下面的各个表单项,可以通过``包裹为不同的分组。同一``下的不同表单项目将聚拢在一起,同其他group保持垂直间距。``仅影响视觉效果。 21 | 22 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-forms) 23 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 -------------------------------------------------------------------------------- /uni_modules/uni-tag/changelog.md: -------------------------------------------------------------------------------- 1 | ## 2.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-tag](https://uniapp.dcloud.io/component/uniui/uni-tag) 4 | ## 2.0.0(2021-11-09) 5 | - 新增 提供组件设计资源,组件样式调整 6 | - 移除 插槽 7 | - 移除 type 属性的 royal 选项 8 | ## 1.1.1(2021-08-11) 9 | - type 不是 default 时,size 为 small 字体大小显示不正确 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-06-18) 13 | - 修复 uni-tag 在字节跳动小程序上 css 类名编译错误的 bug 14 | ## 1.0.6(2021-06-04) 15 | - 修复 未定义 sass 变量 "$uni-color-royal" 的bug 16 | ## 1.0.5(2021-05-10) 17 | - 修复 royal 类型无效的bug 18 | - 修复 uni-tag 宽度不自适应的bug 19 | - 新增 uni-tag 支持属性 custom-style 自定义样式 20 | ## 1.0.4(2021-02-05) 21 | - 调整为uni_modules目录规范 22 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/index/web/shopClassify.wxml: -------------------------------------------------------------------------------- 1 | {{item.options}} -------------------------------------------------------------------------------- /uni_modules/uni-nav-bar/changelog.md: -------------------------------------------------------------------------------- 1 | ## 1.2.1(2022-01-10) 2 | - 修复 color 属性不生效的bug 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-nav-bar](https://uniapp.dcloud.io/component/uniui/uni-nav-bar) 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-30) 11 | - 修复 在nvue下fixed为true,宽度不能撑满的Bug 12 | ## 1.0.9(2021-04-21) 13 | - 优化 添加依赖 uni-icons, 导入后自动下载依赖 14 | ## 1.0.8(2021-04-14) 15 | - uni-ui 修复 uni-nav-bar 当 fixed 属性为 true 时铺不满屏幕的 bug 16 | 17 | ## 1.0.7(2021-02-25) 18 | - 修复 easycom 下,找不到 uni-status-bar 的bug 19 | 20 | ## 1.0.6(2021-02-05) 21 | - 优化 组件引用关系,通过uni_modules引用组件 22 | 23 | ## 1.0.5(2021-02-05) 24 | - 调整为uni_modules目录规范 25 | -------------------------------------------------------------------------------- /unpackage/dist/dev/app-plus/__uniappview.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 14 | View 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/components/popup/popup.wxml: -------------------------------------------------------------------------------- 1 | 提示信息 -------------------------------------------------------------------------------- /uni_modules/uni-number-box/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-number-box](https://uniapp.dcloud.io/component/uniui/uni-number-box) 6 | ## 1.1.2(2021-11-09) 7 | - 新增 提供组件设计资源,组件样式调整 8 | ## 1.1.1(2021-07-30) 9 | - 优化 vue3下事件警告的问题 10 | ## 1.1.0(2021-07-13) 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-20) 15 | - 修复 uni-number-box 浮点数运算不精确的 bug 16 | - 修复 uni-number-box change 事件触发不正确的 bug 17 | - 新增 uni-number-box v-model 双向绑定 18 | ## 1.0.5(2021-02-05) 19 | - 调整为uni_modules目录规范 20 | 21 | ## 1.0.7(2021-02-05) 22 | - 调整为uni_modules目录规范 23 | - 新增 支持 v-model 24 | - 新增 支持 focus、blur 事件 25 | - 新增 支持 PC 端 26 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/index/web/opList.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /* 水平间距 */ 3 | /* 水平间距 */ 4 | .shop-list-content .shop-item.data-v-18a018e0 { 5 | display: flex; 6 | padding: 0 10px; 7 | height: 100px; 8 | margin-bottom: 20px; 9 | } 10 | .shop-list-content .shop-item-desc.data-v-18a018e0 { 11 | width: 100%; 12 | margin: 10px; 13 | } 14 | .shop-list-content .shop-item-desc .title.data-v-18a018e0, 15 | .shop-list-content .shop-item-desc .delivery.data-v-18a018e0, 16 | .shop-list-content .shop-item-desc .service.data-v-18a018e0 { 17 | margin-bottom: 10px; 18 | } 19 | .shop-list-content .shop-item-desc .title.data-v-18a018e0 { 20 | font-size: 18px; 21 | } 22 | .shop-list-content .shop-item-desc .delivery.data-v-18a018e0 { 23 | display: flex; 24 | justify-content: space-between; 25 | font-size: 12px; 26 | color: #37a2ee; 27 | } 28 | .shop-list-content .service .tag.data-v-18a018e0 { 29 | margin-right: 3px; 30 | } 31 | 32 | -------------------------------------------------------------------------------- /uni_modules/uni-data-picker/readme.md: -------------------------------------------------------------------------------- 1 | ## DataPicker 级联选择 2 | > **组件名:uni-data-picker** 3 | > 代码块: `uDataPicker` 4 | > 关联组件:`uni-data-pickerview`、`uni-load-more`。 5 | 6 | 7 | `` 是一个选择类[datacom组件](https://uniapp.dcloud.net.cn/component/datacom)。 8 | 9 | 支持单列、和多列级联选择。列数没有限制,如果屏幕显示不全,顶部tab区域会左右滚动。 10 | 11 | 候选数据支持一次性加载完毕,也支持懒加载,比如示例图中,选择了“北京”后,动态加载北京的区县数据。 12 | 13 | `` 组件尤其适用于地址选择、分类选择等选择类。 14 | 15 | `` 支持本地数据、云端静态数据(json),uniCloud云数据库数据。 16 | 17 | `` 可以通过JQL直连uniCloud云数据库,配套[DB Schema](https://uniapp.dcloud.net.cn/uniCloud/schema),可在schema2code中自动生成前端页面,还支持服务器端校验。 18 | 19 | 在uniCloud数据表中新建表“uni-id-address”和“opendb-city-china”,这2个表的schema自带foreignKey关联。在“uni-id-address”表的表结构页面使用schema2code生成前端页面,会自动生成地址管理的维护页面,自动从“opendb-city-china”表包含的中国所有省市区信息里选择地址。 20 | 21 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-data-picker) 22 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 -------------------------------------------------------------------------------- /uni_modules/uni-search-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-search-bar](https://uniapp.dcloud.io/component/uniui/uni-search-bar) 4 | ## 1.1.2(2021-08-30) 5 | - 修复 value 属性与 modelValue 属性不兼容的Bug 6 | ## 1.1.1(2021-08-24) 7 | - 新增 支持国际化 8 | ## 1.1.0(2021-07-30) 9 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834) 10 | ## 1.0.9(2021-05-12) 11 | - 新增 项目示例地址 12 | ## 1.0.8(2021-04-21) 13 | - 优化 添加依赖 uni-icons, 导入后自动下载依赖 14 | ## 1.0.7(2021-04-15) 15 | - uni-ui 新增 uni-search-bar 的 focus 事件 16 | 17 | ## 1.0.6(2021-02-05) 18 | - 优化 组件引用关系,通过uni_modules引用组件 19 | 20 | ## 1.0.5(2021-02-05) 21 | - 调整为uni_modules目录规范 22 | - 新增 支持双向绑定 23 | - 更改 input 事件的返回值,e={value:Number} --> e=value 24 | - 新增 支持图标插槽 25 | - 新增 支持 clear、blur 事件 26 | - 新增 支持 focus 属性 27 | - 去掉组件背景色 28 | -------------------------------------------------------------------------------- /uni_modules/uni-card/changelog.md: -------------------------------------------------------------------------------- 1 | ## 1.3.1(2021-12-20) 2 | - 修复 在vue页面下略缩图显示不正常的bug 3 | ## 1.3.0(2021-11-19) 4 | - 重构插槽的用法 ,header 替换为 title 5 | - 新增 actions 插槽 6 | - 新增 cover 封面图属性和插槽 7 | - 新增 padding 内容默认内边距离 8 | - 新增 margin 卡片默认外边距离 9 | - 新增 spacing 卡片默认内边距 10 | - 新增 shadow 卡片阴影属性 11 | - 取消 mode 属性,可使用组合插槽代替 12 | - 取消 note 属性 ,使用actions插槽代替 13 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource) 14 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-card](https://uniapp.dcloud.io/component/uniui/uni-card) 15 | ## 1.2.1(2021-07-30) 16 | - 优化 vue3下事件警告的问题 17 | ## 1.2.0(2021-07-13) 18 | - 组件兼容 vue3,如何创建vue3项目详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834) 19 | ## 1.1.8(2021-07-01) 20 | - 优化 图文卡片无图片加载时,提供占位图标 21 | - 新增 header 插槽,自定义卡片头部( 图文卡片 mode="style" 时,不支持) 22 | - 修复 thumbnail 不存在仍然占位的 bug 23 | ## 1.1.7(2021-05-12) 24 | - 新增 组件示例地址 25 | ## 1.1.6(2021-02-04) 26 | - 调整为uni_modules目录规范 27 | -------------------------------------------------------------------------------- /uni_modules/uni-swipe-action/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-swipe-action](https://uniapp.dcloud.io/component/uniui/uni-swipe-action) 4 | ## 1.2.4(2021-08-20) 5 | - 优化 close-all 方法 6 | ## 1.2.3(2021-08-20) 7 | - 新增 close-all 方法,关闭所有已打开的组件 8 | ## 1.2.2(2021-08-17) 9 | - 新增 resize() 方法,在非微信小程序、h5、app-vue端出现不能滑动的问题的时候,重置组件 10 | - 修复 app 端偶尔出现类似 Page[x][-x,xx;-x,xx,x,x-x] 的问题 11 | - 优化 微信小程序、h5、app-vue 滑动逻辑,避免出现动态新增组件后不能滑动的问题 12 | ## 1.2.1(2021-07-30) 13 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834) 14 | - 修复 跨页面修改组件数据 ,导致不能滑动的问题 15 | ## 1.1.10(2021-06-17) 16 | - 修复 按钮点击执行两次的bug 17 | ## 1.1.9(2021-05-12) 18 | - 新增 项目示例地址 19 | ## 1.1.8(2021-03-26) 20 | - 修复 微信小程序 nv_navigator is not defined 报错的bug 21 | ## 1.1.7(2021-02-05) 22 | - 调整为uni_modules目录规范 23 | - 新增 左侧滑动 24 | - 新增 插槽使用方式 25 | - 新增 threshold 属性,可以控制滑动缺省值 26 | - 优化 长列表滚动性能 27 | - 修复 滚动页面时触发组件滑动的Bug 28 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/index/web/opList.wxml: -------------------------------------------------------------------------------- 1 | {{item.$orig.name}}接受预定{{''+item.$orig.start_time+'后配送'}}{{item.$orig.delivery}} -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/profile/web/editAddress.wxml: -------------------------------------------------------------------------------- 1 | 收货地址:收货人:手机号: -------------------------------------------------------------------------------- /pages/profile/config.js: -------------------------------------------------------------------------------- 1 | export default { 2 | 3 | // 登录注册时的表单验证规则 4 | rules: { 5 | // 对name字段进行必填验证 6 | account: { 7 | rules: [{ 8 | required: true, 9 | errorMessage: '请输入用户名', 10 | }, 11 | { 12 | minLength: 2, 13 | maxLength: 10, 14 | errorMessage: '用户名长度在 {minLength} 到 {maxLength} 个字符', 15 | } 16 | ] 17 | }, 18 | // 对password字段进行必填验证 19 | password: { 20 | rules: [{ 21 | required: true, 22 | errorMessage: '请输入密码', 23 | } 24 | ] 25 | }, 26 | }, 27 | 28 | // 协议和说明的文字 29 | explain:{ 30 | title:'用户须知', 31 | content: 32 | `这是协议和说明的文字 33 | 这是协议和说明的文字 34 | 这是协议和说明的文字 35 | 这是协议和说明的文字 36 | 这是协议和说明的文字 37 | 这是协议和说明的文字 38 | 这是协议和说明的文字 39 | 这是协议和说明的文字 40 | 这是协议和说明的文字 41 | 这是协议和说明的文字 42 | 这是协议和说明的文字 43 | 这是协议和说明的文字 44 | 这是协议和说明的文字 45 | 这是协议和说明的文字 46 | 这是协议和说明的文字 47 | 这是协议和说明的文字 48 | 这是协议和说明的文字 49 | 这是协议和说明的文字 50 | 这是协议和说明的文字 51 | 这是协议和说明的文字 52 | 这是协议和说明的文字 53 | 这是协议和说明的文字 54 | 这是协议和说明的文字 55 | 这是协议和说明的文字 56 | 这是协议和说明的文字 57 | 这是协议和说明的文字 58 | 这是协议和说明的文字 59 | 这是协议和说明的文字 60 | 这是协议和说明的文字 61 | 这是协议和说明的文字 62 | 这是协议和说明的文字 63 | 这是协议和说明的文字 64 | 这是协议和说明的文字 65 | 这是协议和说明的文字 66 | ` 67 | } 68 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/profile/index.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /* 水平间距 */ 3 | /* 水平间距 */ 4 | .profile.data-v-14bc1b43 { 5 | height: calc(100vh - 44px - 50px); 6 | background-color: #f8f8f8; 7 | } 8 | .top-wrap.data-v-14bc1b43 { 9 | display: flex; 10 | padding: 20px 0 20px 20px; 11 | background-color: #fff; 12 | } 13 | .top-wrap-left .avatar.data-v-14bc1b43 { 14 | width: 64px; 15 | height: 64px; 16 | border-radius: 50%; 17 | } 18 | .top-wrap-right.data-v-14bc1b43 { 19 | display: flex; 20 | align-items: center; 21 | margin-left: 20px; 22 | } 23 | .top-wrap-right .no-login.data-v-14bc1b43 { 24 | font-size: 20px; 25 | } 26 | .center-wrap.data-v-14bc1b43 { 27 | background-color: #fff; 28 | } 29 | .center-wrap .center-item.data-v-14bc1b43 { 30 | display: flex; 31 | justify-content: space-between; 32 | padding: 10px; 33 | height: 30px; 34 | line-height: 30px; 35 | font-size: 14px; 36 | } 37 | .center-wrap .center-item .icon.data-v-14bc1b43 { 38 | margin-right: 5px; 39 | } 40 | .bottom-wrap.data-v-14bc1b43 { 41 | margin-top: 20px; 42 | } 43 | .bottom-wrap .btn-quit.data-v-14bc1b43 { 44 | background-color: #fff; 45 | } 46 | 47 | -------------------------------------------------------------------------------- /uni_modules/uni-collapse/changelog.md: -------------------------------------------------------------------------------- 1 | ## 1.4.1(2021-11-22) 2 | - 修复 vue3中个别scss变量无法找到的问题 3 | ## 1.4.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-collapse](https://uniapp.dcloud.io/component/uniui/uni-collapse) 6 | ## 1.3.3(2021-08-17) 7 | - 优化 show-arrow 属性默认为true 8 | ## 1.3.2(2021-08-17) 9 | - 新增 show-arrow 属性,控制是否显示右侧箭头 10 | ## 1.3.1(2021-07-30) 11 | - 优化 vue3下小程序事件警告的问题 12 | ## 1.3.0(2021-07-30) 13 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834) 14 | ## 1.2.2(2021-07-21) 15 | - 修复 由1.2.0版本引起的 change 事件返回 undefined 的Bug 16 | ## 1.2.1(2021-07-21) 17 | - 优化 组件示例 18 | ## 1.2.0(2021-07-21) 19 | - 新增 组件折叠动画 20 | - 新增 value\v-model 属性 ,动态修改面板折叠状态 21 | - 新增 title 插槽 ,可定义面板标题 22 | - 新增 border 属性 ,显示隐藏面板内容分隔线 23 | - 新增 title-border 属性 ,显示隐藏面板标题分隔线 24 | - 修复 resize 方法失效的Bug 25 | - 修复 change 事件返回参数不正确的Bug 26 | - 优化 H5、App 平台自动更具内容更新高度,无需调用 reszie() 方法 27 | ## 1.1.7(2021-05-12) 28 | - 新增 组件示例地址 29 | ## 1.1.6(2021-02-05) 30 | - 优化 组件引用关系,通过uni_modules引用组件 31 | ## 1.1.5(2021-02-05) 32 | - 调整为uni_modules目录规范 -------------------------------------------------------------------------------- /uni_modules/uni-easyinput/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-easyinput](https://uniapp.dcloud.io/component/uniui/uni-easyinput) 4 | ## 0.1.4(2021-08-20) 5 | - 修复 在 uni-forms 的动态表单中默认值校验不通过的 bug 6 | ## 0.1.3(2021-08-11) 7 | - 修复 在 uni-forms 中重置表单,错误信息无法清除的问题 8 | ## 0.1.2(2021-07-30) 9 | - 优化 vue3下事件警告的问题 10 | ## 0.1.1 11 | - 优化 errorMessage 属性支持 Boolean 类型 12 | ## 0.1.0(2021-07-13) 13 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834) 14 | ## 0.0.16(2021-06-29) 15 | - 修复 confirmType 属性(仅 type="text" 生效)导致多行文本框无法换行的 bug 16 | ## 0.0.15(2021-06-21) 17 | - 修复 passwordIcon 属性拼写错误的 bug 18 | ## 0.0.14(2021-06-18) 19 | - 新增 passwordIcon 属性,当type=password时是否显示小眼睛图标 20 | - 修复 confirmType 属性不生效的问题 21 | ## 0.0.13(2021-06-04) 22 | - 修复 disabled 状态可清出内容的 bug 23 | ## 0.0.12(2021-05-12) 24 | - 新增 组件示例地址 25 | ## 0.0.11(2021-05-07) 26 | - 修复 input-border 属性不生效的问题 27 | ## 0.0.10(2021-04-30) 28 | - 修复 ios 遮挡文字、显示一半的问题 29 | ## 0.0.9(2021-02-05) 30 | - 调整为uni_modules目录规范 31 | - 优化 兼容 nvue 页面 32 | -------------------------------------------------------------------------------- /uni_modules/uni-badge/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-badge](https://uniapp.dcloud.io/component/uniui/uni-badge) 4 | ## 1.1.7(2021-11-08) 5 | - 优化 升级ui 6 | - 修改 size 属性默认值调整为 small 7 | - 修改 type 属性,默认值调整为 error,info 替换 default 8 | ## 1.1.6(2021-09-22) 9 | - 修复 在字节小程序上样式不生效的 bug 10 | ## 1.1.5(2021-07-30) 11 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834) 12 | ## 1.1.4(2021-07-29) 13 | - 修复 去掉 nvue 不支持css 的 align-self 属性,nvue 下不暂支持 absolute 属性 14 | ## 1.1.3(2021-06-24) 15 | - 优化 示例项目 16 | ## 1.1.1(2021-05-12) 17 | - 新增 组件示例地址 18 | ## 1.1.0(2021-05-12) 19 | - 新增 uni-badge 的 absolute 属性,支持定位 20 | - 新增 uni-badge 的 offset 属性,支持定位偏移 21 | - 新增 uni-badge 的 is-dot 属性,支持仅显示有一个小点 22 | - 新增 uni-badge 的 max-num 属性,支持自定义封顶的数字值,超过 99 显示99+ 23 | - 优化 uni-badge 属性 custom-style, 支持以对象形式自定义样式 24 | ## 1.0.7(2021-05-07) 25 | - 修复 uni-badge 在 App 端,数字小于10时不是圆形的bug 26 | - 修复 uni-badge 在父元素不是 flex 布局时,宽度缩小的bug 27 | - 新增 uni-badge 属性 custom-style, 支持自定义样式 28 | ## 1.0.6(2021-02-04) 29 | - 调整为uni_modules目录规范 30 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uni-forms/components/uni-forms-item/uni-forms-item.wxml: -------------------------------------------------------------------------------- 1 | *{{label}}{{showMsg==='undertext'?msg:''}} -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uni-segmented-control/components/uni-segmented-control/uni-segmented-control.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /* 水平间距 */ 3 | /* 水平间距 */ 4 | .segmented-control { 5 | display: flex; 6 | box-sizing: border-box; 7 | flex-direction: row; 8 | height: 36px; 9 | overflow: hidden; 10 | } 11 | .segmented-control__item { 12 | display: inline-flex; 13 | box-sizing: border-box; 14 | position: relative; 15 | flex: 1; 16 | justify-content: center; 17 | align-items: center; 18 | } 19 | .segmented-control__item--button { 20 | border-style: solid; 21 | border-top-width: 1px; 22 | border-bottom-width: 1px; 23 | border-right-width: 1px; 24 | border-left-width: 0; 25 | } 26 | .segmented-control__item--button--first { 27 | border-left-width: 1px; 28 | border-top-left-radius: 5px; 29 | border-bottom-left-radius: 5px; 30 | } 31 | .segmented-control__item--button--last { 32 | border-top-right-radius: 5px; 33 | border-bottom-right-radius: 5px; 34 | } 35 | .segmented-control__item--text { 36 | border-bottom-style: solid; 37 | border-bottom-width: 2px; 38 | padding: 6px 0; 39 | } 40 | .segmented-control__text { 41 | font-size: 14px; 42 | line-height: 20px; 43 | text-align: center; 44 | } 45 | 46 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uni-segmented-control/components/uni-segmented-control/uni-segmented-control.wxml: -------------------------------------------------------------------------------- 1 | {{item}} -------------------------------------------------------------------------------- /plugins/axios/axios.js: -------------------------------------------------------------------------------- 1 | import Vue from "vue"; 2 | import axios from "axios"; 3 | import axiosAdapterUniapp from 'axios-adapter-uniapp' 4 | import { 5 | axios_config 6 | } from '../../config.json' 7 | 8 | let loadingInstance; 9 | 10 | const instance = axios.create({ 11 | baseURL: `${axios_config.host}:${axios_config.port}`, 12 | timeout: 60 * 1000, 13 | headers: { 14 | "Content-Type": "application/json;charset=UTF-8" 15 | }, 16 | adapter: axiosAdapterUniapp 17 | }); 18 | 19 | instance.interceptors.request.use( 20 | config => { 21 | const reqObj = config; 22 | // 发送请求时携带token 23 | if (uni.getStorageSync('token')) { 24 | reqObj.headers.Authorization = uni.getStorageSync('token') 25 | } else { 26 | uni.showToast({ 27 | title:'请登录' 28 | }) 29 | } 30 | return reqObj; 31 | }, 32 | err => Promise.reject(err) 33 | ); 34 | 35 | instance.interceptors.response.use( 36 | response => { 37 | const res = response.data; 38 | // 对响应数据做点什么 39 | if (res.code !== 200) { 40 | // 401 未认证 41 | if (res.code === 401) { 42 | localStorage.clear(); 43 | // setTimeout(() => location.reload(), 1000) 44 | } 45 | } 46 | return res; 47 | }, 48 | err => Promise.reject(err) 49 | ); 50 | 51 | Vue.prototype.$axios = instance 52 | export default instance; 53 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/profile/web/login.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uni_modules/uni-list/components/uni-list-chat/uni-list-chat.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * 这里是 uni-list 组件内置的常用样式变量 3 | * 如果需要覆盖样式,这里提供了基本的组件样式变量,您可以尝试修改这里的变量,去完成样式替换,而不用去修改源码 4 | * 5 | */ 6 | 7 | // 背景色 8 | $background-color : #fff; 9 | // 分割线颜色 10 | $divide-line-color : #e5e5e5; 11 | 12 | // 默认头像大小,如需要修改此值,注意同步修改 js 中的值 const avatarWidth = xx ,目前只支持方形头像 13 | // nvue 页面不支持修改头像大小 14 | $avatar-width : 45px ; 15 | 16 | // 头像边框 17 | $avatar-border-radius: 5px; 18 | $avatar-border-color: #eee; 19 | $avatar-border-width: 1px; 20 | 21 | // 标题文字样式 22 | $title-size : 16px; 23 | $title-color : #3b4144; 24 | $title-weight : normal; 25 | 26 | // 描述文字样式 27 | $note-size : 12px; 28 | $note-color : #999; 29 | $note-weight : normal; 30 | 31 | // 右侧额外内容默认样式 32 | $right-text-size : 12px; 33 | $right-text-color : #999; 34 | $right-text-weight : normal; 35 | 36 | // 角标样式 37 | // nvue 页面不支持修改圆点位置以及大小 38 | // 角标在左侧时,角标的位置,默认为 0 ,负数左/下移动,正数右/上移动 39 | $badge-left: 0px; 40 | $badge-top: 0px; 41 | 42 | // 显示圆点时,圆点大小 43 | $dot-width: 10px; 44 | $dot-height: 10px; 45 | 46 | // 显示角标时,角标大小和字体大小 47 | $badge-size : 18px; 48 | $badge-font : 12px; 49 | // 显示角标时,角标前景色 50 | $badge-color : #fff; 51 | // 显示角标时,角标背景色 52 | $badge-background-color : #ff5a5f; 53 | // 显示角标时,角标左右间距 54 | $badge-space : 6px; 55 | 56 | // 状态样式 57 | // 选中颜色 58 | $hover : #f5f5f5; 59 | -------------------------------------------------------------------------------- /uni_modules/uni-popup/components/uni-popup-dialog/keypress.js: -------------------------------------------------------------------------------- 1 | // #ifdef H5 2 | export default { 3 | name: 'Keypress', 4 | props: { 5 | disable: { 6 | type: Boolean, 7 | default: false 8 | } 9 | }, 10 | mounted () { 11 | const keyNames = { 12 | esc: ['Esc', 'Escape'], 13 | tab: 'Tab', 14 | enter: 'Enter', 15 | space: [' ', 'Spacebar'], 16 | up: ['Up', 'ArrowUp'], 17 | left: ['Left', 'ArrowLeft'], 18 | right: ['Right', 'ArrowRight'], 19 | down: ['Down', 'ArrowDown'], 20 | delete: ['Backspace', 'Delete', 'Del'] 21 | } 22 | const listener = ($event) => { 23 | if (this.disable) { 24 | return 25 | } 26 | const keyName = Object.keys(keyNames).find(key => { 27 | const keyName = $event.key 28 | const value = keyNames[key] 29 | return value === keyName || (Array.isArray(value) && value.includes(keyName)) 30 | }) 31 | if (keyName) { 32 | // 避免和其他按键事件冲突 33 | setTimeout(() => { 34 | this.$emit(keyName, {}) 35 | }, 0) 36 | } 37 | } 38 | document.addEventListener('keyup', listener) 39 | this.$once('hook:beforeDestroy', () => { 40 | document.removeEventListener('keyup', listener) 41 | }) 42 | }, 43 | render: () => {} 44 | } 45 | // #endif 46 | -------------------------------------------------------------------------------- /uni_modules/uni-popup/components/uni-popup/keypress.js: -------------------------------------------------------------------------------- 1 | // #ifdef H5 2 | export default { 3 | name: 'Keypress', 4 | props: { 5 | disable: { 6 | type: Boolean, 7 | default: false 8 | } 9 | }, 10 | mounted () { 11 | const keyNames = { 12 | esc: ['Esc', 'Escape'], 13 | tab: 'Tab', 14 | enter: 'Enter', 15 | space: [' ', 'Spacebar'], 16 | up: ['Up', 'ArrowUp'], 17 | left: ['Left', 'ArrowLeft'], 18 | right: ['Right', 'ArrowRight'], 19 | down: ['Down', 'ArrowDown'], 20 | delete: ['Backspace', 'Delete', 'Del'] 21 | } 22 | const listener = ($event) => { 23 | if (this.disable) { 24 | return 25 | } 26 | const keyName = Object.keys(keyNames).find(key => { 27 | const keyName = $event.key 28 | const value = keyNames[key] 29 | return value === keyName || (Array.isArray(value) && value.includes(keyName)) 30 | }) 31 | if (keyName) { 32 | // 避免和其他按键事件冲突 33 | setTimeout(() => { 34 | this.$emit(keyName, {}) 35 | }, 0) 36 | } 37 | } 38 | document.addEventListener('keyup', listener) 39 | // this.$once('hook:beforeDestroy', () => { 40 | // document.removeEventListener('keyup', listener) 41 | // }) 42 | }, 43 | render: () => {} 44 | } 45 | // #endif 46 | -------------------------------------------------------------------------------- /uni_modules/uni-data-picker/components/uni-data-picker/keypress.js: -------------------------------------------------------------------------------- 1 | // #ifdef H5 2 | export default { 3 | name: 'Keypress', 4 | props: { 5 | disable: { 6 | type: Boolean, 7 | default: false 8 | } 9 | }, 10 | mounted () { 11 | const keyNames = { 12 | esc: ['Esc', 'Escape'], 13 | tab: 'Tab', 14 | enter: 'Enter', 15 | space: [' ', 'Spacebar'], 16 | up: ['Up', 'ArrowUp'], 17 | left: ['Left', 'ArrowLeft'], 18 | right: ['Right', 'ArrowRight'], 19 | down: ['Down', 'ArrowDown'], 20 | delete: ['Backspace', 'Delete', 'Del'] 21 | } 22 | const listener = ($event) => { 23 | if (this.disable) { 24 | return 25 | } 26 | const keyName = Object.keys(keyNames).find(key => { 27 | const keyName = $event.key 28 | const value = keyNames[key] 29 | return value === keyName || (Array.isArray(value) && value.includes(keyName)) 30 | }) 31 | if (keyName) { 32 | // 避免和其他按键事件冲突 33 | setTimeout(() => { 34 | this.$emit(keyName, {}) 35 | }, 0) 36 | } 37 | } 38 | document.addEventListener('keyup', listener) 39 | this.$once('hook:beforeDestroy', () => { 40 | document.removeEventListener('keyup', listener) 41 | }) 42 | }, 43 | render: () => {} 44 | } 45 | // #endif 46 | -------------------------------------------------------------------------------- /uni_modules/uni-datetime-picker/components/uni-datetime-picker/keypress.js: -------------------------------------------------------------------------------- 1 | // #ifdef H5 2 | export default { 3 | name: 'Keypress', 4 | props: { 5 | disable: { 6 | type: Boolean, 7 | default: false 8 | } 9 | }, 10 | mounted () { 11 | const keyNames = { 12 | esc: ['Esc', 'Escape'], 13 | tab: 'Tab', 14 | enter: 'Enter', 15 | space: [' ', 'Spacebar'], 16 | up: ['Up', 'ArrowUp'], 17 | left: ['Left', 'ArrowLeft'], 18 | right: ['Right', 'ArrowRight'], 19 | down: ['Down', 'ArrowDown'], 20 | delete: ['Backspace', 'Delete', 'Del'] 21 | } 22 | const listener = ($event) => { 23 | if (this.disable) { 24 | return 25 | } 26 | const keyName = Object.keys(keyNames).find(key => { 27 | const keyName = $event.key 28 | const value = keyNames[key] 29 | return value === keyName || (Array.isArray(value) && value.includes(keyName)) 30 | }) 31 | if (keyName) { 32 | // 避免和其他按键事件冲突 33 | setTimeout(() => { 34 | this.$emit(keyName, {}) 35 | }, 0) 36 | } 37 | } 38 | document.addEventListener('keyup', listener) 39 | this.$once('hook:beforeDestroy', () => { 40 | document.removeEventListener('keyup', listener) 41 | }) 42 | }, 43 | render: () => {} 44 | } 45 | // #endif -------------------------------------------------------------------------------- /uni_modules/uni-drawer/components/uni-drawer/keypress.js: -------------------------------------------------------------------------------- 1 | // #ifdef H5 2 | export default { 3 | name: 'Keypress', 4 | props: { 5 | disable: { 6 | type: Boolean, 7 | default: false 8 | } 9 | }, 10 | mounted () { 11 | const keyNames = { 12 | esc: ['Esc', 'Escape'], 13 | tab: 'Tab', 14 | enter: 'Enter', 15 | space: [' ', 'Spacebar'], 16 | up: ['Up', 'ArrowUp'], 17 | left: ['Left', 'ArrowLeft'], 18 | right: ['Right', 'ArrowRight'], 19 | down: ['Down', 'ArrowDown'], 20 | delete: ['Backspace', 'Delete', 'Del'] 21 | } 22 | const listener = ($event) => { 23 | if (this.disable) { 24 | return 25 | } 26 | const keyName = Object.keys(keyNames).find(key => { 27 | const keyName = $event.key 28 | const value = keyNames[key] 29 | return value === keyName || (Array.isArray(value) && value.includes(keyName)) 30 | }) 31 | if (keyName) { 32 | // 避免和其他按键事件冲突 33 | setTimeout(() => { 34 | this.$emit(keyName, {}) 35 | }, 0) 36 | } 37 | } 38 | document.addEventListener('keyup', listener) 39 | // this.$once('hook:beforeDestroy', () => { 40 | // document.removeEventListener('keyup', listener) 41 | // }) 42 | }, 43 | render: () => {} 44 | } 45 | // #endif 46 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/shop/index.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /* 水平间距 */ 3 | /* 水平间距 */ 4 | .shop.data-v-160b8d32 { 5 | position: relative; 6 | } 7 | .shop-upper-bg image.data-v-160b8d32 { 8 | -webkit-filter: blur(5px); 9 | filter: blur(5px); 10 | width: 100%; 11 | height: 60px; 12 | } 13 | .shop-upper-intro.data-v-160b8d32 { 14 | text-align: center; 15 | } 16 | .shop-upper-intro .shop-avatar image.data-v-160b8d32 { 17 | width: 64px; 18 | height: 64px; 19 | position: absolute; 20 | top: 15px; 21 | left: 50%; 22 | -webkit-transform: translateX(-50%); 23 | transform: translateX(-50%); 24 | } 25 | .shop-upper-intro .shop-info.data-v-160b8d32 { 26 | margin-top: 20px; 27 | } 28 | .shop-upper-intro .shop-info .shop-name.data-v-160b8d32 { 29 | font-size: 18px; 30 | font-weight: 700; 31 | } 32 | .shop-upper-intro .shop-notice.data-v-160b8d32 { 33 | display: flex; 34 | justify-content: center; 35 | align-items: center; 36 | margin-top: 10px; 37 | } 38 | .shop-upper-intro .shop-notice .icon.data-v-160b8d32 { 39 | height: 40px; 40 | width: 36px; 41 | line-height: 36px; 42 | } 43 | .shop-content.data-v-160b8d32 { 44 | margin-top: 10px; 45 | } 46 | .shop-footer.data-v-160b8d32 { 47 | position: absolute; 48 | left: 0; 49 | right: 0; 50 | bottom: 0; 51 | z-index: 99; 52 | } 53 | 54 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # uniapp-order 2 | 外卖点餐系统-uniapp, 对应的后台管理系统: [vue-cms](https://github.com/yg10323/vue-cms) 和 后端接口: [koa-apis](https://github.com/yg10323/koa-apis) 3 | 4 | ## 安装依赖 5 | ``` 6 | npm i 7 | ``` 8 | ## 一些运行截图 9 | ![image](https://user-images.githubusercontent.com/48284901/155950450-5ea30a22-fb2f-4f15-9b95-cafe13e8c92b.png) 10 | ![image](https://user-images.githubusercontent.com/48284901/155950498-17b2a5ee-f1dd-4762-b399-cd2284ce7700.png) 11 | ![image](https://user-images.githubusercontent.com/48284901/155950531-d49a91ca-a6c7-4bf4-bef0-f6fdcdc44229.png) 12 | ![image](https://user-images.githubusercontent.com/48284901/155950541-dfdd49c9-0502-407a-a457-4e788bb0fbc1.png) 13 | ![image](https://user-images.githubusercontent.com/48284901/155950562-08dba1c0-dcf3-45f0-bf5c-9e3dfdb0649c.png) 14 | ![image](https://user-images.githubusercontent.com/48284901/155950594-1b5d49c0-2fa2-487c-bccd-336cec7a211e.png) 15 | ![image](https://user-images.githubusercontent.com/48284901/155950602-90fab08d-3603-445f-97b5-d9bb7db57769.png) 16 | ![image](https://user-images.githubusercontent.com/48284901/155950667-638fe598-7a43-414c-8d21-602792073f9a.png) 17 | ![image](https://user-images.githubusercontent.com/48284901/155950681-efdbecaa-bacc-4c76-a882-228025c3e1dc.png) 18 | ![image](https://user-images.githubusercontent.com/48284901/155950731-dc6d25c9-bdcf-44f2-bcc8-dc7b46d70f9c.png) 19 | -------------------------------------------------------------------------------- /uni_modules/uni-data-checkbox/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-data-checkbox](https://uniapp.dcloud.io/component/uniui/uni-data-checkbox) 4 | ## 0.2.5(2021-08-23) 5 | - 修复 在uni-forms中 modelValue 中不存在当前字段,当前字段必填写也不参与校验的问题 6 | ## 0.2.4(2021-08-17) 7 | - 修复 单选 list 模式下 ,icon 为 left 时,选中图标不显示的问题 8 | ## 0.2.3(2021-08-11) 9 | - 修复 在 uni-forms 中重置表单,错误信息无法清除的问题 10 | ## 0.2.2(2021-07-30) 11 | - 优化 在uni-forms组件,与label不对齐的问题 12 | ## 0.2.1(2021-07-27) 13 | - 修复 单选默认值为0不能选中的Bug 14 | ## 0.2.0(2021-07-13) 15 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834) 16 | ## 0.1.11(2021-07-06) 17 | - 优化 删除无用日志 18 | ## 0.1.10(2021-07-05) 19 | - 修复 由 0.1.9 引起的非 nvue 端图标不显示的问题 20 | ## 0.1.9(2021-07-05) 21 | - 修复 nvue 黑框样式问题 22 | ## 0.1.8(2021-06-28) 23 | - 修复 selectedTextColor 属性不生效的Bug 24 | ## 0.1.7(2021-06-02) 25 | - 新增 map 属性,可以方便映射text/value属性 26 | ## 0.1.6(2021-05-26) 27 | - 修复 不关联服务空间的情况下组件报错的Bug 28 | ## 0.1.5(2021-05-12) 29 | - 新增 组件示例地址 30 | ## 0.1.4(2021-04-09) 31 | - 修复 nvue 下无法选中的问题 32 | ## 0.1.3(2021-03-22) 33 | - 新增 disabled属性 34 | ## 0.1.2(2021-02-24) 35 | - 优化 默认颜色显示 36 | ## 0.1.1(2021-02-24) 37 | - 新增 支持nvue 38 | ## 0.1.0(2021-02-18) 39 | - “暂无数据”显示居中 40 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uni-swipe-action/components/uni-swipe-action-item/uni-swipe-action-item.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /* 水平间距 */ 3 | /* 水平间距 */ 4 | .uni-swipe { 5 | position: relative; 6 | overflow: hidden; 7 | } 8 | .uni-swipe_box { 9 | display: flex; 10 | flex-shrink: 0; 11 | position: relative; 12 | } 13 | .uni-swipe_text--center { 14 | width: 100%; 15 | cursor: grab; 16 | } 17 | .uni-swipe_button-group { 18 | box-sizing: border-box; 19 | display: flex; 20 | flex-direction: row; 21 | position: absolute; 22 | top: 0; 23 | bottom: 0; 24 | } 25 | .button-group--left { 26 | left: 0; 27 | -webkit-transform: translateX(-100%); 28 | transform: translateX(-100%); 29 | } 30 | .button-group--right { 31 | right: 0; 32 | -webkit-transform: translateX(100%); 33 | transform: translateX(100%); 34 | } 35 | .uni-swipe_button { 36 | display: flex; 37 | flex-direction: row; 38 | justify-content: center; 39 | align-items: center; 40 | padding: 0 20px; 41 | } 42 | .uni-swipe_button-text { 43 | flex-shrink: 0; 44 | font-size: 14px; 45 | } 46 | .ani { 47 | transition-property: -webkit-transform; 48 | transition-property: transform; 49 | transition-property: transform, -webkit-transform; 50 | transition-duration: 0.3s; 51 | transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1); 52 | } 53 | 54 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/index/web/shopList.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /* 水平间距 */ 3 | /* 水平间距 */ 4 | .shop-list-titile.data-v-0f5ba965 { 5 | font-size: 18px; 6 | font-weight: 700; 7 | margin: 0 0 15px 10px; 8 | } 9 | .shop-list-choice.data-v-0f5ba965 { 10 | text-align: center; 11 | margin-bottom: 10px; 12 | border-bottom: 1px solid #e7e6e6; 13 | padding: 0 10px; 14 | } 15 | .shop-list-choice .grid-content.data-v-0f5ba965 { 16 | height: 30px; 17 | width: 80px; 18 | line-height: 30px; 19 | font-size: 14px; 20 | } 21 | .shop-list-content .shop-item.data-v-0f5ba965 { 22 | display: flex; 23 | padding: 0 10px; 24 | height: 100px; 25 | margin-bottom: 20px; 26 | } 27 | .shop-list-content .shop-item-desc.data-v-0f5ba965 { 28 | width: 100%; 29 | margin: 10px; 30 | } 31 | .shop-list-content .shop-item-desc .title.data-v-0f5ba965, 32 | .shop-list-content .shop-item-desc .delivery.data-v-0f5ba965, 33 | .shop-list-content .shop-item-desc .service.data-v-0f5ba965 { 34 | margin-bottom: 10px; 35 | } 36 | .shop-list-content .shop-item-desc .title.data-v-0f5ba965 { 37 | font-size: 18px; 38 | } 39 | .shop-list-content .shop-item-desc .delivery.data-v-0f5ba965 { 40 | display: flex; 41 | justify-content: space-between; 42 | font-size: 12px; 43 | color: #37a2ee; 44 | } 45 | .shop-list-content .service .tag.data-v-0f5ba965 { 46 | margin-right: 3px; 47 | } 48 | 49 | -------------------------------------------------------------------------------- /plugins/axios/index.js: -------------------------------------------------------------------------------- 1 | import _axiosInstance from './axios'; 2 | 3 | // 遍历,生成请求函数 4 | const trans = (apiObj) => { 5 | const obj = apiObj; 6 | Object.keys(obj).forEach((apiKey) => { 7 | const data = { 8 | ...obj[apiKey] 9 | } 10 | obj[apiKey] = (payload) => _axiosInstance({ 11 | method: data.method, 12 | url: '/api' + data.url, 13 | ...payload 14 | }); 15 | }); 16 | 17 | return obj; 18 | }; 19 | 20 | // -转驼峰 21 | function toCamelCase(str) { 22 | const pattern = /-([a-z])/g; 23 | return str.replace(pattern, (all, letter) => { 24 | // console.log(all, letter); 25 | return letter.toUpperCase(); 26 | }); 27 | 28 | } 29 | 30 | // https://webpack.docschina.org/guides/dependency-management/#requirecontext 31 | const apiAll = require.context('apis/', true, /-apis\.js$/); 32 | // console.log(apiAll); 33 | // key: 处理后的文件名, value: 文件内容中网络请求的方法名 34 | const moduleApis = {}; 35 | // keys属性 {Function} -匹配成功模块的名字组成的数组 36 | apiAll.keys().map((key) => { 37 | // 先将-去掉,然后将小写a转换成大写A,最后取到 .的下标 38 | const suffixIndex = toCamelCase(key.match(/.*\/(.*\..*)/)[1]).indexOf('.'); 39 | // 截取文件名 40 | const name = toCamelCase(key.match(/.*\/(.*\..*)/)[1]).substring(0, suffixIndex); 41 | moduleApis[name] = apiAll(key).default; 42 | return trans(moduleApis[name]); 43 | }); 44 | 45 | export default moduleApis; 46 | 47 | -------------------------------------------------------------------------------- /uni_modules/uni-swipe-action/components/uni-swipe-action/uni-swipe-action.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /uni_modules/uni-easyinput/components/uni-easyinput/common.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @desc 函数防抖 3 | * @param func 目标函数 4 | * @param wait 延迟执行毫秒数 5 | * @param immediate true - 立即执行, false - 延迟执行 6 | */ 7 | export const debounce = function(func, wait = 1000, immediate = true) { 8 | let timer; 9 | console.log(1); 10 | return function() { 11 | console.log(123); 12 | let context = this, 13 | args = arguments; 14 | if (timer) clearTimeout(timer); 15 | if (immediate) { 16 | let callNow = !timer; 17 | timer = setTimeout(() => { 18 | timer = null; 19 | }, wait); 20 | if (callNow) func.apply(context, args); 21 | } else { 22 | timer = setTimeout(() => { 23 | func.apply(context, args); 24 | }, wait) 25 | } 26 | } 27 | } 28 | /** 29 | * @desc 函数节流 30 | * @param func 函数 31 | * @param wait 延迟执行毫秒数 32 | * @param type 1 使用表时间戳,在时间段开始的时候触发 2 使用表定时器,在时间段结束的时候触发 33 | */ 34 | export const throttle = (func, wait = 1000, type = 1) => { 35 | let previous = 0; 36 | let timeout; 37 | return function() { 38 | let context = this; 39 | let args = arguments; 40 | if (type === 1) { 41 | let now = Date.now(); 42 | 43 | if (now - previous > wait) { 44 | func.apply(context, args); 45 | previous = now; 46 | } 47 | } else if (type === 2) { 48 | if (!timeout) { 49 | timeout = setTimeout(() => { 50 | timeout = null; 51 | func.apply(context, args) 52 | }, wait) 53 | } 54 | } 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "pages": [ 3 | "pages/index/index", 4 | "pages/order/index", 5 | "pages/profile/index", 6 | "pages/profile/web/login", 7 | "pages/profile/web/address", 8 | "pages/profile/web/comment", 9 | "pages/profile/web/feedback", 10 | "pages/profile/web/help", 11 | "pages/profile/web/editAddress", 12 | "pages/index/web/opList", 13 | "pages/shop/index" 14 | ], 15 | "subPackages": [], 16 | "window": { 17 | "navigationBarTextStyle": "black", 18 | "navigationBarTitleText": "外卖猫", 19 | "navigationBarBackgroundColor": "#F8F8F8", 20 | "backgroundColor": "#F8F8F8" 21 | }, 22 | "tabBar": { 23 | "selectedColor": "#DD524D", 24 | "list": [ 25 | { 26 | "text": "首页", 27 | "pagePath": "pages/index/index", 28 | "iconPath": "static/img/tabbar/home.png", 29 | "selectedIconPath": "static/img/tabbar/home-active.png" 30 | }, 31 | { 32 | "text": "订单", 33 | "pagePath": "pages/order/index", 34 | "iconPath": "static/img/tabbar/cart.png", 35 | "selectedIconPath": "static/img/tabbar/cart-active.png" 36 | }, 37 | { 38 | "text": "我的", 39 | "pagePath": "pages/profile/index", 40 | "iconPath": "static/img/tabbar/member.png", 41 | "selectedIconPath": "static/img/tabbar/member-active.png" 42 | } 43 | ] 44 | }, 45 | "usingComponents": {} 46 | } -------------------------------------------------------------------------------- /uni_modules/uni-scss/styles/setting/_space.scss: -------------------------------------------------------------------------------- 1 | 2 | @mixin fn($space,$direction,$size,$n) { 3 | @if $n { 4 | #{$space}-#{$direction}: #{$size*$uni-space-root}px 5 | } @else { 6 | #{$space}-#{$direction}: #{-$size*$uni-space-root}px 7 | } 8 | } 9 | @mixin get-styles($direction,$i,$space,$n){ 10 | @if $direction == t { 11 | @include fn($space, top,$i,$n); 12 | } 13 | @if $direction == r { 14 | @include fn($space, right,$i,$n); 15 | } 16 | @if $direction == b { 17 | @include fn($space, bottom,$i,$n); 18 | } 19 | @if $direction == l { 20 | @include fn($space, left,$i,$n); 21 | } 22 | @if $direction == x { 23 | @include fn($space, left,$i,$n); 24 | @include fn($space, right,$i,$n); 25 | } 26 | @if $direction == y { 27 | @include fn($space, top,$i,$n); 28 | @include fn($space, bottom,$i,$n); 29 | } 30 | @if $direction == a { 31 | @if $n { 32 | #{$space}:#{$i*$uni-space-root}px; 33 | } @else { 34 | #{$space}:#{-$i*$uni-space-root}px; 35 | } 36 | } 37 | } 38 | 39 | @each $orientation in m,p { 40 | $space: margin; 41 | @if $orientation == m { 42 | $space: margin; 43 | } @else { 44 | $space: padding; 45 | } 46 | @for $i from 0 through 16 { 47 | @each $direction in t, r, b, l, x, y, a { 48 | .uni-#{$orientation}#{$direction}-#{$i} { 49 | @include get-styles($direction,$i,$space,true); 50 | } 51 | .uni-#{$orientation}#{$direction}-n#{$i} { 52 | @include get-styles($direction,$i,$space,false); 53 | } 54 | } 55 | } 56 | } -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/shop/web/foodList.wxml: -------------------------------------------------------------------------------- 1 | {{item}}{{parent.classify}}{{child.name}}{{"月售"+child.sold}}{{child.price}}+ -------------------------------------------------------------------------------- /uni_modules/uni-popup/changelog.md: -------------------------------------------------------------------------------- 1 | ## 1.7.3(2022-01-13) 2 | - 修复 设置 safeArea 属性不生效的bug 3 | ## 1.7.2(2021-11-26) 4 | - 优化 组件示例 5 | ## 1.7.1(2021-11-26) 6 | - 修复 vuedoc 文字错误 7 | ## 1.7.0(2021-11-19) 8 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource) 9 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-popup](https://uniapp.dcloud.io/component/uniui/uni-popup) 10 | ## 1.6.2(2021-08-24) 11 | - 新增 支持国际化 12 | ## 1.6.1(2021-07-30) 13 | - 优化 vue3下事件警告的问题 14 | ## 1.6.0(2021-07-13) 15 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834) 16 | ## 1.5.0(2021-06-23) 17 | - 新增 mask-click 遮罩层点击事件 18 | ## 1.4.5(2021-06-22) 19 | - 修复 nvue 平台中间弹出后,点击内容,再点击遮罩无法关闭的Bug 20 | ## 1.4.4(2021-06-18) 21 | - 修复 H5平台中间弹出后,点击内容,再点击遮罩无法关闭的Bug 22 | ## 1.4.3(2021-06-08) 23 | - 修复 错误的 watch 字段 24 | - 修复 safeArea 属性不生效的问题 25 | - 修复 点击内容,再点击遮罩无法关闭的Bug 26 | ## 1.4.2(2021-05-12) 27 | - 新增 组件示例地址 28 | ## 1.4.1(2021-04-29) 29 | - 修复 组件内放置 input 、textarea 组件,无法聚焦的问题 30 | ## 1.4.0 (2021-04-29) 31 | - 新增 type 属性的 left\right 值,支持左右弹出 32 | - 新增 open(String:type) 方法参数 ,可以省略 type 属性 ,直接传入类型打开指定弹窗 33 | - 新增 backgroundColor 属性,可定义主窗口背景色,默认不显示背景色 34 | - 新增 safeArea 属性,是否适配底部安全区 35 | - 修复 App\h5\微信小程序底部安全区占位不对的Bug 36 | - 修复 App 端弹出等待的Bug 37 | - 优化 提升低配设备性能,优化动画卡顿问题 38 | - 优化 更简单的组件自定义方式 39 | ## 1.2.9(2021-02-05) 40 | - 优化 组件引用关系,通过uni_modules引用组件 41 | ## 1.2.8(2021-02-05) 42 | - 调整为uni_modules目录规范 43 | ## 1.2.7(2021-02-05) 44 | - 调整为uni_modules目录规范 45 | - 新增 支持 PC 端 46 | - 新增 uni-popup-message 、uni-popup-dialog扩展组件支持 PC 端 47 | -------------------------------------------------------------------------------- /pages/index/web/shopClassify.vue: -------------------------------------------------------------------------------- 1 | 23 | 24 | 49 | 50 | -------------------------------------------------------------------------------- /components/popup/popup.vue: -------------------------------------------------------------------------------- 1 | 24 | 25 | 37 | 38 | 84 | -------------------------------------------------------------------------------- /uni_modules/uni-scss/styles/setting/_radius.scss: -------------------------------------------------------------------------------- 1 | @mixin radius($r,$d:null ,$important: false){ 2 | $radius-value:map-get($uni-radius, $r) if($important, !important, null); 3 | // Key exists within the $uni-radius variable 4 | @if (map-has-key($uni-radius, $r) and $d){ 5 | @if $d == t { 6 | border-top-left-radius:$radius-value; 7 | border-top-right-radius:$radius-value; 8 | }@else if $d == r { 9 | border-top-right-radius:$radius-value; 10 | border-bottom-right-radius:$radius-value; 11 | }@else if $d == b { 12 | border-bottom-left-radius:$radius-value; 13 | border-bottom-right-radius:$radius-value; 14 | }@else if $d == l { 15 | border-top-left-radius:$radius-value; 16 | border-bottom-left-radius:$radius-value; 17 | }@else if $d == tl { 18 | border-top-left-radius:$radius-value; 19 | }@else if $d == tr { 20 | border-top-right-radius:$radius-value; 21 | }@else if $d == br { 22 | border-bottom-right-radius:$radius-value; 23 | }@else if $d == bl { 24 | border-bottom-left-radius:$radius-value; 25 | } 26 | }@else{ 27 | border-radius:$radius-value; 28 | } 29 | } 30 | 31 | @each $key, $child in $uni-radius { 32 | @if($key){ 33 | .uni-radius-#{"" + $key} { 34 | @include radius($key) 35 | } 36 | }@else{ 37 | .uni-radius { 38 | @include radius($key) 39 | } 40 | } 41 | } 42 | 43 | @each $direction in t, r, b, l,tl, tr, br, bl { 44 | @each $key, $child in $uni-radius { 45 | @if($key){ 46 | .uni-radius-#{"" + $direction}-#{"" + $key} { 47 | @include radius($key,$direction,false) 48 | } 49 | }@else{ 50 | .uni-radius-#{$direction} { 51 | @include radius($key,$direction,false) 52 | } 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/profile/web/address.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /* 水平间距 */ 3 | /* 水平间距 */ 4 | .popup.data-v-304119c4 { 5 | background-color: #dbdbdb; 6 | position: fixed; 7 | width: 70%; 8 | padding: 10px; 9 | top: 50%; 10 | left: 50%; 11 | -webkit-transform: translate(-50%, -50%); 12 | transform: translate(-50%, -50%); 13 | text-align: center; 14 | border-radius: 10px; 15 | z-index: 99; 16 | } 17 | .popup-header.data-v-304119c4 { 18 | margin-bottom: 30px; 19 | } 20 | .popup-header text.data-v-304119c4 { 21 | font-size: 18px; 22 | font-weight: 700; 23 | } 24 | input.data-v-304119c4 { 25 | background-color: #FFFFFF; 26 | height: 40px; 27 | margin: 10px; 28 | border-radius: 10px; 29 | } 30 | .popup-footer.data-v-304119c4 { 31 | display: flex; 32 | } 33 | button.data-v-304119c4 { 34 | width: 40%; 35 | margin-top: 10px; 36 | margin-bottom: 10px; 37 | } 38 | 39 | @charset "UTF-8"; 40 | /* 水平间距 */ 41 | /* 水平间距 */ 42 | .address-item.data-v-fbcd9f2c { 43 | display: flex; 44 | justify-content: space-between; 45 | padding: 10px; 46 | border-bottom: 1rpx solid #979797; 47 | } 48 | .address-item-wrap-lower.data-v-fbcd9f2c { 49 | margin-top: 5px; 50 | font-size: 14px; 51 | } 52 | .address-item-wrap-lower .lower-item.data-v-fbcd9f2c { 53 | margin-right: 20px; 54 | color: #979797; 55 | } 56 | .address-item .edit.data-v-fbcd9f2c { 57 | display: flex; 58 | align-items: center; 59 | } 60 | .address-bottom.data-v-fbcd9f2c { 61 | position: absolute; 62 | bottom: 0; 63 | left: 0; 64 | right: 0; 65 | } 66 | input.data-v-fbcd9f2c { 67 | background-color: #fff; 68 | height: 40px; 69 | margin: 10px; 70 | border-radius: 10px; 71 | } 72 | 73 | -------------------------------------------------------------------------------- /uni_modules/uni-scss/styles/setting/_color.scss: -------------------------------------------------------------------------------- 1 | 2 | // TODO 暂时不需要 class ,需要用户使用变量实现 ,如果使用类名其实并不推荐 3 | // @mixin get-styles($k,$c) { 4 | // @if $k == size or $k == weight{ 5 | // font-#{$k}:#{$c} 6 | // }@else{ 7 | // #{$k}:#{$c} 8 | // } 9 | // } 10 | $uni-ui-color:( 11 | // 主色 12 | primary: $uni-primary, 13 | primary-disable: $uni-primary-disable, 14 | primary-light: $uni-primary-light, 15 | // 辅助色 16 | success: $uni-success, 17 | success-disable: $uni-success-disable, 18 | success-light: $uni-success-light, 19 | warning: $uni-warning, 20 | warning-disable: $uni-warning-disable, 21 | warning-light: $uni-warning-light, 22 | error: $uni-error, 23 | error-disable: $uni-error-disable, 24 | error-light: $uni-error-light, 25 | info: $uni-info, 26 | info-disable: $uni-info-disable, 27 | info-light: $uni-info-light, 28 | // 中性色 29 | main-color: $uni-main-color, 30 | base-color: $uni-base-color, 31 | secondary-color: $uni-secondary-color, 32 | extra-color: $uni-extra-color, 33 | // 背景色 34 | bg-color: $uni-bg-color, 35 | // 边框颜色 36 | border-1: $uni-border-1, 37 | border-2: $uni-border-2, 38 | border-3: $uni-border-3, 39 | border-4: $uni-border-4, 40 | // 黑色 41 | black:$uni-black, 42 | // 白色 43 | white:$uni-white, 44 | // 透明 45 | transparent:$uni-transparent 46 | ) !default; 47 | @each $key, $child in $uni-ui-color { 48 | .uni-#{"" + $key} { 49 | color: $child; 50 | } 51 | .uni-#{"" + $key}-bg { 52 | background-color: $child; 53 | } 54 | } 55 | .uni-shadow-sm { 56 | box-shadow: $uni-shadow-sm; 57 | } 58 | .uni-shadow-base { 59 | box-shadow: $uni-shadow-base; 60 | } 61 | .uni-shadow-lg { 62 | box-shadow: $uni-shadow-lg; 63 | } 64 | .uni-mask { 65 | background-color:$uni-mask; 66 | } 67 | -------------------------------------------------------------------------------- /uni_modules/uni-scss/variables.scss: -------------------------------------------------------------------------------- 1 | @import './styles/setting/_variables.scss'; 2 | // 间距基础倍数 3 | $uni-space-root: 2; 4 | // 边框半径默认值 5 | $uni-radius-root:5px; 6 | 7 | // 主色 8 | $uni-primary: #2979ff; 9 | $uni-primary-disable:mix(#fff,$uni-primary,50%); 10 | $uni-primary-light: mix(#fff,$uni-primary,80%); 11 | 12 | // 辅助色 13 | // 除了主色外的场景色,需要在不同的场景中使用(例如危险色表示危险的操作)。 14 | $uni-success: #18bc37; 15 | $uni-success-disable:mix(#fff,$uni-success,50%); 16 | $uni-success-light: mix(#fff,$uni-success,80%); 17 | 18 | $uni-warning: #f3a73f; 19 | $uni-warning-disable:mix(#fff,$uni-warning,50%); 20 | $uni-warning-light: mix(#fff,$uni-warning,80%); 21 | 22 | $uni-error: #e43d33; 23 | $uni-error-disable:mix(#fff,$uni-error,50%); 24 | $uni-error-light: mix(#fff,$uni-error,80%); 25 | 26 | $uni-info: #8f939c; 27 | $uni-info-disable:mix(#fff,$uni-info,50%); 28 | $uni-info-light: mix(#fff,$uni-info,80%); 29 | 30 | // 中性色 31 | // 中性色用于文本、背景和边框颜色。通过运用不同的中性色,来表现层次结构。 32 | $uni-main-color: #3a3a3a; // 主要文字 33 | $uni-base-color: #6a6a6a; // 常规文字 34 | $uni-secondary-color: #909399; // 次要文字 35 | $uni-extra-color: #c7c7c7; // 辅助说明 36 | 37 | // 边框颜色 38 | $uni-border-1: #F0F0F0; 39 | $uni-border-2: #EDEDED; 40 | $uni-border-3: #DCDCDC; 41 | $uni-border-4: #B9B9B9; 42 | 43 | // 常规色 44 | $uni-black: #000000; 45 | $uni-white: #ffffff; 46 | $uni-transparent: rgba($color: #000000, $alpha: 0); 47 | 48 | // 背景色 49 | $uni-bg-color: #f7f7f7; 50 | 51 | /* 水平间距 */ 52 | $uni-spacing-sm: 8px; 53 | $uni-spacing-base: 15px; 54 | $uni-spacing-lg: 30px; 55 | 56 | // 阴影 57 | $uni-shadow-sm:0 0 5px rgba($color: #d8d8d8, $alpha: 0.5); 58 | $uni-shadow-base:0 1px 8px 1px rgba($color: #a5a5a5, $alpha: 0.2); 59 | $uni-shadow-lg:0px 1px 10px 2px rgba($color: #a5a4a4, $alpha: 0.5); 60 | 61 | // 蒙版 62 | $uni-mask: rgba($color: #000000, $alpha: 0.4); 63 | -------------------------------------------------------------------------------- /apis/front-apis.js: -------------------------------------------------------------------------------- 1 | export default { 2 | sendDeviceId: { 3 | name: '扫码登陆时发送设备id', 4 | url: '/seller/send_deviceid', 5 | method: 'POST', 6 | }, 7 | scanLogin: { 8 | name: '扫码登陆', 9 | url: '/seller/scan_login', 10 | method: 'POST', 11 | }, 12 | getShopClassify: { 13 | name: '获取店铺分类', 14 | url: '/front/shop/classify', 15 | method: 'GET', 16 | }, 17 | getShopAll: { 18 | name: '获取全部店铺', 19 | url: '/front/shop/all', 20 | method: 'GET', 21 | }, 22 | getShopById: { 23 | name: '根据店铺id获取店铺信息', 24 | url: '/front/shop/by_id', 25 | method: 'POST', 26 | }, 27 | getShopFood: { 28 | name: '获取店铺食品', 29 | url: '/front/shop/food', 30 | method: 'POST' 31 | }, 32 | getShopByOpId: { 33 | name: '根据一级分类获取全部店铺', 34 | url: '/front/shop/all/op_id', 35 | method: 'POST' 36 | }, 37 | login: { 38 | name: '登录', 39 | url: '/buyer/login', 40 | method: 'POST' 41 | }, 42 | register: { 43 | name: '注册', 44 | url: '/buyer/register', 45 | method: 'POST' 46 | }, 47 | purchase: { 48 | name: '创建订单', 49 | url: '/buyer/purchase', 50 | method: 'POST' 51 | }, 52 | updateAddress: { 53 | name: '更新收货信息', 54 | url: '/buyer/update/address', 55 | method: 'POST' 56 | }, 57 | getOrder: { 58 | name: '获取个人订单信息', 59 | url: '/buyer/order', 60 | method: 'get' 61 | }, 62 | evaluate: { 63 | name: '评价订单', 64 | url: '/buyer/evaluate', 65 | method: 'POST' 66 | }, 67 | updateOrder: { 68 | name: '更新订单', 69 | url: '/buyer/update/order', 70 | method: 'POST' 71 | }, 72 | getEvaluates: { 73 | name: '获取个人评价', 74 | url: '/buyer/self/evaluate', 75 | method: 'get' 76 | }, 77 | deleteEvaluate: { 78 | name: '删除个人评价', 79 | url: '/buyer/delete/evaluate', 80 | method: 'post' 81 | }, 82 | getShopEvaluates: { 83 | name: '获取店铺评价', 84 | url: '/shop/evaluates', 85 | method: 'post' 86 | } 87 | } 88 | -------------------------------------------------------------------------------- /uni_modules/uni-data-picker/changelog.md: -------------------------------------------------------------------------------- 1 | ## 1.0.1(2021-11-23) 2 | - 修复 由上个版本引发的map、v-model等属性不生效的bug 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-data-picker](https://uniapp.dcloud.io/component/uniui/uni-data-picker) 6 | ## 0.4.9(2021-10-28) 7 | - 修复 VUE2 v-model 概率无效的 bug 8 | ## 0.4.8(2021-10-27) 9 | - 修复 v-model 概率无效的 bug 10 | ## 0.4.7(2021-10-25) 11 | - 新增 属性 spaceInfo 服务空间配置 HBuilderX 3.2.11+ 12 | - 修复 树型 uniCloud 数据类型为 int 时报错的 bug 13 | ## 0.4.6(2021-10-19) 14 | - 修复 非 VUE3 v-model 为 0 时无法选中的 bug 15 | ## 0.4.5(2021-09-26) 16 | - 新增 清除已选项的功能(通过 clearIcon 属性配置是否显示按钮),同时提供 clear 方法以供调用,二者等效 17 | - 修复 readonly 为 true 时报错的 bug 18 | ## 0.4.4(2021-09-26) 19 | - 修复 上一版本造成的 map 属性失效的 bug 20 | - 新增 ellipsis 属性,支持配置 tab 选项长度过长时是否自动省略 21 | ## 0.4.3(2021-09-24) 22 | - 修复 某些情况下级联未触发的 bug 23 | ## 0.4.2(2021-09-23) 24 | - 新增 提供 show 和 hide 方法,开发者可以通过 ref 调用 25 | - 新增 选项内容过长自动添加省略号 26 | ## 0.4.1(2021-09-15) 27 | - 新增 map 属性 字段映射,将 text/value 映射到数据中的其他字段 28 | ## 0.4.0(2021-07-13) 29 | - 组件兼容 vue3,如何创建 vue3 项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834) 30 | ## 0.3.5(2021-06-04) 31 | - 修复 无法加载云端数据的问题 32 | ## 0.3.4(2021-05-28) 33 | - 修复 v-model 无效问题 34 | - 修复 loaddata 为空数据组时加载时间过长问题 35 | - 修复 上个版本引出的本地数据无法选择带有 children 的 2 级节点 36 | ## 0.3.3(2021-05-12) 37 | - 新增 组件示例地址 38 | ## 0.3.2(2021-04-22) 39 | - 修复 非树形数据有 where 属性查询报错的问题 40 | ## 0.3.1(2021-04-15) 41 | - 修复 本地数据概率无法回显时问题 42 | ## 0.3.0(2021-04-07) 43 | - 新增 支持云端非树形表结构数据 44 | - 修复 根节点 parent_field 字段等于 null 时选择界面错乱问题 45 | ## 0.2.0(2021-03-15) 46 | - 修复 nodeclick、popupopened、popupclosed 事件无法触发的问题 47 | ## 0.1.9(2021-03-09) 48 | - 修复 微信小程序某些情况下无法选择的问题 49 | ## 0.1.8(2021-02-05) 50 | - 优化 部分样式在 nvue 上的兼容表现 51 | ## 0.1.7(2021-02-05) 52 | - 调整为 uni_modules 目录规范 53 | -------------------------------------------------------------------------------- /uni_modules/uni-list/components/uni-list/uni-refresh.vue: -------------------------------------------------------------------------------- 1 | 13 | 14 | 59 | 60 | 66 | -------------------------------------------------------------------------------- /uni_modules/uni-swipe-action/components/uni-swipe-action-item/mpwxs.js: -------------------------------------------------------------------------------- 1 | let mpMixins = {} 2 | // #ifdef APP-VUE|| MP-WEIXIN || H5 3 | import { 4 | isPC 5 | } from "./isPC" 6 | mpMixins = { 7 | data() { 8 | return { 9 | is_show: 'none' 10 | } 11 | }, 12 | watch: { 13 | show(newVal) { 14 | this.is_show = this.show 15 | } 16 | }, 17 | created() { 18 | this.swipeaction = this.getSwipeAction() 19 | if (this.swipeaction.children !== undefined) { 20 | this.swipeaction.children.push(this) 21 | } 22 | }, 23 | mounted() { 24 | this.is_show = this.show 25 | }, 26 | methods: { 27 | // wxs 中调用 28 | closeSwipe(e) { 29 | if (!this.autoClose) return 30 | this.swipeaction.closeOther(this) 31 | }, 32 | 33 | change(e) { 34 | this.$emit('change', e.open) 35 | if (this.is_show !== e.open) { 36 | this.is_show = e.open 37 | } 38 | }, 39 | 40 | appTouchStart(e) { 41 | // #ifdef H5 42 | if (isPC()) return 43 | // #endif 44 | const { 45 | clientX 46 | } = e.changedTouches[0] 47 | this.clientX = clientX 48 | this.timestamp = new Date().getTime() 49 | }, 50 | appTouchEnd(e, index, item, position) { 51 | // #ifdef H5 52 | if (isPC()) return 53 | // #endif 54 | const { 55 | clientX 56 | } = e.changedTouches[0] 57 | // fixed by xxxx 模拟点击事件,解决 ios 13 点击区域错位的问题 58 | let diff = Math.abs(this.clientX - clientX) 59 | let time = (new Date().getTime()) - this.timestamp 60 | if (diff < 40 && time < 300) { 61 | this.$emit('click', { 62 | content: item, 63 | index, 64 | position 65 | }) 66 | } 67 | }, 68 | onClickForPC(index, item, position) { 69 | // #ifdef H5 70 | if (!isPC()) return 71 | this.$emit('click', { 72 | content: item, 73 | index, 74 | position 75 | }) 76 | // #endif 77 | } 78 | } 79 | } 80 | 81 | // #endif 82 | export default mpMixins 83 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/pages/shop/index.wxml: -------------------------------------------------------------------------------- 1 | {{''+shopInfo.name+''}}{{item}}111111 -------------------------------------------------------------------------------- /uni_modules/uni-popup/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "uni-popup", 3 | "displayName": "uni-popup 弹出层", 4 | "version": "1.7.3", 5 | "description": " Popup 组件,提供常用的弹层", 6 | "keywords": [ 7 | "uni-ui", 8 | "弹出层", 9 | "弹窗", 10 | "popup", 11 | "弹框" 12 | ], 13 | "repository": "https://github.com/dcloudio/uni-ui", 14 | "engines": { 15 | "HBuilderX": "" 16 | }, 17 | "directories": { 18 | "example": "../../temps/example_temps" 19 | }, 20 | "dcloudext": { 21 | "category": [ 22 | "前端组件", 23 | "通用组件" 24 | ], 25 | "sale": { 26 | "regular": { 27 | "price": "0.00" 28 | }, 29 | "sourcecode": { 30 | "price": "0.00" 31 | } 32 | }, 33 | "contact": { 34 | "qq": "" 35 | }, 36 | "declaration": { 37 | "ads": "无", 38 | "data": "无", 39 | "permissions": "无" 40 | }, 41 | "npmurl": "https://www.npmjs.com/package/@dcloudio/uni-ui" 42 | }, 43 | "uni_modules": { 44 | "dependencies": [ 45 | "uni-scss", 46 | "uni-transition" 47 | ], 48 | "encrypt": [], 49 | "platforms": { 50 | "cloud": { 51 | "tcb": "y", 52 | "aliyun": "y" 53 | }, 54 | "client": { 55 | "App": { 56 | "app-vue": "y", 57 | "app-nvue": "y" 58 | }, 59 | "H5-mobile": { 60 | "Safari": "y", 61 | "Android Browser": "y", 62 | "微信浏览器(Android)": "y", 63 | "QQ浏览器(Android)": "y" 64 | }, 65 | "H5-pc": { 66 | "Chrome": "y", 67 | "IE": "y", 68 | "Edge": "y", 69 | "Firefox": "y", 70 | "Safari": "y" 71 | }, 72 | "小程序": { 73 | "微信": "y", 74 | "阿里": "y", 75 | "百度": "y", 76 | "字节跳动": "y", 77 | "QQ": "y" 78 | }, 79 | "快应用": { 80 | "华为": "u", 81 | "联盟": "u" 82 | }, 83 | "Vue": { 84 | "vue2": "y", 85 | "vue3": "y" 86 | } 87 | } 88 | } 89 | } 90 | } 91 | -------------------------------------------------------------------------------- /unpackage/dist/dev/mp-weixin/uni_modules/uni-forms/components/uni-forms-item/uni-forms-item.wxss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /* 水平间距 */ 3 | /* 水平间距 */ 4 | .uni-forms-item { 5 | position: relative; 6 | padding: 0px; 7 | text-align: left; 8 | color: #333; 9 | font-size: 14px; 10 | } 11 | .uni-forms-item__box { 12 | position: relative; 13 | } 14 | .uni-forms-item__inner { 15 | display: flex; 16 | padding-bottom: 22px; 17 | } 18 | .is-direction-left { 19 | flex-direction: row; 20 | } 21 | .is-direction-top { 22 | flex-direction: column; 23 | } 24 | .uni-forms-item__label { 25 | display: flex; 26 | flex-shrink: 0; 27 | box-sizing: border-box; 28 | flex-direction: row; 29 | align-items: center; 30 | width: 65px; 31 | padding: 5px 0; 32 | height: 36px; 33 | } 34 | .uni-forms-item__label .label-text { 35 | font-size: 13px; 36 | color: #666666; 37 | } 38 | .uni-forms-item__label .label-seat { 39 | margin-right: 5px; 40 | } 41 | .uni-forms-item__content { 42 | width: 100%; 43 | box-sizing: border-box; 44 | min-height: 36px; 45 | flex: 1; 46 | } 47 | .label-icon { 48 | margin-right: 5px; 49 | margin-top: -1px; 50 | } 51 | .is-required { 52 | color: #dd524d; 53 | font-weight: bold; 54 | } 55 | .uni-error-message { 56 | position: absolute; 57 | bottom: 0px; 58 | left: 0; 59 | text-align: left; 60 | } 61 | .uni-error-message-text { 62 | line-height: 22px; 63 | color: #dd524d; 64 | font-size: 12px; 65 | } 66 | .uni-error-msg--boeder { 67 | position: relative; 68 | bottom: 0; 69 | line-height: 22px; 70 | } 71 | .is-input-error-border { 72 | border-color: #dd524d; 73 | } 74 | .uni-forms-item--border { 75 | margin-bottom: 0; 76 | padding: 10px 0; 77 | border-top: 1px #eee solid; 78 | } 79 | .uni-forms-item--border .uni-forms-item__inner { 80 | padding: 0; 81 | } 82 | .is-first-border { 83 | border: none; 84 | } 85 | .uni-forms--no-padding { 86 | padding: 0; 87 | } 88 | 89 | -------------------------------------------------------------------------------- /uni_modules/uni-test/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "uni-test", 3 | "displayName": "Test 测试插件", 4 | "version": "2.0.13", 5 | "description": "测试插件 ", 6 | "keywords": [ 7 | "test" 8 | ], 9 | "repository": "https://github.com/dcloudio/uni-ui", 10 | "engines": { 11 | "HBuilderX": "^3.1.3" 12 | }, 13 | "directories": { 14 | "example": "../../temps/example_temps" 15 | }, 16 | "dcloudext": { 17 | "category": [ 18 | "前端组件", 19 | "通用组件" 20 | ], 21 | "sale": { 22 | "regular": { 23 | "price": "0.00" 24 | }, 25 | "sourcecode": { 26 | "price": "0.00" 27 | } 28 | }, 29 | "contact": { 30 | "qq": "" 31 | }, 32 | "declaration": { 33 | "ads": "无", 34 | "data": "无", 35 | "permissions": "无" 36 | }, 37 | "npmurl": "https://www.npmjs.com/package/@dcloudio/uni-ui" 38 | }, 39 | "uni_modules": { 40 | "dependencies": ["uni-scss"], 41 | "encrypt": [], 42 | "platforms": { 43 | "cloud": { 44 | "tcb": "y", 45 | "aliyun": "y" 46 | }, 47 | "client": { 48 | "App": { 49 | "app-vue": "y", 50 | "app-nvue": "y" 51 | }, 52 | "H5-mobile": { 53 | "Safari": "y", 54 | "Android Browser": "y", 55 | "微信浏览器(Android)": "y", 56 | "QQ浏览器(Android)": "y" 57 | }, 58 | "H5-pc": { 59 | "Chrome": "y", 60 | "IE": "y", 61 | "Edge": "y", 62 | "Firefox": "y", 63 | "Safari": "y" 64 | }, 65 | "小程序": { 66 | "微信": "y", 67 | "阿里": "y", 68 | "百度": "y", 69 | "字节跳动": "y", 70 | "QQ": "y" 71 | }, 72 | "快应用": { 73 | "华为": "y", 74 | "联盟": "y" 75 | }, 76 | "Vue": { 77 | "vue2": "y", 78 | "vue3": "y" 79 | } 80 | } 81 | } 82 | } 83 | } 84 | -------------------------------------------------------------------------------- /uni_modules/uni-scss/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "uni-scss", 3 | "displayName": "uni-scss 辅助样式", 4 | "version": "1.0.2", 5 | "description": "uni-sass是uni-ui提供的一套全局样式 ,通过一些简单的类名和sass变量,实现简单的页面布局操作,比如颜色、边距、圆角等。", 6 | "keywords": [ 7 | "uni-scss", 8 | "uni-ui", 9 | "辅助样式" 10 | ], 11 | "repository": "https://github.com/dcloudio/uni-ui", 12 | "engines": { 13 | "HBuilderX": "^3.1.0" 14 | }, 15 | "dcloudext": { 16 | "category": [ 17 | "uni-app前端模板", 18 | "前端页面模板" 19 | ], 20 | "sale": { 21 | "regular": { 22 | "price": "0.00" 23 | }, 24 | "sourcecode": { 25 | "price": "0.00" 26 | } 27 | }, 28 | "contact": { 29 | "qq": "" 30 | }, 31 | "declaration": { 32 | "ads": "无", 33 | "data": "无", 34 | "permissions": "无" 35 | }, 36 | "npmurl": "https://www.npmjs.com/package/@dcloudio/uni-ui" 37 | }, 38 | "uni_modules": { 39 | "dependencies": [], 40 | "encrypt": [], 41 | "platforms": { 42 | "cloud": { 43 | "tcb": "y", 44 | "aliyun": "y" 45 | }, 46 | "client": { 47 | "App": { 48 | "app-vue": "y", 49 | "app-nvue": "u" 50 | }, 51 | "H5-mobile": { 52 | "Safari": "y", 53 | "Android Browser": "y", 54 | "微信浏览器(Android)": "y", 55 | "QQ浏览器(Android)": "y" 56 | }, 57 | "H5-pc": { 58 | "Chrome": "y", 59 | "IE": "y", 60 | "Edge": "y", 61 | "Firefox": "y", 62 | "Safari": "y" 63 | }, 64 | "小程序": { 65 | "微信": "y", 66 | "阿里": "y", 67 | "百度": "y", 68 | "字节跳动": "y", 69 | "QQ": "y" 70 | }, 71 | "快应用": { 72 | "华为": "n", 73 | "联盟": "n" 74 | }, 75 | "Vue": { 76 | "vue2": "y", 77 | "vue3": "y" 78 | } 79 | } 80 | } 81 | } 82 | } 83 | -------------------------------------------------------------------------------- /uni_modules/uni-dateformat/components/uni-dateformat/uni-dateformat.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 85 | 86 | 89 | -------------------------------------------------------------------------------- /uni_modules/uni-countdown/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "uni-countdown", 3 | "displayName": "uni-countdown 倒计时", 4 | "version": "1.2.0", 5 | "description": "CountDown 倒计时组件", 6 | "keywords": [ 7 | "uni-ui", 8 | "uniui", 9 | "countdown", 10 | "倒计时" 11 | ], 12 | "repository": "https://github.com/dcloudio/uni-ui", 13 | "engines": { 14 | "HBuilderX": "" 15 | }, 16 | "directories": { 17 | "example": "../../temps/example_temps" 18 | }, 19 | "dcloudext": { 20 | "category": [ 21 | "前端组件", 22 | "通用组件" 23 | ], 24 | "sale": { 25 | "regular": { 26 | "price": "0.00" 27 | }, 28 | "sourcecode": { 29 | "price": "0.00" 30 | } 31 | }, 32 | "contact": { 33 | "qq": "" 34 | }, 35 | "declaration": { 36 | "ads": "无", 37 | "data": "无", 38 | "permissions": "无" 39 | }, 40 | "npmurl": "https://www.npmjs.com/package/@dcloudio/uni-ui" 41 | }, 42 | "uni_modules": { 43 | "dependencies": ["uni-scss"], 44 | "encrypt": [], 45 | "platforms": { 46 | "cloud": { 47 | "tcb": "y", 48 | "aliyun": "y" 49 | }, 50 | "client": { 51 | "App": { 52 | "app-vue": "y", 53 | "app-nvue": "y" 54 | }, 55 | "H5-mobile": { 56 | "Safari": "y", 57 | "Android Browser": "y", 58 | "微信浏览器(Android)": "y", 59 | "QQ浏览器(Android)": "y" 60 | }, 61 | "H5-pc": { 62 | "Chrome": "y", 63 | "IE": "y", 64 | "Edge": "y", 65 | "Firefox": "y", 66 | "Safari": "y" 67 | }, 68 | "小程序": { 69 | "微信": "y", 70 | "阿里": "y", 71 | "百度": "y", 72 | "字节跳动": "y", 73 | "QQ": "y" 74 | }, 75 | "快应用": { 76 | "华为": "u", 77 | "联盟": "u" 78 | }, 79 | "Vue": { 80 | "vue2": "y", 81 | "vue3": "y" 82 | } 83 | } 84 | } 85 | } 86 | } -------------------------------------------------------------------------------- /uni_modules/uni-icons/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "uni-icons", 3 | "displayName": "uni-icons 图标", 4 | "version": "1.3.3", 5 | "description": "图标组件,用于展示移动端常见的图标,可自定义颜色、大小。", 6 | "keywords": [ 7 | "uni-ui", 8 | "uniui", 9 | "icon", 10 | "图标" 11 | ], 12 | "repository": "https://github.com/dcloudio/uni-ui", 13 | "engines": { 14 | "HBuilderX": "^3.2.14" 15 | }, 16 | "directories": { 17 | "example": "../../temps/example_temps" 18 | }, 19 | "dcloudext": { 20 | "category": [ 21 | "前端组件", 22 | "通用组件" 23 | ], 24 | "sale": { 25 | "regular": { 26 | "price": "0.00" 27 | }, 28 | "sourcecode": { 29 | "price": "0.00" 30 | } 31 | }, 32 | "contact": { 33 | "qq": "" 34 | }, 35 | "declaration": { 36 | "ads": "无", 37 | "data": "无", 38 | "permissions": "无" 39 | }, 40 | "npmurl": "https://www.npmjs.com/package/@dcloudio/uni-ui" 41 | }, 42 | "uni_modules": { 43 | "dependencies": ["uni-scss"], 44 | "encrypt": [], 45 | "platforms": { 46 | "cloud": { 47 | "tcb": "y", 48 | "aliyun": "y" 49 | }, 50 | "client": { 51 | "App": { 52 | "app-vue": "y", 53 | "app-nvue": "y" 54 | }, 55 | "H5-mobile": { 56 | "Safari": "y", 57 | "Android Browser": "y", 58 | "微信浏览器(Android)": "y", 59 | "QQ浏览器(Android)": "y" 60 | }, 61 | "H5-pc": { 62 | "Chrome": "y", 63 | "IE": "y", 64 | "Edge": "y", 65 | "Firefox": "y", 66 | "Safari": "y" 67 | }, 68 | "小程序": { 69 | "微信": "y", 70 | "阿里": "y", 71 | "百度": "y", 72 | "字节跳动": "y", 73 | "QQ": "y" 74 | }, 75 | "快应用": { 76 | "华为": "u", 77 | "联盟": "u" 78 | }, 79 | "Vue": { 80 | "vue2": "y", 81 | "vue3": "y" 82 | } 83 | } 84 | } 85 | } 86 | } -------------------------------------------------------------------------------- /uni_modules/uni-calendar/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "uni-calendar", 3 | "displayName": "uni-calendar 日历", 4 | "version": "1.4.2", 5 | "description": "日历组件", 6 | "keywords": [ 7 | "uni-ui", 8 | "uniui", 9 | "日历", 10 | "", 11 | "打卡", 12 | "日历选择" 13 | ], 14 | "repository": "https://github.com/dcloudio/uni-ui", 15 | "engines": { 16 | "HBuilderX": "" 17 | }, 18 | "directories": { 19 | "example": "../../temps/example_temps" 20 | }, 21 | "dcloudext": { 22 | "category": [ 23 | "前端组件", 24 | "通用组件" 25 | ], 26 | "sale": { 27 | "regular": { 28 | "price": "0.00" 29 | }, 30 | "sourcecode": { 31 | "price": "0.00" 32 | } 33 | }, 34 | "contact": { 35 | "qq": "" 36 | }, 37 | "declaration": { 38 | "ads": "无", 39 | "data": "无", 40 | "permissions": "无" 41 | }, 42 | "npmurl": "https://www.npmjs.com/package/@dcloudio/uni-ui" 43 | }, 44 | "uni_modules": { 45 | "dependencies": ["uni-scss"], 46 | "encrypt": [], 47 | "platforms": { 48 | "cloud": { 49 | "tcb": "y", 50 | "aliyun": "y" 51 | }, 52 | "client": { 53 | "App": { 54 | "app-vue": "y", 55 | "app-nvue": "y" 56 | }, 57 | "H5-mobile": { 58 | "Safari": "y", 59 | "Android Browser": "y", 60 | "微信浏览器(Android)": "y", 61 | "QQ浏览器(Android)": "y" 62 | }, 63 | "H5-pc": { 64 | "Chrome": "y", 65 | "IE": "y", 66 | "Edge": "y", 67 | "Firefox": "y", 68 | "Safari": "y" 69 | }, 70 | "小程序": { 71 | "微信": "y", 72 | "阿里": "y", 73 | "百度": "y", 74 | "字节跳动": "y", 75 | "QQ": "y" 76 | }, 77 | "快应用": { 78 | "华为": "u", 79 | "联盟": "u" 80 | }, 81 | "Vue": { 82 | "vue2": "y", 83 | "vue3": "u" 84 | } 85 | } 86 | } 87 | } 88 | } -------------------------------------------------------------------------------- /uni_modules/uni-forms/changelog.md: -------------------------------------------------------------------------------- 1 | ## 1.3.2(2021-12-09) 2 | - 3 | ## 1.3.1(2021-11-19) 4 | - 修复 label 插槽不生效的bug 5 | ## 1.3.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-forms](https://uniapp.dcloud.io/component/uniui/uni-forms) 8 | ## 1.2.7(2021-08-13) 9 | - 修复 没有添加校验规则的字段依然报错的Bug 10 | ## 1.2.6(2021-08-11) 11 | - 修复 重置表单错误信息无法清除的问题 12 | ## 1.2.5(2021-08-11) 13 | - 优化 组件文档 14 | ## 1.2.4(2021-08-11) 15 | - 修复 表单验证只生效一次的问题 16 | ## 1.2.3(2021-07-30) 17 | - 优化 vue3下事件警告的问题 18 | ## 1.2.2(2021-07-26) 19 | - 修复 vue2 下条件编译导致destroyed生命周期失效的Bug 20 | - 修复 1.2.1 引起的示例在小程序平台报错的Bug 21 | ## 1.2.1(2021-07-22) 22 | - 修复 动态校验表单,默认值为空的情况下校验失效的Bug 23 | - 修复 不指定name属性时,运行报错的Bug 24 | - 优化 label默认宽度从65调整至70,使required为true且四字时不换行 25 | - 优化 组件示例,新增动态校验示例代码 26 | - 优化 组件文档,使用方式更清晰 27 | ## 1.2.0(2021-07-13) 28 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834) 29 | ## 1.1.2(2021-06-25) 30 | - 修复 pattern 属性在微信小程序平台无效的问题 31 | ## 1.1.1(2021-06-22) 32 | - 修复 validate-trigger属性为submit且err-show-type属性为toast时不能弹出的Bug 33 | ## 1.1.0(2021-06-22) 34 | - 修复 只写setRules方法而导致校验不生效的Bug 35 | - 修复 由上个办法引发的错误提示文字错位的Bug 36 | ## 1.0.48(2021-06-21) 37 | - 修复 不设置 label 属性 ,无法设置label插槽的问题 38 | ## 1.0.47(2021-06-21) 39 | - 修复 不设置label属性,label-width属性不生效的bug 40 | - 修复 setRules 方法与rules属性冲突的问题 41 | ## 1.0.46(2021-06-04) 42 | - 修复 动态删减数据导致报错的问题 43 | ## 1.0.45(2021-06-04) 44 | - 新增 modelValue 属性 ,value 即将废弃 45 | ## 1.0.44(2021-06-02) 46 | - 新增 uni-forms-item 可以设置单独的 rules 47 | - 新增 validate 事件增加 keepitem 参数,可以选择那些字段不过滤 48 | - 优化 submit 事件重命名为 validate 49 | ## 1.0.43(2021-05-12) 50 | - 新增 组件示例地址 51 | ## 1.0.42(2021-04-30) 52 | - 修复 自定义检验器失效的问题 53 | ## 1.0.41(2021-03-05) 54 | - 更新 校验器 55 | - 修复 表单规则设置类型为 number 的情况下,值为0校验失败的Bug 56 | ## 1.0.40(2021-03-04) 57 | - 修复 动态显示uni-forms-item的情况下,submit 方法获取值错误的Bug 58 | ## 1.0.39(2021-02-05) 59 | - 调整为uni_modules目录规范 60 | - 修复 校验器传入 int 等类型 ,返回String类型的Bug 61 | -------------------------------------------------------------------------------- /uni_modules/uni-transition/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "uni-transition", 3 | "displayName": "uni-transition 过渡动画", 4 | "version": "1.3.1", 5 | "description": "元素的简单过渡动画", 6 | "keywords": [ 7 | "uni-ui", 8 | "uniui", 9 | "动画", 10 | "过渡", 11 | "过渡动画" 12 | ], 13 | "repository": "https://github.com/dcloudio/uni-ui", 14 | "engines": { 15 | "HBuilderX": "" 16 | }, 17 | "directories": { 18 | "example": "../../temps/example_temps" 19 | }, 20 | "dcloudext": { 21 | "category": [ 22 | "前端组件", 23 | "通用组件" 24 | ], 25 | "sale": { 26 | "regular": { 27 | "price": "0.00" 28 | }, 29 | "sourcecode": { 30 | "price": "0.00" 31 | } 32 | }, 33 | "contact": { 34 | "qq": "" 35 | }, 36 | "declaration": { 37 | "ads": "无", 38 | "data": "无", 39 | "permissions": "无" 40 | }, 41 | "npmurl": "https://www.npmjs.com/package/@dcloudio/uni-ui" 42 | }, 43 | "uni_modules": { 44 | "dependencies": ["uni-scss"], 45 | "encrypt": [], 46 | "platforms": { 47 | "cloud": { 48 | "tcb": "y", 49 | "aliyun": "y" 50 | }, 51 | "client": { 52 | "App": { 53 | "app-vue": "y", 54 | "app-nvue": "y" 55 | }, 56 | "H5-mobile": { 57 | "Safari": "y", 58 | "Android Browser": "y", 59 | "微信浏览器(Android)": "y", 60 | "QQ浏览器(Android)": "y" 61 | }, 62 | "H5-pc": { 63 | "Chrome": "y", 64 | "IE": "y", 65 | "Edge": "y", 66 | "Firefox": "y", 67 | "Safari": "y" 68 | }, 69 | "小程序": { 70 | "微信": "y", 71 | "阿里": "y", 72 | "百度": "y", 73 | "字节跳动": "y", 74 | "QQ": "y" 75 | }, 76 | "快应用": { 77 | "华为": "u", 78 | "联盟": "u" 79 | }, 80 | "Vue": { 81 | "vue2": "y", 82 | "vue3": "y" 83 | } 84 | } 85 | } 86 | } 87 | } -------------------------------------------------------------------------------- /uni_modules/uni-drawer/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "uni-drawer", 3 | "displayName": "uni-drawer 抽屉", 4 | "version": "1.2.1", 5 | "description": "抽屉式导航,用于展示侧滑菜单,侧滑导航。", 6 | "keywords": [ 7 | "uni-ui", 8 | "uniui", 9 | "drawer", 10 | "抽屉", 11 | "侧滑导航" 12 | ], 13 | "repository": "https://github.com/dcloudio/uni-ui", 14 | "engines": { 15 | "HBuilderX": "" 16 | }, 17 | "directories": { 18 | "example": "../../temps/example_temps" 19 | }, 20 | "dcloudext": { 21 | "category": [ 22 | "前端组件", 23 | "通用组件" 24 | ], 25 | "sale": { 26 | "regular": { 27 | "price": "0.00" 28 | }, 29 | "sourcecode": { 30 | "price": "0.00" 31 | } 32 | }, 33 | "contact": { 34 | "qq": "" 35 | }, 36 | "declaration": { 37 | "ads": "无", 38 | "data": "无", 39 | "permissions": "无" 40 | }, 41 | "npmurl": "https://www.npmjs.com/package/@dcloudio/uni-ui" 42 | }, 43 | "uni_modules": { 44 | "dependencies": ["uni-scss"], 45 | "encrypt": [], 46 | "platforms": { 47 | "cloud": { 48 | "tcb": "y", 49 | "aliyun": "y" 50 | }, 51 | "client": { 52 | "App": { 53 | "app-vue": "y", 54 | "app-nvue": "y" 55 | }, 56 | "H5-mobile": { 57 | "Safari": "y", 58 | "Android Browser": "y", 59 | "微信浏览器(Android)": "y", 60 | "QQ浏览器(Android)": "y" 61 | }, 62 | "H5-pc": { 63 | "Chrome": "y", 64 | "IE": "y", 65 | "Edge": "y", 66 | "Firefox": "y", 67 | "Safari": "y" 68 | }, 69 | "小程序": { 70 | "微信": "y", 71 | "阿里": "y", 72 | "百度": "y", 73 | "字节跳动": "y", 74 | "QQ": "y" 75 | }, 76 | "快应用": { 77 | "华为": "u", 78 | "联盟": "u" 79 | }, 80 | "Vue": { 81 | "vue2": "y", 82 | "vue3": "y" 83 | } 84 | } 85 | } 86 | } 87 | } -------------------------------------------------------------------------------- /uni_modules/uni-grid/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "uni-grid", 3 | "displayName": "uni-grid 宫格", 4 | "version": "1.4.0", 5 | "description": "Grid 宫格组件,提供移动端常见的宫格布局,如九宫格。", 6 | "keywords": [ 7 | "uni-ui", 8 | "uniui", 9 | "九宫格", 10 | "表格" 11 | ], 12 | "repository": "https://github.com/dcloudio/uni-ui", 13 | "engines": { 14 | "HBuilderX": "" 15 | }, 16 | "directories": { 17 | "example": "../../temps/example_temps" 18 | }, 19 | "dcloudext": { 20 | "category": [ 21 | "前端组件", 22 | "通用组件" 23 | ], 24 | "sale": { 25 | "regular": { 26 | "price": "0.00" 27 | }, 28 | "sourcecode": { 29 | "price": "0.00" 30 | } 31 | }, 32 | "contact": { 33 | "qq": "" 34 | }, 35 | "declaration": { 36 | "ads": "无", 37 | "data": "无", 38 | "permissions": "无" 39 | }, 40 | "npmurl": "https://www.npmjs.com/package/@dcloudio/uni-ui" 41 | }, 42 | "uni_modules": { 43 | "dependencies": ["uni-scss","uni-icons"], 44 | "encrypt": [], 45 | "platforms": { 46 | "cloud": { 47 | "tcb": "y", 48 | "aliyun": "y" 49 | }, 50 | "client": { 51 | "App": { 52 | "app-vue": "y", 53 | "app-nvue": "y" 54 | }, 55 | "H5-mobile": { 56 | "Safari": "y", 57 | "Android Browser": "y", 58 | "微信浏览器(Android)": "y", 59 | "QQ浏览器(Android)": "y" 60 | }, 61 | "H5-pc": { 62 | "Chrome": "y", 63 | "IE": "y", 64 | "Edge": "y", 65 | "Firefox": "y", 66 | "Safari": "y" 67 | }, 68 | "小程序": { 69 | "微信": "y", 70 | "阿里": "y", 71 | "百度": "y", 72 | "字节跳动": "y", 73 | "QQ": "y" 74 | }, 75 | "快应用": { 76 | "华为": "u", 77 | "联盟": "u" 78 | }, 79 | "Vue": { 80 | "vue2": "y", 81 | "vue3": "y" 82 | } 83 | } 84 | } 85 | } 86 | } 87 | -------------------------------------------------------------------------------- /uni_modules/uni-group/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "uni-group", 3 | "displayName": "uni-group 分组", 4 | "version": "1.2.1", 5 | "description": "分组组件可用于将组件用于分组,添加间隔,以产生明显的区块", 6 | "keywords": [ 7 | "uni-ui", 8 | "uniui", 9 | "group", 10 | "分组", 11 | "" 12 | ], 13 | "repository": "https://github.com/dcloudio/uni-ui", 14 | "engines": { 15 | "HBuilderX": "" 16 | }, 17 | "directories": { 18 | "example": "../../temps/example_temps" 19 | }, 20 | "dcloudext": { 21 | "category": [ 22 | "前端组件", 23 | "通用组件" 24 | ], 25 | "sale": { 26 | "regular": { 27 | "price": "0.00" 28 | }, 29 | "sourcecode": { 30 | "price": "0.00" 31 | } 32 | }, 33 | "contact": { 34 | "qq": "" 35 | }, 36 | "declaration": { 37 | "ads": "无", 38 | "data": "无", 39 | "permissions": "无" 40 | }, 41 | "npmurl": "https://www.npmjs.com/package/@dcloudio/uni-ui" 42 | }, 43 | "uni_modules": { 44 | "dependencies": ["uni-scss"], 45 | "encrypt": [], 46 | "platforms": { 47 | "cloud": { 48 | "tcb": "y", 49 | "aliyun": "y" 50 | }, 51 | "client": { 52 | "App": { 53 | "app-vue": "y", 54 | "app-nvue": "y" 55 | }, 56 | "H5-mobile": { 57 | "Safari": "y", 58 | "Android Browser": "y", 59 | "微信浏览器(Android)": "y", 60 | "QQ浏览器(Android)": "y" 61 | }, 62 | "H5-pc": { 63 | "Chrome": "y", 64 | "IE": "y", 65 | "Edge": "y", 66 | "Firefox": "y", 67 | "Safari": "y" 68 | }, 69 | "小程序": { 70 | "微信": "y", 71 | "阿里": "y", 72 | "百度": "y", 73 | "字节跳动": "y", 74 | "QQ": "y" 75 | }, 76 | "快应用": { 77 | "华为": "u", 78 | "联盟": "u" 79 | }, 80 | "Vue": { 81 | "vue2": "y", 82 | "vue3": "y" 83 | } 84 | } 85 | } 86 | } 87 | } -------------------------------------------------------------------------------- /uni_modules/uni-table/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "uni-table", 3 | "displayName": "uni-table 表格", 4 | "version": "1.2.0", 5 | "description": "表格组件,多用于展示多条结构类似的数据,如", 6 | "keywords": [ 7 | "uni-ui", 8 | "uniui", 9 | "table", 10 | "表格" 11 | ], 12 | "repository": "https://github.com/dcloudio/uni-ui", 13 | "engines": { 14 | "HBuilderX": "" 15 | }, 16 | "directories": { 17 | "example": "../../temps/example_temps" 18 | }, 19 | "dcloudext": { 20 | "category": [ 21 | "前端组件", 22 | "通用组件" 23 | ], 24 | "sale": { 25 | "regular": { 26 | "price": "0.00" 27 | }, 28 | "sourcecode": { 29 | "price": "0.00" 30 | } 31 | }, 32 | "contact": { 33 | "qq": "" 34 | }, 35 | "declaration": { 36 | "ads": "无", 37 | "data": "无", 38 | "permissions": "无" 39 | }, 40 | "npmurl": "https://www.npmjs.com/package/@dcloudio/uni-ui" 41 | }, 42 | "uni_modules": { 43 | "dependencies": ["uni-scss","uni-datetime-picker"], 44 | "encrypt": [], 45 | "platforms": { 46 | "cloud": { 47 | "tcb": "y", 48 | "aliyun": "y" 49 | }, 50 | "client": { 51 | "App": { 52 | "app-vue": "y", 53 | "app-nvue": "n" 54 | }, 55 | "H5-mobile": { 56 | "Safari": "y", 57 | "Android Browser": "y", 58 | "微信浏览器(Android)": "y", 59 | "QQ浏览器(Android)": "y" 60 | }, 61 | "H5-pc": { 62 | "Chrome": "y", 63 | "IE": "y", 64 | "Edge": "y", 65 | "Firefox": "y", 66 | "Safari": "y" 67 | }, 68 | "小程序": { 69 | "微信": "y", 70 | "阿里": "y", 71 | "百度": "y", 72 | "字节跳动": "n", 73 | "QQ": "y" 74 | }, 75 | "快应用": { 76 | "华为": "n", 77 | "联盟": "n" 78 | }, 79 | "Vue": { 80 | "vue2": "y", 81 | "vue3": "y" 82 | } 83 | } 84 | } 85 | } 86 | } -------------------------------------------------------------------------------- /uni_modules/uni-tag/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "uni-tag", 3 | "displayName": "uni-tag 标签", 4 | "version": "2.1.0", 5 | "description": "Tag 组件,用于展示1个或多个文字标签,可点击切换选中、不选中的状态。", 6 | "keywords": [ 7 | "uni-ui", 8 | "uniui", 9 | "", 10 | "tag", 11 | "标签" 12 | ], 13 | "repository": "https://github.com/dcloudio/uni-ui", 14 | "engines": { 15 | "HBuilderX": "" 16 | }, 17 | "directories": { 18 | "example": "../../temps/example_temps" 19 | }, 20 | "dcloudext": { 21 | "category": [ 22 | "前端组件", 23 | "通用组件" 24 | ], 25 | "sale": { 26 | "regular": { 27 | "price": "0.00" 28 | }, 29 | "sourcecode": { 30 | "price": "0.00" 31 | } 32 | }, 33 | "contact": { 34 | "qq": "" 35 | }, 36 | "declaration": { 37 | "ads": "无", 38 | "data": "无", 39 | "permissions": "无" 40 | }, 41 | "npmurl": "https://www.npmjs.com/package/@dcloudio/uni-ui" 42 | }, 43 | "uni_modules": { 44 | "dependencies": ["uni-scss"], 45 | "encrypt": [], 46 | "platforms": { 47 | "cloud": { 48 | "tcb": "y", 49 | "aliyun": "y" 50 | }, 51 | "client": { 52 | "App": { 53 | "app-vue": "y", 54 | "app-nvue": "y" 55 | }, 56 | "H5-mobile": { 57 | "Safari": "y", 58 | "Android Browser": "y", 59 | "微信浏览器(Android)": "y", 60 | "QQ浏览器(Android)": "y" 61 | }, 62 | "H5-pc": { 63 | "Chrome": "y", 64 | "IE": "y", 65 | "Edge": "y", 66 | "Firefox": "y", 67 | "Safari": "y" 68 | }, 69 | "小程序": { 70 | "微信": "y", 71 | "阿里": "y", 72 | "百度": "y", 73 | "字节跳动": "y", 74 | "QQ": "y" 75 | }, 76 | "快应用": { 77 | "华为": "u", 78 | "联盟": "u" 79 | }, 80 | "Vue": { 81 | "vue2": "y", 82 | "vue3": "y" 83 | } 84 | } 85 | } 86 | } 87 | } -------------------------------------------------------------------------------- /uni_modules/uni-load-more/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "uni-load-more", 3 | "displayName": "uni-load-more 加载更多", 4 | "version": "1.3.0", 5 | "description": "LoadMore 组件,常用在列表里面,做滚动加载使用。", 6 | "keywords": [ 7 | "uni-ui", 8 | "uniui", 9 | "加载更多", 10 | "load-more" 11 | ], 12 | "repository": "https://github.com/dcloudio/uni-ui", 13 | "engines": { 14 | "HBuilderX": "" 15 | }, 16 | "directories": { 17 | "example": "../../temps/example_temps" 18 | }, 19 | "dcloudext": { 20 | "category": [ 21 | "前端组件", 22 | "通用组件" 23 | ], 24 | "sale": { 25 | "regular": { 26 | "price": "0.00" 27 | }, 28 | "sourcecode": { 29 | "price": "0.00" 30 | } 31 | }, 32 | "contact": { 33 | "qq": "" 34 | }, 35 | "declaration": { 36 | "ads": "无", 37 | "data": "无", 38 | "permissions": "无" 39 | }, 40 | "npmurl": "https://www.npmjs.com/package/@dcloudio/uni-ui" 41 | }, 42 | "uni_modules": { 43 | "dependencies": ["uni-scss"], 44 | "encrypt": [], 45 | "platforms": { 46 | "cloud": { 47 | "tcb": "y", 48 | "aliyun": "y" 49 | }, 50 | "client": { 51 | "App": { 52 | "app-vue": "y", 53 | "app-nvue": "y" 54 | }, 55 | "H5-mobile": { 56 | "Safari": "y", 57 | "Android Browser": "y", 58 | "微信浏览器(Android)": "y", 59 | "QQ浏览器(Android)": "y" 60 | }, 61 | "H5-pc": { 62 | "Chrome": "y", 63 | "IE": "y", 64 | "Edge": "y", 65 | "Firefox": "y", 66 | "Safari": "y" 67 | }, 68 | "小程序": { 69 | "微信": "y", 70 | "阿里": "y", 71 | "百度": "y", 72 | "字节跳动": "y", 73 | "QQ": "y" 74 | }, 75 | "快应用": { 76 | "华为": "u", 77 | "联盟": "u" 78 | }, 79 | "Vue": { 80 | "vue2": "y", 81 | "vue3": "y" 82 | } 83 | } 84 | } 85 | } 86 | } -------------------------------------------------------------------------------- /uni_modules/uni-number-box/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "uni-number-box", 3 | "displayName": "uni-number-box 数字输入框", 4 | "version": "1.2.1", 5 | "description": "NumberBox 带加减按钮的数字输入框组件,用户可以控制每次点击增加的数值,支持小数。", 6 | "keywords": [ 7 | "uni-ui", 8 | "uniui", 9 | "数字输入框" 10 | ], 11 | "repository": "https://github.com/dcloudio/uni-ui", 12 | "engines": { 13 | "HBuilderX": "" 14 | }, 15 | "directories": { 16 | "example": "../../temps/example_temps" 17 | }, 18 | "dcloudext": { 19 | "category": [ 20 | "前端组件", 21 | "通用组件" 22 | ], 23 | "sale": { 24 | "regular": { 25 | "price": "0.00" 26 | }, 27 | "sourcecode": { 28 | "price": "0.00" 29 | } 30 | }, 31 | "contact": { 32 | "qq": "" 33 | }, 34 | "declaration": { 35 | "ads": "无", 36 | "data": "无", 37 | "permissions": "无" 38 | }, 39 | "npmurl": "https://www.npmjs.com/package/@dcloudio/uni-ui" 40 | }, 41 | "uni_modules": { 42 | "dependencies": ["uni-scss"], 43 | "encrypt": [], 44 | "platforms": { 45 | "cloud": { 46 | "tcb": "y", 47 | "aliyun": "y" 48 | }, 49 | "client": { 50 | "App": { 51 | "app-vue": "y", 52 | "app-nvue": "y" 53 | }, 54 | "H5-mobile": { 55 | "Safari": "y", 56 | "Android Browser": "y", 57 | "微信浏览器(Android)": "y", 58 | "QQ浏览器(Android)": "y" 59 | }, 60 | "H5-pc": { 61 | "Chrome": "y", 62 | "IE": "y", 63 | "Edge": "y", 64 | "Firefox": "y", 65 | "Safari": "y" 66 | }, 67 | "小程序": { 68 | "微信": "y", 69 | "阿里": "y", 70 | "百度": "y", 71 | "字节跳动": "y", 72 | "QQ": "y" 73 | }, 74 | "快应用": { 75 | "华为": "u", 76 | "联盟": "u" 77 | }, 78 | "Vue": { 79 | "vue2": "y", 80 | "vue3": "y" 81 | } 82 | } 83 | } 84 | } 85 | } -------------------------------------------------------------------------------- /uni_modules/uni-row/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "uni-row", 3 | "displayName": "uni-row 布局-行", 4 | "version": "1.0.0", 5 | "description": "流式栅格系统,随着屏幕或视口分为 24 份,可以迅速简便地创建布局。", 6 | "keywords": [ 7 | "uni-ui", 8 | "uniui", 9 | "栅格", 10 | "布局", 11 | "layout" 12 | ], 13 | "repository": "https://github.com/dcloudio/uni-ui", 14 | "engines": { 15 | "HBuilderX": "" 16 | }, 17 | "directories": { 18 | "example": "../../temps/example_temps" 19 | }, 20 | "dcloudext": { 21 | "category": [ 22 | "前端组件", 23 | "通用组件" 24 | ], 25 | "sale": { 26 | "regular": { 27 | "price": "0.00" 28 | }, 29 | "sourcecode": { 30 | "price": "0.00" 31 | } 32 | }, 33 | "contact": { 34 | "qq": "" 35 | }, 36 | "declaration": { 37 | "ads": "无", 38 | "data": "无", 39 | "permissions": "无" 40 | }, 41 | "npmurl": "https://www.npmjs.com/package/@dcloudio/uni-ui" 42 | }, 43 | "uni_modules": { 44 | "dependencies": ["uni-scss"], 45 | "encrypt": [], 46 | "platforms": { 47 | "cloud": { 48 | "tcb": "y", 49 | "aliyun": "y" 50 | }, 51 | "client": { 52 | "App": { 53 | "app-vue": "y", 54 | "app-nvue": "y" 55 | }, 56 | "H5-mobile": { 57 | "Safari": "y", 58 | "Android Browser": "y", 59 | "微信浏览器(Android)": "y", 60 | "QQ浏览器(Android)": "y" 61 | }, 62 | "H5-pc": { 63 | "Chrome": "y", 64 | "IE": "y", 65 | "Edge": "y", 66 | "Firefox": "y", 67 | "Safari": "y" 68 | }, 69 | "小程序": { 70 | "微信": "y", 71 | "阿里": "y", 72 | "百度": "y", 73 | "字节跳动": "y", 74 | "QQ": "y" 75 | }, 76 | "快应用": { 77 | "华为": "u", 78 | "联盟": "u" 79 | }, 80 | "Vue": { 81 | "vue2": "y", 82 | "vue3": "u" 83 | } 84 | } 85 | } 86 | } 87 | } -------------------------------------------------------------------------------- /uni_modules/uni-rate/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "uni-rate", 3 | "displayName": "uni-rate 评分", 4 | "version": "1.3.0", 5 | "description": "Rate 评分组件,可自定义评分星星图标的大小、间隔、评分数。", 6 | "keywords": [ 7 | "uni-ui", 8 | "uniui", 9 | "评分" 10 | ], 11 | "repository": "https://github.com/dcloudio/uni-ui", 12 | "engines": { 13 | "HBuilderX": "" 14 | }, 15 | "directories": { 16 | "example": "../../temps/example_temps" 17 | }, 18 | "dcloudext": { 19 | "category": [ 20 | "前端组件", 21 | "通用组件" 22 | ], 23 | "sale": { 24 | "regular": { 25 | "price": "0.00" 26 | }, 27 | "sourcecode": { 28 | "price": "0.00" 29 | } 30 | }, 31 | "contact": { 32 | "qq": "" 33 | }, 34 | "declaration": { 35 | "ads": "无", 36 | "data": "无", 37 | "permissions": "无" 38 | }, 39 | "npmurl": "https://www.npmjs.com/package/@dcloudio/uni-ui" 40 | }, 41 | "uni_modules": { 42 | "dependencies": [ 43 | "uni-scss", 44 | "uni-icons" 45 | ], 46 | "encrypt": [], 47 | "platforms": { 48 | "cloud": { 49 | "tcb": "y", 50 | "aliyun": "y" 51 | }, 52 | "client": { 53 | "App": { 54 | "app-vue": "y", 55 | "app-nvue": "y" 56 | }, 57 | "H5-mobile": { 58 | "Safari": "y", 59 | "Android Browser": "y", 60 | "微信浏览器(Android)": "y", 61 | "QQ浏览器(Android)": "y" 62 | }, 63 | "H5-pc": { 64 | "Chrome": "y", 65 | "IE": "y", 66 | "Edge": "y", 67 | "Firefox": "y", 68 | "Safari": "y" 69 | }, 70 | "小程序": { 71 | "微信": "y", 72 | "阿里": "y", 73 | "百度": "y", 74 | "字节跳动": "y", 75 | "QQ": "y" 76 | }, 77 | "快应用": { 78 | "华为": "u", 79 | "联盟": "u" 80 | }, 81 | "Vue": { 82 | "vue2": "y", 83 | "vue3": "y" 84 | } 85 | } 86 | } 87 | } 88 | } 89 | -------------------------------------------------------------------------------- /uni_modules/uni-swiper-dot/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "uni-swiper-dot", 3 | "displayName": "uni-swiper-dot 轮播图指示点", 4 | "version": "1.2.0", 5 | "description": "自定义轮播图指示点组件", 6 | "keywords": [ 7 | "uni-ui", 8 | "uniui", 9 | "轮播图指示点", 10 | "dot", 11 | "swiper" 12 | ], 13 | "repository": "https://github.com/dcloudio/uni-ui", 14 | "engines": { 15 | "HBuilderX": "" 16 | }, 17 | "directories": { 18 | "example": "../../temps/example_temps" 19 | }, 20 | "dcloudext": { 21 | "category": [ 22 | "前端组件", 23 | "通用组件" 24 | ], 25 | "sale": { 26 | "regular": { 27 | "price": "0.00" 28 | }, 29 | "sourcecode": { 30 | "price": "0.00" 31 | } 32 | }, 33 | "contact": { 34 | "qq": "" 35 | }, 36 | "declaration": { 37 | "ads": "无", 38 | "data": "无", 39 | "permissions": "无" 40 | }, 41 | "npmurl": "https://www.npmjs.com/package/@dcloudio/uni-ui" 42 | }, 43 | "uni_modules": { 44 | "dependencies": ["uni-scss"], 45 | "encrypt": [], 46 | "platforms": { 47 | "cloud": { 48 | "tcb": "y", 49 | "aliyun": "y" 50 | }, 51 | "client": { 52 | "App": { 53 | "app-vue": "y", 54 | "app-nvue": "y" 55 | }, 56 | "H5-mobile": { 57 | "Safari": "y", 58 | "Android Browser": "y", 59 | "微信浏览器(Android)": "y", 60 | "QQ浏览器(Android)": "y" 61 | }, 62 | "H5-pc": { 63 | "Chrome": "y", 64 | "IE": "y", 65 | "Edge": "y", 66 | "Firefox": "y", 67 | "Safari": "y" 68 | }, 69 | "小程序": { 70 | "微信": "y", 71 | "阿里": "y", 72 | "百度": "y", 73 | "字节跳动": "y", 74 | "QQ": "y" 75 | }, 76 | "快应用": { 77 | "华为": "u", 78 | "联盟": "u" 79 | }, 80 | "Vue": { 81 | "vue2": "y", 82 | "vue3": "y" 83 | } 84 | } 85 | } 86 | } 87 | } -------------------------------------------------------------------------------- /uni_modules/uni-fab/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "uni-fab", 3 | "displayName": "uni-fab 悬浮按钮", 4 | "version": "1.2.2", 5 | "description": "悬浮按钮 fab button ,点击可展开一个图标按钮菜单。", 6 | "keywords": [ 7 | "uni-ui", 8 | "uniui", 9 | "按钮", 10 | "悬浮按钮", 11 | "fab" 12 | ], 13 | "repository": "https://github.com/dcloudio/uni-ui", 14 | "engines": { 15 | "HBuilderX": "" 16 | }, 17 | "directories": { 18 | "example": "../../temps/example_temps" 19 | }, 20 | "dcloudext": { 21 | "category": [ 22 | "前端组件", 23 | "通用组件" 24 | ], 25 | "sale": { 26 | "regular": { 27 | "price": "0.00" 28 | }, 29 | "sourcecode": { 30 | "price": "0.00" 31 | } 32 | }, 33 | "contact": { 34 | "qq": "" 35 | }, 36 | "declaration": { 37 | "ads": "无", 38 | "data": "无", 39 | "permissions": "无" 40 | }, 41 | "npmurl": "https://www.npmjs.com/package/@dcloudio/uni-ui" 42 | }, 43 | "uni_modules": { 44 | "dependencies": ["uni-scss","uni-icons"], 45 | "encrypt": [], 46 | "platforms": { 47 | "cloud": { 48 | "tcb": "y", 49 | "aliyun": "y" 50 | }, 51 | "client": { 52 | "App": { 53 | "app-vue": "y", 54 | "app-nvue": "y" 55 | }, 56 | "H5-mobile": { 57 | "Safari": "y", 58 | "Android Browser": "y", 59 | "微信浏览器(Android)": "y", 60 | "QQ浏览器(Android)": "y" 61 | }, 62 | "H5-pc": { 63 | "Chrome": "y", 64 | "IE": "y", 65 | "Edge": "y", 66 | "Firefox": "y", 67 | "Safari": "y" 68 | }, 69 | "小程序": { 70 | "微信": "y", 71 | "阿里": "y", 72 | "百度": "y", 73 | "字节跳动": "y", 74 | "QQ": "y" 75 | }, 76 | "快应用": { 77 | "华为": "u", 78 | "联盟": "u" 79 | }, 80 | "Vue": { 81 | "vue2": "y", 82 | "vue3": "y" 83 | } 84 | } 85 | } 86 | } 87 | } 88 | -------------------------------------------------------------------------------- /uni_modules/uni-fav/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "uni-fav", 3 | "displayName": "uni-fav 收藏按钮", 4 | "version": "1.2.0", 5 | "description": " Fav 收藏组件,可自定义颜色、大小。", 6 | "keywords": [ 7 | "fav", 8 | "uni-ui", 9 | "uniui", 10 | "收藏" 11 | ], 12 | "repository": "https://github.com/dcloudio/uni-ui", 13 | "engines": { 14 | "HBuilderX": "" 15 | }, 16 | "directories": { 17 | "example": "../../temps/example_temps" 18 | }, 19 | "dcloudext": { 20 | "category": [ 21 | "前端组件", 22 | "通用组件" 23 | ], 24 | "sale": { 25 | "regular": { 26 | "price": "0.00" 27 | }, 28 | "sourcecode": { 29 | "price": "0.00" 30 | } 31 | }, 32 | "contact": { 33 | "qq": "" 34 | }, 35 | "declaration": { 36 | "ads": "无", 37 | "data": "无", 38 | "permissions": "无" 39 | }, 40 | "npmurl": "https://www.npmjs.com/package/@dcloudio/uni-ui" 41 | }, 42 | "uni_modules": { 43 | "dependencies": [ 44 | "uni-scss", 45 | "uni-icons" 46 | ], 47 | "encrypt": [], 48 | "platforms": { 49 | "cloud": { 50 | "tcb": "y", 51 | "aliyun": "y" 52 | }, 53 | "client": { 54 | "App": { 55 | "app-vue": "y", 56 | "app-nvue": "y" 57 | }, 58 | "H5-mobile": { 59 | "Safari": "y", 60 | "Android Browser": "y", 61 | "微信浏览器(Android)": "y", 62 | "QQ浏览器(Android)": "y" 63 | }, 64 | "H5-pc": { 65 | "Chrome": "y", 66 | "IE": "y", 67 | "Edge": "y", 68 | "Firefox": "y", 69 | "Safari": "y" 70 | }, 71 | "小程序": { 72 | "微信": "y", 73 | "阿里": "y", 74 | "百度": "y", 75 | "字节跳动": "y", 76 | "QQ": "y" 77 | }, 78 | "快应用": { 79 | "华为": "u", 80 | "联盟": "u" 81 | }, 82 | "Vue": { 83 | "vue2": "y", 84 | "vue3": "y" 85 | } 86 | } 87 | } 88 | } 89 | } 90 | --------------------------------------------------------------------------------