├── README.md
├── unpackage
└── dist
│ └── dev
│ ├── .automator
│ └── mp-weixin
│ │ └── .automator.json
│ ├── mp-weixin
│ ├── pages
│ │ ├── 404
│ │ │ ├── 404.wxml
│ │ │ └── 404.json
│ │ ├── details
│ │ │ ├── details.wxml
│ │ │ └── details.json
│ │ ├── chooseAddress
│ │ │ ├── chooseAddress.wxml
│ │ │ └── chooseAddress.json
│ │ ├── search
│ │ │ ├── search.wxml
│ │ │ └── search.json
│ │ ├── publish
│ │ │ ├── index.json
│ │ │ ├── index.wxss
│ │ │ └── index.wxml
│ │ ├── service
│ │ │ ├── index.json
│ │ │ └── index.wxml
│ │ ├── work
│ │ │ ├── index.json
│ │ │ └── index.wxml
│ │ └── mine
│ │ │ ├── index.json
│ │ │ └── index.wxml
│ ├── components
│ │ ├── comItem.json
│ │ ├── noData
│ │ │ ├── noData.json
│ │ │ ├── noData.wxss
│ │ │ └── noData.wxml
│ │ ├── comItem.wxml
│ │ └── comItem.wxss
│ ├── app.js
│ ├── static
│ │ ├── .DS_Store
│ │ ├── image
│ │ │ ├── logo.jpg
│ │ │ ├── .DS_Store
│ │ │ ├── no-data.png
│ │ │ ├── tab
│ │ │ │ ├── icon_me.png
│ │ │ │ ├── icon_me_ac.png
│ │ │ │ ├── icon_work.png
│ │ │ │ ├── icon_publish.png
│ │ │ │ ├── icon_service.png
│ │ │ │ ├── icon_work_ac.png
│ │ │ │ ├── icon_publish_ac.png
│ │ │ │ └── icon_service_ac.png
│ │ │ └── icon
│ │ │ │ └── ico_qzyx.png
│ │ └── css
│ │ │ └── common.css
│ ├── uni_modules
│ │ └── uni-icons
│ │ │ └── components
│ │ │ └── uni-icons
│ │ │ ├── uni-icons.json
│ │ │ └── uni-icons.wxml
│ ├── app.wxss
│ ├── project.private.config.json
│ ├── common
│ │ └── main.wxss
│ ├── project.config.json
│ └── app.json
│ └── .sourcemap
│ └── mp-weixin
│ └── pages
│ ├── mine
│ └── mine.js.map
│ └── publish
│ └── publish.js.map
├── 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-section
│ ├── changelog.md
│ ├── readme.md
│ └── 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-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
│ │ │ ├── en.json
│ │ │ ├── zh-Hans.json
│ │ │ ├── zh-Hant.json
│ │ │ └── index.js
│ ├── readme.md
│ ├── changelog.md
│ └── package.json
├── uni-pagination
│ ├── components
│ │ └── uni-pagination
│ │ │ └── i18n
│ │ │ ├── es.json
│ │ │ ├── zh-Hans.json
│ │ │ ├── zh-Hant.json
│ │ │ ├── en.json
│ │ │ ├── fr.json
│ │ │ └── index.js
│ ├── readme.md
│ ├── changelog.md
│ └── package.json
├── 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-Hans.json
│ │ │ │ ├── zh-Hant.json
│ │ │ │ ├── en.json
│ │ │ │ └── index.js
│ │ │ ├── popup.js
│ │ │ └── keypress.js
│ │ └── uni-popup-dialog
│ │ │ └── keypress.js
│ ├── readme.md
│ └── package.json
├── uni-fab
│ ├── readme.md
│ ├── changelog.md
│ └── package.json
├── uni-calendar
│ ├── components
│ │ └── uni-calendar
│ │ │ └── i18n
│ │ │ ├── index.js
│ │ │ ├── zh-Hant.json
│ │ │ ├── zh-Hans.json
│ │ │ └── en.json
│ ├── changelog.md
│ └── package.json
├── uni-grid
│ ├── readme.md
│ ├── changelog.md
│ └── package.json
├── uni-drawer
│ ├── readme.md
│ ├── changelog.md
│ ├── components
│ │ └── uni-drawer
│ │ │ └── keypress.js
│ └── package.json
├── uni-goods-nav
│ ├── components
│ │ └── uni-goods-nav
│ │ │ └── i18n
│ │ │ ├── index.js
│ │ │ ├── zh-Hans.json
│ │ │ ├── zh-Hant.json
│ │ │ └── en.json
│ ├── readme.md
│ ├── changelog.md
│ └── package.json
├── uni-group
│ ├── readme.md
│ ├── changelog.md
│ └── package.json
├── uni-card
│ ├── readme.md
│ ├── changelog.md
│ └── package.json
├── uni-datetime-picker
│ ├── components
│ │ └── uni-datetime-picker
│ │ │ └── i18n
│ │ │ ├── index.js
│ │ │ ├── zh-Hans.json
│ │ │ ├── zh-Hant.json
│ │ │ └── en.json
│ ├── readme.md
│ └── package.json
├── uni-combox
│ ├── readme.md
│ └── changelog.md
├── uni-tooltip
│ ├── changelog.md
│ ├── readme.md
│ ├── components
│ │ └── uni-tooltip
│ │ │ └── uni-tooltip.vue
│ └── package.json
├── uni-data-select
│ ├── readme.md
│ └── changelog.md
├── uni-row
│ ├── readme.md
│ ├── changelog.md
│ └── package.json
├── uni-swiper-dot
│ ├── readme.md
│ ├── changelog.md
│ └── package.json
├── uni-rate
│ ├── readme.md
│ ├── changelog.md
│ └── package.json
├── uni-steps
│ ├── readme.md
│ └── changelog.md
├── uni-transition
│ ├── readme.md
│ ├── changelog.md
│ └── package.json
├── uni-badge
│ ├── readme.md
│ ├── changelog.md
│ └── package.json
├── uni-dateformat
│ ├── readme.md
│ ├── changelog.md
│ └── components
│ │ └── uni-dateformat
│ │ └── uni-dateformat.vue
├── 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-indexed-list
│ ├── readme.md
│ └── changelog.md
├── uni-notice-bar
│ ├── readme.md
│ ├── changelog.md
│ └── package.json
├── uni-tag
│ ├── readme.md
│ ├── changelog.md
│ └── package.json
├── uni-nav-bar
│ ├── readme.md
│ ├── components
│ │ └── uni-nav-bar
│ │ │ └── uni-status-bar.vue
│ ├── changelog.md
│ └── package.json
├── uni-link
│ ├── readme.md
│ └── changelog.md
├── uni-number-box
│ ├── readme.md
│ ├── changelog.md
│ └── package.json
├── uni-file-picker
│ ├── readme.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
│ └── package.json
├── uni-title
│ ├── readme.md
│ ├── changelog.md
│ └── package.json
├── uni-segmented-control
│ ├── readme.md
│ └── changelog.md
├── uni-collapse
│ ├── readme.md
│ ├── changelog.md
│ └── package.json
├── uni-easyinput
│ ├── readme.md
│ ├── components
│ │ └── uni-easyinput
│ │ │ └── common.js
│ ├── package.json
│ └── changelog.md
├── uni-data-checkbox
│ ├── readme.md
│ ├── changelog.md
│ └── package.json
├── uni-forms
│ ├── readme.md
│ └── package.json
├── uni-data-picker
│ ├── readme.md
│ └── components
│ │ └── uni-data-picker
│ │ └── keypress.js
└── uni-list
│ ├── components
│ ├── uni-list-chat
│ │ └── uni-list-chat.scss
│ └── uni-list
│ │ └── uni-refresh.vue
│ ├── changelog.md
│ └── package.json
├── .DS_Store
├── static
├── .DS_Store
├── image
│ ├── .DS_Store
│ ├── logo.jpg
│ ├── no-data.png
│ ├── icon
│ │ └── ico_qzyx.png
│ └── tab
│ │ ├── icon_me.png
│ │ ├── icon_work.png
│ │ ├── icon_me_ac.png
│ │ ├── icon_publish.png
│ │ ├── icon_service.png
│ │ ├── icon_work_ac.png
│ │ ├── icon_publish_ac.png
│ │ └── icon_service_ac.png
└── css
│ └── common.css
├── utils
├── env.js
└── http.js
├── store
├── index.js
└── user.js
├── pages
├── 404
│ └── 404.vue
├── details
│ └── details.vue
├── chooseAddress
│ └── chooseAddress.vue
├── search
│ └── search.vue
└── index
│ └── index.vue
├── App.vue
├── components
└── noData
│ └── noData.vue
├── index.html
├── main.js
└── uni.scss
/README.md:
--------------------------------------------------------------------------------
1 | # lex-pro
2 | ## 乐享零工
3 |
--------------------------------------------------------------------------------
/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/pages/404/404.wxml:
--------------------------------------------------------------------------------
1 | 当前页面不存在
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/details/details.wxml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sijinglei/lex-pro/main/.DS_Store
--------------------------------------------------------------------------------
/uni_modules/uni-section/changelog.md:
--------------------------------------------------------------------------------
1 | ## 0.0.1(2022-07-22)
2 | - 初始化
3 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/chooseAddress/chooseAddress.wxml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/static/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sijinglei/lex-pro/main/static/.DS_Store
--------------------------------------------------------------------------------
/static/image/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sijinglei/lex-pro/main/static/image/.DS_Store
--------------------------------------------------------------------------------
/static/image/logo.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sijinglei/lex-pro/main/static/image/logo.jpg
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/search/search.wxml:
--------------------------------------------------------------------------------
1 | {{''+(type==1?'搜职位':'搜服务')+''}}
--------------------------------------------------------------------------------
/static/image/no-data.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sijinglei/lex-pro/main/static/image/no-data.png
--------------------------------------------------------------------------------
/uni_modules/uni-scss/styles/setting/_border.scss:
--------------------------------------------------------------------------------
1 | .uni-border {
2 | border: 1px $uni-border-1 solid;
3 | }
--------------------------------------------------------------------------------
/static/image/icon/ico_qzyx.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sijinglei/lex-pro/main/static/image/icon/ico_qzyx.png
--------------------------------------------------------------------------------
/static/image/tab/icon_me.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sijinglei/lex-pro/main/static/image/tab/icon_me.png
--------------------------------------------------------------------------------
/static/image/tab/icon_work.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sijinglei/lex-pro/main/static/image/tab/icon_work.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/components/comItem.json:
--------------------------------------------------------------------------------
1 | {
2 | "usingComponents": {},
3 | "component": true
4 | }
--------------------------------------------------------------------------------
/static/image/tab/icon_me_ac.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sijinglei/lex-pro/main/static/image/tab/icon_me_ac.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/components/noData/noData.json:
--------------------------------------------------------------------------------
1 | {
2 | "usingComponents": {},
3 | "component": true
4 | }
--------------------------------------------------------------------------------
/static/image/tab/icon_publish.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sijinglei/lex-pro/main/static/image/tab/icon_publish.png
--------------------------------------------------------------------------------
/static/image/tab/icon_service.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sijinglei/lex-pro/main/static/image/tab/icon_service.png
--------------------------------------------------------------------------------
/static/image/tab/icon_work_ac.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sijinglei/lex-pro/main/static/image/tab/icon_work_ac.png
--------------------------------------------------------------------------------
/static/image/tab/icon_publish_ac.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sijinglei/lex-pro/main/static/image/tab/icon_publish_ac.png
--------------------------------------------------------------------------------
/static/image/tab/icon_service_ac.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sijinglei/lex-pro/main/static/image/tab/icon_service_ac.png
--------------------------------------------------------------------------------
/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/app.js:
--------------------------------------------------------------------------------
1 |
2 | require('./common/runtime.js')
3 | require('./common/vendor.js')
4 | require('./common/main.js')
--------------------------------------------------------------------------------
/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/static/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sijinglei/lex-pro/main/unpackage/dist/dev/mp-weixin/static/.DS_Store
--------------------------------------------------------------------------------
/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/mp-weixin/static/image/logo.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sijinglei/lex-pro/main/unpackage/dist/dev/mp-weixin/static/image/logo.jpg
--------------------------------------------------------------------------------
/uni_modules/uni-ui/components/uni-ui/uni-ui.vue:
--------------------------------------------------------------------------------
1 |
2 | 占位组件,请勿使用
3 |
4 |
6 |
8 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/404/404.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "",
3 | "enablePullDownRefresh": false,
4 | "usingComponents": {}
5 | }
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/image/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sijinglei/lex-pro/main/unpackage/dist/dev/mp-weixin/static/image/.DS_Store
--------------------------------------------------------------------------------
/uni_modules/uni-icons/components/uni-icons/uniicons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sijinglei/lex-pro/main/uni_modules/uni-icons/components/uni-icons/uniicons.ttf
--------------------------------------------------------------------------------
/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;}
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/search/search.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "",
3 | "enablePullDownRefresh": false,
4 | "usingComponents": {}
5 | }
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/image/no-data.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sijinglei/lex-pro/main/unpackage/dist/dev/mp-weixin/static/image/no-data.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/details/details.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "",
3 | "enablePullDownRefresh": false,
4 | "usingComponents": {}
5 | }
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/image/tab/icon_me.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sijinglei/lex-pro/main/unpackage/dist/dev/mp-weixin/static/image/tab/icon_me.png
--------------------------------------------------------------------------------
/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 | }
--------------------------------------------------------------------------------
/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/mp-weixin/static/image/icon/ico_qzyx.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sijinglei/lex-pro/main/unpackage/dist/dev/mp-weixin/static/image/icon/ico_qzyx.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/image/tab/icon_me_ac.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sijinglei/lex-pro/main/unpackage/dist/dev/mp-weixin/static/image/tab/icon_me_ac.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/image/tab/icon_work.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sijinglei/lex-pro/main/unpackage/dist/dev/mp-weixin/static/image/tab/icon_work.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/chooseAddress/chooseAddress.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "",
3 | "enablePullDownRefresh": false,
4 | "usingComponents": {}
5 | }
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/image/tab/icon_publish.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sijinglei/lex-pro/main/unpackage/dist/dev/mp-weixin/static/image/tab/icon_publish.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/image/tab/icon_service.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sijinglei/lex-pro/main/unpackage/dist/dev/mp-weixin/static/image/tab/icon_service.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/image/tab/icon_work_ac.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sijinglei/lex-pro/main/unpackage/dist/dev/mp-weixin/static/image/tab/icon_work_ac.png
--------------------------------------------------------------------------------
/utils/env.js:
--------------------------------------------------------------------------------
1 | "use strict";
2 | // 变量可自行添加修改
3 | export default { //存放变量的容器
4 | appid: 'wxe6e66f26705dd745', //小程序appid
5 | baseUrl: 'http://www.baidu.com' //服务端域名
6 | }
7 |
--------------------------------------------------------------------------------
/uni_modules/uni-pagination/components/uni-pagination/i18n/es.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sijinglei/lex-pro/main/uni_modules/uni-pagination/components/uni-pagination/i18n/es.json
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/components/noData/noData.wxss:
--------------------------------------------------------------------------------
1 |
2 | .no-data.data-v-1424cde4 {
3 | display: flex;
4 | align-items: center;
5 | justify-content: center;
6 | }
7 |
8 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/image/tab/icon_publish_ac.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sijinglei/lex-pro/main/unpackage/dist/dev/mp-weixin/static/image/tab/icon_publish_ac.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/image/tab/icon_service_ac.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sijinglei/lex-pro/main/unpackage/dist/dev/mp-weixin/static/image/tab/icon_service_ac.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 |
--------------------------------------------------------------------------------
/uni_modules/uni-pagination/components/uni-pagination/i18n/zh-Hans.json:
--------------------------------------------------------------------------------
1 | {
2 | "uni-pagination.prevText": "上一页",
3 | "uni-pagination.nextText": "下一页",
4 | "uni-pagination.piecePerPage": "条/页"
5 | }
6 |
--------------------------------------------------------------------------------
/uni_modules/uni-pagination/components/uni-pagination/i18n/zh-Hant.json:
--------------------------------------------------------------------------------
1 | {
2 | "uni-pagination.prevText": "上一頁",
3 | "uni-pagination.nextText": "下一頁",
4 | "uni-pagination.piecePerPage": "條/頁"
5 | }
6 |
--------------------------------------------------------------------------------
/uni_modules/uni-pagination/components/uni-pagination/i18n/en.json:
--------------------------------------------------------------------------------
1 | {
2 | "uni-pagination.prevText": "prev",
3 | "uni-pagination.nextText": "next",
4 | "uni-pagination.piecePerPage": "piece/page"
5 | }
6 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/publish/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationBarTitleText": "发布",
3 | "usingComponents": {
4 | "uni-icons": "/uni_modules/uni-icons/components/uni-icons/uni-icons"
5 | }
6 | }
--------------------------------------------------------------------------------
/uni_modules/uni-scss/changelog.md:
--------------------------------------------------------------------------------
1 | ## 1.0.3(2022-01-21)
2 | - 优化 组件示例
3 | ## 1.0.2(2021-11-22)
4 | - 修复 / 符号在 vue 不同版本兼容问题引起的报错问题
5 | ## 1.0.1(2021-11-22)
6 | - 修复 vue3中scss语法兼容问题
7 | ## 1.0.0(2021-11-18)
8 | - init
9 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/uni_modules/uni-pagination/components/uni-pagination/i18n/fr.json:
--------------------------------------------------------------------------------
1 | {
2 | "uni-pagination.prevText": "précédente",
3 | "uni-pagination.nextText": "suivante",
4 | "uni-pagination.piecePerPage": "Articles/Pages"
5 | }
6 |
--------------------------------------------------------------------------------
/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-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 |
--------------------------------------------------------------------------------
/store/index.js:
--------------------------------------------------------------------------------
1 | import Vue from 'vue'
2 | import Vuex from 'vuex'
3 | import user from './user.js'
4 | Vue.use(Vuex)
5 |
6 | const store = new Vuex.Store({
7 | modules: {
8 | user
9 | }
10 | })
11 | export default store
--------------------------------------------------------------------------------
/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
--------------------------------------------------------------------------------
/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/pages/service/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationStyle": "custom",
3 | "usingComponents": {
4 | "uni-icons": "/uni_modules/uni-icons/components/uni-icons/uni-icons",
5 | "com-item": "/components/comItem"
6 | }
7 | }
--------------------------------------------------------------------------------
/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-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 |
--------------------------------------------------------------------------------
/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-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-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-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/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-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
--------------------------------------------------------------------------------
/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-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 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/components/noData/noData.wxml:
--------------------------------------------------------------------------------
1 | {{title}}
--------------------------------------------------------------------------------
/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-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-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-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-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
--------------------------------------------------------------------------------
/uni_modules/uni-section/readme.md:
--------------------------------------------------------------------------------
1 | ## Section 标题栏
2 | > **组件名:uni-section**
3 | > 代码块: `uSection`
4 |
5 | uni-section 组件主要用于文章、列表详情等标题展示
6 |
7 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-section)
8 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
9 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/work/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationStyle": "custom",
3 | "onReachBottomDistance": 100,
4 | "usingComponents": {
5 | "uni-icons": "/uni_modules/uni-icons/components/uni-icons/uni-icons",
6 | "com-item": "/components/comItem"
7 | }
8 | }
--------------------------------------------------------------------------------
/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
--------------------------------------------------------------------------------
/uni_modules/uni-tooltip/changelog.md:
--------------------------------------------------------------------------------
1 | ## 0.2.1(2022-05-09)
2 | - 修复 content 为空时仍然弹出的bug
3 | ## 0.2.0(2022-05-07)
4 | **注意:破坏性更新**
5 | - 更新 text 属性变更为 content
6 | - 更新 移除 width 属性
7 | ## 0.1.1(2022-04-27)
8 | - 修复 组件根 text 嵌套组件 warning
9 | ## 0.1.0(2022-04-21)
10 | - 初始化
11 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/mine/index.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationStyle": "custom",
3 | "navigationBarTitleText": "我的",
4 | "usingComponents": {
5 | "uni-icons": "/uni_modules/uni-icons/components/uni-icons/uni-icons",
6 | "com-item": "/components/comItem"
7 | }
8 | }
--------------------------------------------------------------------------------
/uni_modules/uni-data-select/readme.md:
--------------------------------------------------------------------------------
1 | ## DataSelect 下拉框选择器
2 | > **组件名:uni-data-select**
3 | > 代码块: `uDataSelect`
4 |
5 | 当选项过多时,使用下拉菜单展示并选择内容
6 |
7 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-data-select)
8 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
9 |
--------------------------------------------------------------------------------
/uni_modules/uni-tooltip/readme.md:
--------------------------------------------------------------------------------
1 | ## Badge 数字角标
2 | > **组件名:uni-tooltip**
3 | > 代码块: `uTooltip`
4 |
5 | 数字角标一般和其它控件(列表、9宫格等)配合使用,用于进行数量提示,默认为实心灰色背景,
6 |
7 | ### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-tooltip)
8 | #### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
9 |
--------------------------------------------------------------------------------
/pages/details/details.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
19 |
20 |
23 |
--------------------------------------------------------------------------------
/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-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 |
--------------------------------------------------------------------------------
/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-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
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/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-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 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/uni_modules/uni-icons/components/uni-icons/uni-icons.wxml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/pages/chooseAddress/chooseAddress.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
19 |
20 |
23 |
--------------------------------------------------------------------------------
/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-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 |
--------------------------------------------------------------------------------
/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-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-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-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 |
--------------------------------------------------------------------------------
/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/project.private.config.json:
--------------------------------------------------------------------------------
1 | {
2 | "description": "项目私有配置文件。此文件中的内容将覆盖 project.config.json 中的相同字段。项目的改动优先同步到此文件中。详见文档:https://developers.weixin.qq.com/miniprogram/dev/devtools/projectconfig.html",
3 | "projectname": "lex-pro",
4 | "setting": {
5 | "compileHotReLoad": true
6 | }
7 | }
--------------------------------------------------------------------------------
/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-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-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-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-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 |
--------------------------------------------------------------------------------
/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-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-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-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 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/static/css/common.css:
--------------------------------------------------------------------------------
1 | .red {
2 | color: red;
3 | }
4 |
5 | .arrow {
6 | width: 92rpx;
7 | height: 92rpx;
8 | border-radius: 50%;
9 | background-color: #fff;
10 | display: flex;
11 | align-items: center;
12 | justify-content: center;
13 | }
14 |
15 | .arrow.success .uni-icons {
16 | border-radius: 50%;
17 | background-color: #07C160;
18 | }
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/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
--------------------------------------------------------------------------------
/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/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 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/css/common.css:
--------------------------------------------------------------------------------
1 | .red {
2 | color: red;
3 | }
4 |
5 | .arrow {
6 | width: 92rpx;
7 | height: 92rpx;
8 | border-radius: 50%;
9 | background-color: #fff;
10 | display: flex;
11 | align-items: center;
12 | justify-content: center;
13 | }
14 |
15 | .arrow.success .uni-icons {
16 | border-radius: 50%;
17 | background-color: #07C160;
18 | }
--------------------------------------------------------------------------------
/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-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 |
--------------------------------------------------------------------------------
/pages/404/404.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 | 当前页面不存在
4 |
5 |
6 |
7 |
26 |
27 |
30 |
--------------------------------------------------------------------------------
/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 | }
13 |
--------------------------------------------------------------------------------
/uni_modules/uni-title/changelog.md:
--------------------------------------------------------------------------------
1 | ## 1.1.1(2022-05-19)
2 | - 修改组件描述
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-title](https://uniapp.dcloud.io/component/uniui/uni-title)
6 | ## 1.0.2(2021-05-12)
7 | - 新增 示例地址
8 | - 修复 示例项目缺少组件的Bug
9 | ## 1.0.1(2021-02-05)
10 | - 调整为uni_modules目录规范
11 |
--------------------------------------------------------------------------------
/pages/search/search.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 | {{type==1?'搜职位':'搜服务'}}
4 |
5 |
6 |
7 |
22 |
23 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/App.vue:
--------------------------------------------------------------------------------
1 |
14 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/common/main.wxss:
--------------------------------------------------------------------------------
1 | .red {
2 | color: red;
3 | }
4 | .arrow {
5 | width: 92rpx;
6 | height: 92rpx;
7 | border-radius: 50%;
8 | background-color: #fff;
9 | display: flex;
10 | align-items: center;
11 | justify-content: center;
12 | }
13 | .arrow.success .uni-icons {
14 | border-radius: 50%;
15 | background-color: #07C160;
16 | }
17 | page {
18 | --tc: #ffd200;
19 | --theam-color: #ffd200;
20 | --fcolor: #333333;
21 | --ww: 0.872;
22 | background-color: #efefef;
23 | }
24 |
25 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/.sourcemap/mp-weixin/pages/mine/mine.js.map:
--------------------------------------------------------------------------------
1 | {"version":3,"sources":["uni-app:///main.js"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;;;;AAAA;AAGA;AACA;AAHA;AACAA,EAAE,CAACC,iCAAiC,GAAGC,mBAAmB;AAG1DC,UAAU,CAACC,aAAI,CAAC,C","file":"pages/mine/mine.js","sourcesContent":["import 'uni-pages';\n// @ts-ignore\nwx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/mine/mine.vue'\ncreatePage(Page)"],"sourceRoot":""}
--------------------------------------------------------------------------------
/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-table/components/uni-tbody/uni-tbody.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
27 |
28 |
30 |
--------------------------------------------------------------------------------
/uni_modules/uni-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 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/.sourcemap/mp-weixin/pages/publish/publish.js.map:
--------------------------------------------------------------------------------
1 | {"version":3,"sources":["uni-app:///main.js"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;;;;AAAA;AAGA;AACA;AAHA;AACAA,EAAE,CAACC,iCAAiC,GAAGC,mBAAmB;AAG1DC,UAAU,CAACC,gBAAI,CAAC,C","file":"pages/publish/publish.js","sourcesContent":["import 'uni-pages';\n// @ts-ignore\nwx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/publish/publish.vue'\ncreatePage(Page)"],"sourceRoot":""}
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/uni_modules/uni-nav-bar/components/uni-nav-bar/uni-status-bar.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
17 |
18 |
25 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/store/user.js:
--------------------------------------------------------------------------------
1 | import http from '../utils/http.js'
2 | export default {
3 | namespaced: true,
4 | state: {},
5 | getters: {},
6 | actions: {
7 | async login({
8 | commit
9 | }, params) {
10 | return http.post('/login', params).then(res => {
11 | console.log('params', params)
12 | let data = res.data || {
13 | name: 'aaa'
14 | }
15 | commit('SET_USERINFO', data)
16 | return data
17 | })
18 |
19 | },
20 | },
21 | mutations: {
22 | SET_USERINFO(state, data) {
23 | uni.setStorageSync('user', data)
24 | state.userInfo = data
25 | }
26 | }
27 | }
--------------------------------------------------------------------------------
/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-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-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-group/changelog.md:
--------------------------------------------------------------------------------
1 | ## 1.2.2(2022-05-30)
2 | - 新增 stat属性,是否开启uni统计功能
3 | ## 1.2.1(2021-11-22)
4 | - 修复 vue3中某些scss变量无法找到的问题
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-group](https://uniapp.dcloud.io/component/uniui/uni-group)
8 | ## 1.1.7(2021-11-08)
9 | ## 1.1.0(2021-07-30)
10 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834)
11 | - 优化 组件文档
12 | ## 1.0.3(2021-05-12)
13 | - 新增 组件示例地址
14 | ## 1.0.2(2021-02-05)
15 | - 调整为uni_modules目录规范
16 | - 优化 兼容 nvue 页面
17 |
--------------------------------------------------------------------------------
/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-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 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/components/comItem.wxml:
--------------------------------------------------------------------------------
1 | {{''+item.title+''}}急招招5人南山区·世界之窗 | 距您2.3公里薪酬:日结,每天100元要求:性别不限,年龄不限,需求会刷盘子,待客热情
--------------------------------------------------------------------------------
/components/noData/noData.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | {{ title }}
5 |
6 |
7 |
8 |
25 |
26 |
--------------------------------------------------------------------------------
/uni_modules/uni-calendar/changelog.md:
--------------------------------------------------------------------------------
1 | ## 1.4.9(2023-02-02)
2 | - 修复 某些情况切换月份错误问题
3 | ## 1.4.8(2023-01-30)
4 | - 修复 某些情况切换月份错误问题
5 | ## 1.4.7(2022-09-16)
6 | - 可以使用 uni-scss 控制主题色
7 | ## 1.4.6(2022-09-08)
8 | - fix: 表头年月切换,导致改变当前日期为选择月1号,且未触发change事件
9 | ## 1.4.5(2022-02-25)
10 | - 修复 条件编译 nvue 不支持的 css 样式
11 | ## 1.4.4(2022-02-25)
12 | - 修复 条件编译 nvue 不支持的 css 样式
13 | ## 1.4.3(2021-09-22)
14 | - 修复 startDate、 endDate 属性失效的 bug
15 | ## 1.4.2(2021-08-24)
16 | - 新增 支持国际化
17 | ## 1.4.1(2021-08-05)
18 | - 修复 弹出层被 tabbar 遮盖 bug
19 | ## 1.4.0(2021-07-30)
20 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834)
21 | ## 1.3.16(2021-05-12)
22 | - 新增 组件示例地址
23 | ## 1.3.15(2021-02-04)
24 | - 调整为uni_modules目录规范
25 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/project.config.json:
--------------------------------------------------------------------------------
1 | {
2 | "description": "项目配置文件。",
3 | "packOptions": {
4 | "ignore": [],
5 | "include": []
6 | },
7 | "setting": {
8 | "urlCheck": false,
9 | "es6": true,
10 | "postcss": true,
11 | "minified": false,
12 | "newFeature": true,
13 | "bigPackageSizeSupport": true,
14 | "babelSetting": {
15 | "ignore": [],
16 | "disablePlugins": [],
17 | "outputPath": ""
18 | }
19 | },
20 | "compileType": "miniprogram",
21 | "libVersion": "2.30.4",
22 | "appid": "wxe6e66f26705dd745",
23 | "projectname": "lex-pro",
24 | "condition": {},
25 | "editorSetting": {
26 | "tabIndent": "insertSpaces",
27 | "tabSize": 2
28 | }
29 | }
--------------------------------------------------------------------------------
/uni_modules/uni-goods-nav/changelog.md:
--------------------------------------------------------------------------------
1 | ## 1.2.1(2022-05-30)
2 | - 新增 stat属性,是否开启uni统计功能
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-goods-nav](https://uniapp.dcloud.io/component/uniui/uni-goods-nav)
6 | ## 1.1.1(2021-08-24)
7 | - 新增 支持国际化
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-04-21)
13 | - 优化 添加依赖 uni-icons, 导入后自动下载依赖
14 | ## 1.0.5(2021-02-05)
15 | - 优化 组件引用关系,通过uni_modules引用组件
16 |
17 | ## 1.0.4(2021-02-05)
18 | - 调整为uni_modules目录规范
19 |
--------------------------------------------------------------------------------
/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/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
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/uni_modules/uni-notice-bar/changelog.md:
--------------------------------------------------------------------------------
1 | ## 1.2.1(2022-09-05)
2 | - 新增 属性 fontSize,可修改文字大小。
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-notice-bar](https://uniapp.dcloud.io/component/uniui/uni-notice-bar)
6 | ## 1.1.1(2021-11-09)
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-02-05)
15 | - 优化 组件引用关系,通过uni_modules引用组件
16 |
17 | ## 1.0.6(2021-02-05)
18 | - 调整为uni_modules目录规范
19 |
--------------------------------------------------------------------------------
/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-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
--------------------------------------------------------------------------------
/uni_modules/uni-fav/changelog.md:
--------------------------------------------------------------------------------
1 | ## 1.2.1(2022-05-30)
2 | - 新增 stat 属性 ,是否开启uni统计功能
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-fav](https://uniapp.dcloud.io/component/uniui/uni-fav)
6 | ## 1.1.1(2021-08-24)
7 | - 新增 支持国际化
8 | ## 1.1.0(2021-07-13)
9 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834)
10 | ## 1.0.6(2021-05-12)
11 | - 新增 组件示例地址
12 | ## 1.0.5(2021-04-21)
13 | - 优化 添加依赖 uni-icons, 导入后自动下载依赖
14 | ## 1.0.4(2021-02-05)
15 | - 优化 组件引用关系,通过uni_modules引用组件
16 | ## 1.0.3(2021-02-05)
17 | - 优化 组件引用关系,通过uni_modules引用组件
18 | ## 1.0.2(2021-02-05)
19 | - 调整为uni_modules目录规范
20 |
--------------------------------------------------------------------------------
/uni_modules/uni-load-more/changelog.md:
--------------------------------------------------------------------------------
1 | ## 1.3.3(2022-01-20)
2 | - 新增 showText属性 ,是否显示文本
3 | ## 1.3.2(2022-01-19)
4 | - 修复 nvue 平台下不显示文本的bug
5 | ## 1.3.1(2022-01-19)
6 | - 修复 微信小程序平台样式选择器报警告的问题
7 | ## 1.3.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-load-more](https://uniapp.dcloud.io/component/uniui/uni-load-more)
10 | ## 1.2.1(2021-08-24)
11 | - 新增 支持国际化
12 | ## 1.2.0(2021-07-30)
13 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834)
14 | ## 1.1.8(2021-05-12)
15 | - 新增 组件示例地址
16 | ## 1.1.7(2021-03-30)
17 | - 修复 uni-load-more 在首页使用时,h5 平台报 'uni is not defined' 的 bug
18 | ## 1.1.6(2021-02-05)
19 | - 调整为uni_modules目录规范
20 |
--------------------------------------------------------------------------------
/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-icons/changelog.md:
--------------------------------------------------------------------------------
1 | ## 1.3.5(2022-01-24)
2 | - 优化 size 属性可以传入不带单位的字符串数值
3 | ## 1.3.4(2022-01-24)
4 | - 优化 size 支持其他单位
5 | ## 1.3.3(2022-01-17)
6 | - 修复 nvue 有些图标不显示的bug,兼容老版本图标
7 | ## 1.3.2(2021-12-01)
8 | - 优化 示例可复制图标名称
9 | ## 1.3.1(2021-11-23)
10 | - 优化 兼容旧组件 type 值
11 | ## 1.3.0(2021-11-19)
12 | - 新增 更多图标
13 | - 优化 自定义图标使用方式
14 | - 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource)
15 | - 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-icons](https://uniapp.dcloud.io/component/uniui/uni-icons)
16 | ## 1.1.7(2021-11-08)
17 | ## 1.2.0(2021-07-30)
18 | - 组件兼容 vue3,如何创建vue3项目,详见 [uni-app 项目支持 vue3 介绍](https://ask.dcloud.net.cn/article/37834)
19 | ## 1.1.5(2021-05-12)
20 | - 新增 组件示例地址
21 | ## 1.1.4(2021-02-05)
22 | - 调整为uni_modules目录规范
23 |
--------------------------------------------------------------------------------
/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-datetime-picker.year": "年",
13 | "uni-datetime-picker.month": "月",
14 | "uni-calender.SUN": "日",
15 | "uni-calender.MON": "一",
16 | "uni-calender.TUE": "二",
17 | "uni-calender.WED": "三",
18 | "uni-calender.THU": "四",
19 | "uni-calender.FRI": "五",
20 | "uni-calender.SAT": "六",
21 | "uni-calender.confirm": "确认"
22 | }
--------------------------------------------------------------------------------
/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-datetime-picker.year": "年",
13 | "uni-datetime-picker.month": "月",
14 | "uni-calender.SUN": "日",
15 | "uni-calender.MON": "一",
16 | "uni-calender.TUE": "二",
17 | "uni-calender.WED": "三",
18 | "uni-calender.THU": "四",
19 | "uni-calender.FRI": "五",
20 | "uni-calender.SAT": "六",
21 | "uni-calender.confirm": "確認"
22 | }
--------------------------------------------------------------------------------
/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的内置组件已经有了 `