uview-plus 3.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (366) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +64 -0
  3. package/changelog.md +8 -0
  4. package/components/u--form/u--form.vue +78 -0
  5. package/components/u--image/u--image.vue +47 -0
  6. package/components/u--input/u--input.vue +73 -0
  7. package/components/u--text/u--text.vue +44 -0
  8. package/components/u--textarea/u--textarea.vue +48 -0
  9. package/components/u-action-sheet/props.js +54 -0
  10. package/components/u-action-sheet/u-action-sheet.vue +278 -0
  11. package/components/u-album/props.js +59 -0
  12. package/components/u-album/u-album.vue +259 -0
  13. package/components/u-alert/props.js +44 -0
  14. package/components/u-alert/u-alert.vue +243 -0
  15. package/components/u-avatar/props.js +78 -0
  16. package/components/u-avatar/u-avatar.vue +172 -0
  17. package/components/u-avatar-group/props.js +52 -0
  18. package/components/u-avatar-group/u-avatar-group.vue +103 -0
  19. package/components/u-back-top/props.js +54 -0
  20. package/components/u-back-top/u-back-top.vue +129 -0
  21. package/components/u-badge/props.js +72 -0
  22. package/components/u-badge/u-badge.vue +171 -0
  23. package/components/u-button/nvue.scss +46 -0
  24. package/components/u-button/props.js +161 -0
  25. package/components/u-button/u-button.vue +490 -0
  26. package/components/u-button/vue.scss +80 -0
  27. package/components/u-calendar/header.vue +99 -0
  28. package/components/u-calendar/month.vue +580 -0
  29. package/components/u-calendar/props.js +144 -0
  30. package/components/u-calendar/u-calendar.vue +384 -0
  31. package/components/u-calendar/util.js +85 -0
  32. package/components/u-car-keyboard/props.js +14 -0
  33. package/components/u-car-keyboard/u-car-keyboard.vue +311 -0
  34. package/components/u-cell/props.js +110 -0
  35. package/components/u-cell/u-cell.vue +229 -0
  36. package/components/u-cell-group/props.js +14 -0
  37. package/components/u-cell-group/u-cell-group.vue +61 -0
  38. package/components/u-checkbox/props.js +69 -0
  39. package/components/u-checkbox/u-checkbox.vue +344 -0
  40. package/components/u-checkbox-group/props.js +82 -0
  41. package/components/u-checkbox-group/u-checkbox-group.vue +103 -0
  42. package/components/u-circle-progress/props.js +8 -0
  43. package/components/u-circle-progress/u-circle-progress.vue +198 -0
  44. package/components/u-code/props.js +34 -0
  45. package/components/u-code/u-code.vue +129 -0
  46. package/components/u-code-input/props.js +79 -0
  47. package/components/u-code-input/u-code-input.vue +252 -0
  48. package/components/u-col/props.js +29 -0
  49. package/components/u-col/u-col.vue +162 -0
  50. package/components/u-collapse/props.js +19 -0
  51. package/components/u-collapse/u-collapse.vue +90 -0
  52. package/components/u-collapse-item/props.js +59 -0
  53. package/components/u-collapse-item/u-collapse-item.vue +225 -0
  54. package/components/u-column-notice/props.js +55 -0
  55. package/components/u-column-notice/u-column-notice.vue +160 -0
  56. package/components/u-count-down/props.js +24 -0
  57. package/components/u-count-down/u-count-down.vue +163 -0
  58. package/components/u-count-down/utils.js +62 -0
  59. package/components/u-count-to/props.js +59 -0
  60. package/components/u-count-to/u-count-to.vue +184 -0
  61. package/components/u-datetime-picker/props.js +116 -0
  62. package/components/u-datetime-picker/u-datetime-picker.vue +362 -0
  63. package/components/u-divider/props.js +44 -0
  64. package/components/u-divider/u-divider.vue +116 -0
  65. package/components/u-dropdown/props.js +65 -0
  66. package/components/u-dropdown/u-dropdown.vue +127 -0
  67. package/components/u-dropdown-item/props.js +36 -0
  68. package/components/u-dropdown-item/u-dropdown-item.vue +146 -0
  69. package/components/u-empty/props.js +59 -0
  70. package/components/u-empty/u-empty.vue +128 -0
  71. package/components/u-form/props.js +45 -0
  72. package/components/u-form/u-form.vue +214 -0
  73. package/components/u-form-item/props.js +43 -0
  74. package/components/u-form-item/u-form-item.vue +235 -0
  75. package/components/u-gap/props.js +24 -0
  76. package/components/u-gap/u-gap.vue +38 -0
  77. package/components/u-grid/props.js +19 -0
  78. package/components/u-grid/u-grid.vue +97 -0
  79. package/components/u-grid-item/props.js +14 -0
  80. package/components/u-grid-item/u-grid-item.vue +209 -0
  81. package/components/u-icon/icons.js +214 -0
  82. package/components/u-icon/props.js +89 -0
  83. package/components/u-icon/u-icon.vue +234 -0
  84. package/components/u-image/props.js +84 -0
  85. package/components/u-image/u-image.vue +232 -0
  86. package/components/u-index-anchor/props.js +29 -0
  87. package/components/u-index-anchor/u-index-anchor.vue +91 -0
  88. package/components/u-index-item/props.js +5 -0
  89. package/components/u-index-item/u-index-item.vue +87 -0
  90. package/components/u-index-list/props.js +29 -0
  91. package/components/u-index-list/u-index-list.vue +440 -0
  92. package/components/u-input/props.js +187 -0
  93. package/components/u-input/u-input.vue +354 -0
  94. package/components/u-keyboard/props.js +84 -0
  95. package/components/u-keyboard/u-keyboard.vue +164 -0
  96. package/components/u-line/props.js +33 -0
  97. package/components/u-line/u-line.vue +62 -0
  98. package/components/u-line-progress/props.js +28 -0
  99. package/components/u-line-progress/u-line-progress.vue +144 -0
  100. package/components/u-link/props.js +39 -0
  101. package/components/u-link/u-link.vue +83 -0
  102. package/components/u-list/props.js +76 -0
  103. package/components/u-list/u-list.vue +157 -0
  104. package/components/u-list-item/props.js +9 -0
  105. package/components/u-list-item/u-list-item.vue +116 -0
  106. package/components/u-loading-icon/props.js +59 -0
  107. package/components/u-loading-icon/u-loading-icon.vue +343 -0
  108. package/components/u-loading-page/props.js +49 -0
  109. package/components/u-loading-page/u-loading-page.vue +115 -0
  110. package/components/u-loadmore/props.js +94 -0
  111. package/components/u-loadmore/u-loadmore.vue +150 -0
  112. package/components/u-modal/props.js +84 -0
  113. package/components/u-modal/u-modal.vue +227 -0
  114. package/components/u-navbar/props.js +84 -0
  115. package/components/u-navbar/u-navbar.vue +186 -0
  116. package/components/u-no-network/props.js +19 -0
  117. package/components/u-no-network/u-no-network.vue +220 -0
  118. package/components/u-notice-bar/props.js +70 -0
  119. package/components/u-notice-bar/u-notice-bar.vue +101 -0
  120. package/components/u-notify/props.js +49 -0
  121. package/components/u-notify/u-notify.vue +211 -0
  122. package/components/u-number-box/props.js +109 -0
  123. package/components/u-number-box/u-number-box.vue +416 -0
  124. package/components/u-number-keyboard/props.js +19 -0
  125. package/components/u-number-keyboard/u-number-keyboard.vue +196 -0
  126. package/components/u-overlay/props.js +24 -0
  127. package/components/u-overlay/u-overlay.vue +68 -0
  128. package/components/u-parse/node/node.vue +499 -0
  129. package/components/u-parse/parser.js +1075 -0
  130. package/components/u-parse/props.js +45 -0
  131. package/components/u-parse/u-parse.vue +366 -0
  132. package/components/u-picker/props.js +79 -0
  133. package/components/u-picker/u-picker.vue +283 -0
  134. package/components/u-picker-column/props.js +5 -0
  135. package/components/u-picker-column/u-picker-column.vue +27 -0
  136. package/components/u-popup/props.js +79 -0
  137. package/components/u-popup/u-popup.vue +304 -0
  138. package/components/u-radio/props.js +64 -0
  139. package/components/u-radio/u-radio.vue +337 -0
  140. package/components/u-radio-group/props.js +85 -0
  141. package/components/u-radio-group/u-radio-group.vue +108 -0
  142. package/components/u-rate/props.js +69 -0
  143. package/components/u-rate/u-rate.vue +304 -0
  144. package/components/u-read-more/props.js +61 -0
  145. package/components/u-read-more/u-read-more.vue +157 -0
  146. package/components/u-row/props.js +19 -0
  147. package/components/u-row/u-row.vue +93 -0
  148. package/components/u-row-notice/props.js +39 -0
  149. package/components/u-row-notice/u-row-notice.vue +330 -0
  150. package/components/u-safe-bottom/props.js +5 -0
  151. package/components/u-safe-bottom/u-safe-bottom.vue +56 -0
  152. package/components/u-scroll-list/nvue.js +28 -0
  153. package/components/u-scroll-list/other.js +0 -0
  154. package/components/u-scroll-list/props.js +34 -0
  155. package/components/u-scroll-list/scrollWxs.wxs +50 -0
  156. package/components/u-scroll-list/u-scroll-list.vue +224 -0
  157. package/components/u-search/props.js +118 -0
  158. package/components/u-search/u-search.vue +303 -0
  159. package/components/u-skeleton/props.js +59 -0
  160. package/components/u-skeleton/u-skeleton.vue +244 -0
  161. package/components/u-slider/mpother.js +113 -0
  162. package/components/u-slider/mpwxs.js +42 -0
  163. package/components/u-slider/mpwxs.wxs +121 -0
  164. package/components/u-slider/nvue - /345/211/257/346/234/254.js" +180 -0
  165. package/components/u-slider/nvue.js +193 -0
  166. package/components/u-slider/props.js +54 -0
  167. package/components/u-slider/u-slider.vue +55 -0
  168. package/components/u-status-bar/props.js +8 -0
  169. package/components/u-status-bar/u-status-bar.vue +46 -0
  170. package/components/u-steps/props.js +39 -0
  171. package/components/u-steps/u-steps.vue +80 -0
  172. package/components/u-steps-item/props.js +24 -0
  173. package/components/u-steps-item/u-steps-item.vue +316 -0
  174. package/components/u-sticky/props.js +40 -0
  175. package/components/u-sticky/u-sticky.vue +212 -0
  176. package/components/u-subsection/props.js +49 -0
  177. package/components/u-subsection/u-subsection.vue +299 -0
  178. package/components/u-swipe-action/props.js +9 -0
  179. package/components/u-swipe-action/u-swipe-action.vue +67 -0
  180. package/components/u-swipe-action-item/index - backup.wxs +256 -0
  181. package/components/u-swipe-action-item/index.wxs +225 -0
  182. package/components/u-swipe-action-item/nvue - backup.js +270 -0
  183. package/components/u-swipe-action-item/nvue.js +174 -0
  184. package/components/u-swipe-action-item/props.js +41 -0
  185. package/components/u-swipe-action-item/u-swipe-action-item.vue +190 -0
  186. package/components/u-swipe-action-item/wxs.js +15 -0
  187. package/components/u-swiper/props.js +125 -0
  188. package/components/u-swiper/u-swiper.vue +255 -0
  189. package/components/u-swiper-indicator/props.js +29 -0
  190. package/components/u-swiper-indicator/u-swiper-indicator.vue +110 -0
  191. package/components/u-switch/props.js +54 -0
  192. package/components/u-switch/u-switch.vue +177 -0
  193. package/components/u-tabbar/props.js +44 -0
  194. package/components/u-tabbar/u-tabbar.vue +141 -0
  195. package/components/u-tabbar-item/props.js +35 -0
  196. package/components/u-tabbar-item/u-tabbar-item.vue +142 -0
  197. package/components/u-table/props.js +5 -0
  198. package/components/u-table/u-table.vue +29 -0
  199. package/components/u-tabs/props.js +64 -0
  200. package/components/u-tabs/u-tabs.vue +354 -0
  201. package/components/u-tabs-item/props.js +5 -0
  202. package/components/u-tabs-item/u-tabs-item.vue +29 -0
  203. package/components/u-tag/props.js +84 -0
  204. package/components/u-tag/u-tag.vue +358 -0
  205. package/components/u-td/props.js +5 -0
  206. package/components/u-td/u-td.vue +31 -0
  207. package/components/u-text/props.js +110 -0
  208. package/components/u-text/u-text.vue +223 -0
  209. package/components/u-text/value.js +85 -0
  210. package/components/u-textarea/props.js +119 -0
  211. package/components/u-textarea/u-textarea.vue +239 -0
  212. package/components/u-toast/u-toast.vue +291 -0
  213. package/components/u-toolbar/props.js +34 -0
  214. package/components/u-toolbar/u-toolbar.vue +102 -0
  215. package/components/u-tooltip/props.js +59 -0
  216. package/components/u-tooltip/u-tooltip.vue +366 -0
  217. package/components/u-tr/props.js +5 -0
  218. package/components/u-tr/u-tr.vue +31 -0
  219. package/components/u-transition/nvue.ani-map.js +68 -0
  220. package/components/u-transition/props.js +24 -0
  221. package/components/u-transition/transition.js +157 -0
  222. package/components/u-transition/u-transition.vue +92 -0
  223. package/components/u-transition/vue.ani-style.scss +113 -0
  224. package/components/u-upload/mixin.js +21 -0
  225. package/components/u-upload/props.js +124 -0
  226. package/components/u-upload/u-upload.vue +558 -0
  227. package/components/u-upload/utils.js +151 -0
  228. package/components/uview-plus/uview-plus.vue +15 -0
  229. package/index.js +77 -0
  230. package/index.scss +23 -0
  231. package/libs/config/color.js +17 -0
  232. package/libs/config/config.js +34 -0
  233. package/libs/config/props/actionSheet.js +25 -0
  234. package/libs/config/props/album.js +25 -0
  235. package/libs/config/props/alert.js +22 -0
  236. package/libs/config/props/avatar.js +28 -0
  237. package/libs/config/props/avatarGroup.js +23 -0
  238. package/libs/config/props/backtop.js +27 -0
  239. package/libs/config/props/badge.js +27 -0
  240. package/libs/config/props/button.js +42 -0
  241. package/libs/config/props/calendar.js +42 -0
  242. package/libs/config/props/carKeyboard.js +15 -0
  243. package/libs/config/props/cell.js +35 -0
  244. package/libs/config/props/cellGroup.js +17 -0
  245. package/libs/config/props/checkbox.js +27 -0
  246. package/libs/config/props/checkboxGroup.js +29 -0
  247. package/libs/config/props/circleProgress.js +15 -0
  248. package/libs/config/props/code.js +21 -0
  249. package/libs/config/props/codeInput.js +29 -0
  250. package/libs/config/props/col.js +19 -0
  251. package/libs/config/props/collapse.js +17 -0
  252. package/libs/config/props/collapseItem.js +25 -0
  253. package/libs/config/props/columnNotice.js +24 -0
  254. package/libs/config/props/countDown.js +18 -0
  255. package/libs/config/props/countTo.js +25 -0
  256. package/libs/config/props/datetimePicker.js +36 -0
  257. package/libs/config/props/divider.js +23 -0
  258. package/libs/config/props/empty.js +26 -0
  259. package/libs/config/props/form.js +22 -0
  260. package/libs/config/props/formItem.js +22 -0
  261. package/libs/config/props/gap.js +19 -0
  262. package/libs/config/props/grid.js +17 -0
  263. package/libs/config/props/gridItem.js +16 -0
  264. package/libs/config/props/icon.js +36 -0
  265. package/libs/config/props/image.js +30 -0
  266. package/libs/config/props/indexAnchor.js +19 -0
  267. package/libs/config/props/indexList.js +19 -0
  268. package/libs/config/props/input.js +48 -0
  269. package/libs/config/props/keyboard.js +30 -0
  270. package/libs/config/props/line.js +20 -0
  271. package/libs/config/props/lineProgress.js +19 -0
  272. package/libs/config/props/link.js +26 -0
  273. package/libs/config/props/list.js +28 -0
  274. package/libs/config/props/listItem.js +15 -0
  275. package/libs/config/props/loadingIcon.js +30 -0
  276. package/libs/config/props/loadingPage.js +23 -0
  277. package/libs/config/props/loadmore.js +32 -0
  278. package/libs/config/props/modal.js +30 -0
  279. package/libs/config/props/navbar.js +32 -0
  280. package/libs/config/props/noNetwork.js +18 -0
  281. package/libs/config/props/noticeBar.js +27 -0
  282. package/libs/config/props/notify.js +22 -0
  283. package/libs/config/props/numberBox.js +35 -0
  284. package/libs/config/props/numberKeyboard.js +17 -0
  285. package/libs/config/props/overlay.js +18 -0
  286. package/libs/config/props/parse.js +22 -0
  287. package/libs/config/props/picker.js +29 -0
  288. package/libs/config/props/popup.js +29 -0
  289. package/libs/config/props/radio.js +27 -0
  290. package/libs/config/props/radioGroup.js +30 -0
  291. package/libs/config/props/rate.js +26 -0
  292. package/libs/config/props/readMore.js +22 -0
  293. package/libs/config/props/row.js +17 -0
  294. package/libs/config/props/rowNotice.js +21 -0
  295. package/libs/config/props/scrollList.js +20 -0
  296. package/libs/config/props/search.js +37 -0
  297. package/libs/config/props/section.js +24 -0
  298. package/libs/config/props/skeleton.js +25 -0
  299. package/libs/config/props/slider.js +25 -0
  300. package/libs/config/props/statusBar.js +15 -0
  301. package/libs/config/props/steps.js +21 -0
  302. package/libs/config/props/stepsItem.js +18 -0
  303. package/libs/config/props/sticky.js +20 -0
  304. package/libs/config/props/subsection.js +23 -0
  305. package/libs/config/props/swipeAction.js +15 -0
  306. package/libs/config/props/swipeActionItem.js +21 -0
  307. package/libs/config/props/swiper.js +39 -0
  308. package/libs/config/props/swipterIndicator.js +19 -0
  309. package/libs/config/props/switch.js +24 -0
  310. package/libs/config/props/tabbar.js +22 -0
  311. package/libs/config/props/tabbarItem.js +20 -0
  312. package/libs/config/props/tabs.js +32 -0
  313. package/libs/config/props/tag.js +29 -0
  314. package/libs/config/props/text.js +38 -0
  315. package/libs/config/props/textarea.js +36 -0
  316. package/libs/config/props/toast.js +30 -0
  317. package/libs/config/props/toolbar.js +21 -0
  318. package/libs/config/props/tooltip.js +25 -0
  319. package/libs/config/props/transition.js +18 -0
  320. package/libs/config/props/upload.js +36 -0
  321. package/libs/config/props.js +190 -0
  322. package/libs/config/zIndex.js +20 -0
  323. package/libs/css/color.scss +155 -0
  324. package/libs/css/common.scss +97 -0
  325. package/libs/css/components.scss +15 -0
  326. package/libs/css/flex.scss +257 -0
  327. package/libs/css/h5.scss +0 -0
  328. package/libs/css/mixin.scss +8 -0
  329. package/libs/css/mp.scss +0 -0
  330. package/libs/css/nvue.scss +0 -0
  331. package/libs/css/vue.scss +27 -0
  332. package/libs/function/colorGradient.js +134 -0
  333. package/libs/function/debounce.js +29 -0
  334. package/libs/function/digit.js +167 -0
  335. package/libs/function/index.js +708 -0
  336. package/libs/function/platform.js +75 -0
  337. package/libs/function/test.js +288 -0
  338. package/libs/function/throttle.js +30 -0
  339. package/libs/luch-request/adapters/index.js +97 -0
  340. package/libs/luch-request/core/InterceptorManager.js +50 -0
  341. package/libs/luch-request/core/Request.js +198 -0
  342. package/libs/luch-request/core/buildFullPath.js +20 -0
  343. package/libs/luch-request/core/defaults.js +29 -0
  344. package/libs/luch-request/core/dispatchRequest.js +3 -0
  345. package/libs/luch-request/core/mergeConfig.js +103 -0
  346. package/libs/luch-request/core/settle.js +16 -0
  347. package/libs/luch-request/helpers/buildURL.js +69 -0
  348. package/libs/luch-request/helpers/combineURLs.js +14 -0
  349. package/libs/luch-request/helpers/isAbsoluteURL.js +14 -0
  350. package/libs/luch-request/index.d.ts +116 -0
  351. package/libs/luch-request/index.js +3 -0
  352. package/libs/luch-request/utils/clone.js +264 -0
  353. package/libs/luch-request/utils.js +131 -0
  354. package/libs/mixin/button.js +13 -0
  355. package/libs/mixin/mixin.js +160 -0
  356. package/libs/mixin/mpMixin.js +8 -0
  357. package/libs/mixin/mpShare.js +13 -0
  358. package/libs/mixin/openType.js +25 -0
  359. package/libs/mixin/style.js +228 -0
  360. package/libs/mixin/touch.js +59 -0
  361. package/libs/util/async-validator.js +1343 -0
  362. package/libs/util/calendar.js +546 -0
  363. package/libs/util/emitter.js +51 -0
  364. package/libs/util/route.js +124 -0
  365. package/package.json +91 -0
  366. package/theme.scss +44 -0
@@ -0,0 +1,580 @@
1
+ <template>
2
+ <view class="u-calendar-month-wrapper" ref="u-calendar-month-wrapper">
3
+ <view v-for="(item, index) in months" :key="index" :class="[`u-calendar-month-${index}`]"
4
+ :ref="`u-calendar-month-${index}`" :id="`month-${index}`">
5
+ <text v-if="index !== 0" class="u-calendar-month__title">{{ item.year }}年{{ item.month }}月</text>
6
+ <view class="u-calendar-month__days">
7
+ <view v-if="showMark" class="u-calendar-month__days__month-mark-wrapper">
8
+ <text class="u-calendar-month__days__month-mark-wrapper__text">{{ item.month }}</text>
9
+ </view>
10
+ <view class="u-calendar-month__days__day" v-for="(item1, index1) in item.date" :key="index1"
11
+ :style="[dayStyle(index, index1, item1)]" @tap="clickHandler(index, index1, item1)"
12
+ :class="[item1.selected && 'u-calendar-month__days__day__select--selected']">
13
+ <view class="u-calendar-month__days__day__select" :style="[daySelectStyle(index, index1, item1)]">
14
+ <text class="u-calendar-month__days__day__select__info"
15
+ :class="[item1.disabled && 'u-calendar-month__days__day__select__info--disabled']"
16
+ :style="[textStyle(item1)]">{{ item1.day }}</text>
17
+ <text v-if="getBottomInfo(index, index1, item1)"
18
+ class="u-calendar-month__days__day__select__buttom-info"
19
+ :class="[item1.disabled && 'u-calendar-month__days__day__select__buttom-info--disabled']"
20
+ :style="[textStyle(item1)]">{{ getBottomInfo(index, index1, item1) }}</text>
21
+ <text v-if="item1.dot" class="u-calendar-month__days__day__select__dot"></text>
22
+ </view>
23
+ </view>
24
+ </view>
25
+ </view>
26
+ </view>
27
+ </template>
28
+
29
+ <script>
30
+ // #ifdef APP-NVUE
31
+ // 由于nvue不支持百分比单位,需要查询宽度来计算每个日期的宽度
32
+ const dom = uni.requireNativePlugin('dom')
33
+ // #endif
34
+ // import dayjs from '../../libs/util/dayjs.js';
35
+ import dayjs from 'dayjs'
36
+ export default {
37
+ name: 'u-calendar-month',
38
+ mixins: [uni.$u.mpMixin, uni.$u.mixin],
39
+ props: {
40
+ // 是否显示月份背景色
41
+ showMark: {
42
+ type: Boolean,
43
+ default: true
44
+ },
45
+ // 主题色,对底部按钮和选中日期有效
46
+ color: {
47
+ type: String,
48
+ default: '#3c9cff'
49
+ },
50
+ // 月份数据
51
+ months: {
52
+ type: Array,
53
+ default: () => []
54
+ },
55
+ // 日期选择类型
56
+ mode: {
57
+ type: String,
58
+ default: 'single'
59
+ },
60
+ // 日期行高
61
+ rowHeight: {
62
+ type: [String, Number],
63
+ default: 58
64
+ },
65
+ // mode=multiple时,最多可选多少个日期
66
+ maxCount: {
67
+ type: [String, Number],
68
+ default: Infinity
69
+ },
70
+ // mode=range时,第一个日期底部的提示文字
71
+ startText: {
72
+ type: String,
73
+ default: '开始'
74
+ },
75
+ // mode=range时,最后一个日期底部的提示文字
76
+ endText: {
77
+ type: String,
78
+ default: '结束'
79
+ },
80
+ // 默认选中的日期,mode为multiple或range是必须为数组格式
81
+ defaultDate: {
82
+ type: [Array, String, Date],
83
+ default: null
84
+ },
85
+ // 最小的可选日期
86
+ minDate: {
87
+ type: [String, Number],
88
+ default: 0
89
+ },
90
+ // 最大可选日期
91
+ maxDate: {
92
+ type: [String, Number],
93
+ default: 0
94
+ },
95
+ // 如果没有设置maxDate,则往后推多少个月
96
+ maxMonth: {
97
+ type: [String, Number],
98
+ default: 2
99
+ },
100
+ // 是否为只读状态,只读状态下禁止选择日期
101
+ readonly: {
102
+ type: Boolean,
103
+ default: uni.$u.props.calendar.readonly
104
+ },
105
+ // 日期区间最多可选天数,默认无限制,mode = range时有效
106
+ maxRange: {
107
+ type: [Number, String],
108
+ default: Infinity
109
+ },
110
+ // 范围选择超过最多可选天数时的提示文案,mode = range时有效
111
+ rangePrompt: {
112
+ type: String,
113
+ default: ''
114
+ },
115
+ // 范围选择超过最多可选天数时,是否展示提示文案,mode = range时有效
116
+ showRangePrompt: {
117
+ type: Boolean,
118
+ default: true
119
+ },
120
+ // 是否允许日期范围的起止时间为同一天,mode = range时有效
121
+ allowSameDay: {
122
+ type: Boolean,
123
+ default: false
124
+ }
125
+ },
126
+ data() {
127
+ return {
128
+ // 每个日期的宽度
129
+ width: 0,
130
+ // 当前选中的日期item
131
+ item: {},
132
+ selected: []
133
+ }
134
+ },
135
+ watch: {
136
+ selectedChange: {
137
+ immediate: true,
138
+ handler(n) {
139
+ this.setDefaultDate()
140
+ }
141
+ }
142
+ },
143
+ computed: {
144
+ // 多个条件的变化,会引起选中日期的变化,这里统一管理监听
145
+ selectedChange() {
146
+ return [this.minDate, this.maxDate, this.defaultDate]
147
+ },
148
+ dayStyle(index1, index2, item) {
149
+ return (index1, index2, item) => {
150
+ const style = {}
151
+ let week = item.week
152
+ // 不进行四舍五入的形式保留2位小数
153
+ const dayWidth = Number(parseFloat(this.width / 7).toFixed(3).slice(0, -1))
154
+ // 得出每个日期的宽度
155
+ // #ifdef APP-NVUE
156
+ style.width = uni.$u.addUnit(dayWidth)
157
+ // #endif
158
+ style.height = uni.$u.addUnit(this.rowHeight)
159
+ if (index2 === 0) {
160
+ // 获取当前为星期几,如果为0,则为星期天,减一为每月第一天时,需要向左偏移的item个数
161
+ week = (week === 0 ? 7 : week) - 1
162
+ style.marginLeft = uni.$u.addUnit(week * dayWidth)
163
+ }
164
+ if (this.mode === 'range') {
165
+ // 之所以需要这么写,是因为DCloud公司的iOS客户端的开发者能力有限导致的bug
166
+ style.paddingLeft = 0
167
+ style.paddingRight = 0
168
+ style.paddingBottom = 0
169
+ style.paddingTop = 0
170
+ }
171
+ return style
172
+ }
173
+ },
174
+ daySelectStyle() {
175
+ return (index1, index2, item) => {
176
+ let date = dayjs(item.date).format("YYYY-MM-DD"),
177
+ style = {}
178
+ // 判断date是否在selected数组中,因为月份可能会需要补0,所以使用dateSame判断,而不用数组的includes判断
179
+ if (this.selected.some(item => this.dateSame(item, date))) {
180
+ style.backgroundColor = this.color
181
+ }
182
+ if (this.mode === 'single') {
183
+ if (date === this.selected[0]) {
184
+ // 因为需要对nvue的兼容,只能这么写,无法缩写,也无法通过类名控制等等
185
+ style.borderTopLeftRadius = '3px'
186
+ style.borderBottomLeftRadius = '3px'
187
+ style.borderTopRightRadius = '3px'
188
+ style.borderBottomRightRadius = '3px'
189
+ }
190
+ } else if (this.mode === 'range') {
191
+ if (this.selected.length >= 2) {
192
+ const len = this.selected.length - 1
193
+ // 第一个日期设置左上角和左下角的圆角
194
+ if (this.dateSame(date, this.selected[0])) {
195
+ style.borderTopLeftRadius = '3px'
196
+ style.borderBottomLeftRadius = '3px'
197
+ }
198
+ // 最后一个日期设置右上角和右下角的圆角
199
+ if (this.dateSame(date, this.selected[len])) {
200
+ style.borderTopRightRadius = '3px'
201
+ style.borderBottomRightRadius = '3px'
202
+ }
203
+ // 处于第一和最后一个之间的日期,背景色设置为浅色,通过将对应颜色进行等分,再取其尾部的颜色值
204
+ if (dayjs(date).isAfter(dayjs(this.selected[0])) && dayjs(date).isBefore(dayjs(this
205
+ .selected[len]))) {
206
+ style.backgroundColor = uni.$u.colorGradient(this.color, '#ffffff', 100)[90]
207
+ // 增加一个透明度,让范围区间的背景色也能看到底部的mark水印字符
208
+ style.opacity = 0.7
209
+ }
210
+ } else if (this.selected.length === 1) {
211
+ // 之所以需要这么写,是因为DCloud公司的iOS客户端的开发者能力有限导致的bug
212
+ // 进行还原操作,否则在nvue的iOS,uni-app有bug,会导致诡异的表现
213
+ style.borderTopLeftRadius = '3px'
214
+ style.borderBottomLeftRadius = '3px'
215
+ }
216
+ } else {
217
+ if (this.selected.some(item => this.dateSame(item, date))) {
218
+ style.borderTopLeftRadius = '3px'
219
+ style.borderBottomLeftRadius = '3px'
220
+ style.borderTopRightRadius = '3px'
221
+ style.borderBottomRightRadius = '3px'
222
+ }
223
+ }
224
+ return style
225
+ }
226
+ },
227
+ // 某个日期是否被选中
228
+ textStyle() {
229
+ return (item) => {
230
+ const date = dayjs(item.date).format("YYYY-MM-DD"),
231
+ style = {}
232
+ // 选中的日期,提示文字设置白色
233
+ if (this.selected.some(item => this.dateSame(item, date))) {
234
+ style.color = '#ffffff'
235
+ }
236
+ if (this.mode === 'range') {
237
+ const len = this.selected.length - 1
238
+ // 如果是范围选择模式,第一个和最后一个之间的日期,文字颜色设置为高亮的主题色
239
+ if (dayjs(date).isAfter(dayjs(this.selected[0])) && dayjs(date).isBefore(dayjs(this
240
+ .selected[len]))) {
241
+ style.color = this.color
242
+ }
243
+ }
244
+ return style
245
+ }
246
+ },
247
+ // 获取底部的提示文字
248
+ getBottomInfo() {
249
+ return (index1, index2, item) => {
250
+ const date = dayjs(item.date).format("YYYY-MM-DD")
251
+ const bottomInfo = item.bottomInfo
252
+ // 当为日期范围模式时,且选择的日期个数大于0时
253
+ if (this.mode === 'range' && this.selected.length > 0) {
254
+ if (this.selected.length === 1) {
255
+ // 选择了一个日期时,如果当前日期为数组中的第一个日期,则显示底部文字为“开始”
256
+ if (this.dateSame(date, this.selected[0])) return this.startText
257
+ else return bottomInfo
258
+ } else {
259
+ const len = this.selected.length - 1
260
+ // 如果数组中的日期大于2个时,第一个和最后一个显示为开始和结束日期
261
+ if (this.dateSame(date, this.selected[0]) && this.dateSame(date, this.selected[1]) &&
262
+ len === 1) {
263
+ // 如果长度为2,且第一个等于第二个日期,则提示语放在同一个item中
264
+ return `${this.startText}/${this.endText}`
265
+ } else if (this.dateSame(date, this.selected[0])) {
266
+ return this.startText
267
+ } else if (this.dateSame(date, this.selected[len])) {
268
+ return this.endText
269
+ } else {
270
+ return bottomInfo
271
+ }
272
+ }
273
+ } else {
274
+ return bottomInfo
275
+ }
276
+ }
277
+ }
278
+ },
279
+ mounted() {
280
+ this.init()
281
+ },
282
+ methods: {
283
+ init() {
284
+ // 初始化默认选中
285
+ this.$emit('monthSelected', this.selected)
286
+ this.$nextTick(() => {
287
+ // 这里需要另一个延时,因为获取宽度后,会进行月份数据渲染,只有渲染完成之后,才有真正的高度
288
+ // 因为nvue下,$nextTick并不是100%可靠的
289
+ uni.$u.sleep(10).then(() => {
290
+ this.getWrapperWidth()
291
+ this.getMonthRect()
292
+ })
293
+ })
294
+ },
295
+ // 判断两个日期是否相等
296
+ dateSame(date1, date2) {
297
+ return dayjs(date1).isSame(dayjs(date2))
298
+ },
299
+ // 获取月份数据区域的宽度,因为nvue不支持百分比,所以无法通过css设置每个日期item的宽度
300
+ getWrapperWidth() {
301
+ // #ifdef APP-NVUE
302
+ dom.getComponentRect(this.$refs['u-calendar-month-wrapper'], res => {
303
+ this.width = res.size.width
304
+ })
305
+ // #endif
306
+ // #ifndef APP-NVUE
307
+ this.$uGetRect('.u-calendar-month-wrapper').then(size => {
308
+ this.width = size.width
309
+ })
310
+ // #endif
311
+ },
312
+ getMonthRect() {
313
+ // 获取每个月份数据的尺寸,用于父组件在scroll-view滚动事件中,监听当前滚动到了第几个月份
314
+ const promiseAllArr = this.months.map((item, index) => this.getMonthRectByPromise(
315
+ `u-calendar-month-${index}`))
316
+ // 一次性返回
317
+ Promise.all(promiseAllArr).then(
318
+ sizes => {
319
+ let height = 1
320
+ const topArr = []
321
+ for (let i = 0; i < this.months.length; i++) {
322
+ // 添加到months数组中,供scroll-view滚动事件中,判断当前滚动到哪个月份
323
+ topArr[i] = height
324
+ height += sizes[i].height
325
+ }
326
+ // 由于微信下,无法通过this.months[i].top的形式(引用类型)去修改父组件的month的top值,所以使用事件形式对外发出
327
+ this.$emit('updateMonthTop', topArr)
328
+ })
329
+ },
330
+ // 获取每个月份区域的尺寸
331
+ getMonthRectByPromise(el) {
332
+ // #ifndef APP-NVUE
333
+ // $uGetRect为uView自带的节点查询简化方法,详见文档介绍:https://www.uviewui.com/js/getRect.html
334
+ // 组件内部一般用this.$uGetRect,对外的为uni.$u.getRect,二者功能一致,名称不同
335
+ return new Promise(resolve => {
336
+ this.$uGetRect(`.${el}`).then(size => {
337
+ resolve(size)
338
+ })
339
+ })
340
+ // #endif
341
+
342
+ // #ifdef APP-NVUE
343
+ // nvue下,使用dom模块查询元素高度
344
+ // 返回一个promise,让调用此方法的主体能使用then回调
345
+ return new Promise(resolve => {
346
+ dom.getComponentRect(this.$refs[el][0], res => {
347
+ resolve(res.size)
348
+ })
349
+ })
350
+ // #endif
351
+ },
352
+ // 点击某一个日期
353
+ clickHandler(index1, index2, item) {
354
+ if (this.readonly) {
355
+ return;
356
+ }
357
+ this.item = item
358
+ const date = dayjs(item.date).format("YYYY-MM-DD")
359
+ if (item.disabled) return
360
+ // 对上一次选择的日期数组进行深度克隆
361
+ let selected = uni.$u.deepClone(this.selected)
362
+ if (this.mode === 'single') {
363
+ // 单选情况下,让数组中的元素为当前点击的日期
364
+ selected = [date]
365
+ } else if (this.mode === 'multiple') {
366
+ if (selected.some(item => this.dateSame(item, date))) {
367
+ // 如果点击的日期已在数组中,则进行移除操作,也就是达到反选的效果
368
+ const itemIndex = selected.findIndex(item => item === date)
369
+ selected.splice(itemIndex, 1)
370
+ } else {
371
+ // 如果点击的日期不在数组中,且已有的长度小于总可选长度时,则添加到数组中去
372
+ if (selected.length < this.maxCount) selected.push(date)
373
+ }
374
+ } else {
375
+ // 选择区间形式
376
+ if (selected.length === 0 || selected.length >= 2) {
377
+ // 如果原来就为0或者大于2的长度,则当前点击的日期,就是开始日期
378
+ selected = [date]
379
+ } else if (selected.length === 1) {
380
+ // 如果已经选择了开始日期
381
+ const existsDate = selected[0]
382
+ // 如果当前选择的日期小于上一次选择的日期,则当前的日期定为开始日期
383
+ if (dayjs(date).isBefore(existsDate)) {
384
+ selected = [date]
385
+ } else if (dayjs(date).isAfter(existsDate)) {
386
+ // 当前日期减去最大可选的日期天数,如果大于起始时间,则进行提示
387
+ if(dayjs(dayjs(date).subtract(this.maxRange, 'day')).isAfter(dayjs(selected[0])) && this.showRangePrompt) {
388
+ if(this.rangePrompt) {
389
+ uni.$u.toast(this.rangePrompt)
390
+ } else {
391
+ uni.$u.toast(`选择天数不能超过 ${this.maxRange} 天`)
392
+ }
393
+ return
394
+ }
395
+ // 如果当前日期大于已有日期,将当前的添加到数组尾部
396
+ selected.push(date)
397
+ const startDate = selected[0]
398
+ const endDate = selected[1]
399
+ const arr = []
400
+ let i = 0
401
+ do {
402
+ // 将开始和结束日期之间的日期添加到数组中
403
+ arr.push(dayjs(startDate).add(i, 'day').format("YYYY-MM-DD"))
404
+ i++
405
+ // 累加的日期小于结束日期时,继续下一次的循环
406
+ } while (dayjs(startDate).add(i, 'day').isBefore(dayjs(endDate)))
407
+ // 为了一次性修改数组,避免computed中多次触发,这里才用arr变量一次性赋值的方式,同时将最后一个日期添加近来
408
+ arr.push(endDate)
409
+ selected = arr
410
+ } else {
411
+ // 选择区间时,只有一个日期的情况下,且不允许选择起止为同一天的话,不允许选择自己
412
+ if (selected[0] === date && !this.allowSameDay) return
413
+ selected.push(date)
414
+ }
415
+ }
416
+ }
417
+ this.setSelected(selected)
418
+ },
419
+ // 设置默认日期
420
+ setDefaultDate() {
421
+ if (!this.defaultDate) {
422
+ // 如果没有设置默认日期,则将当天日期设置为默认选中的日期
423
+ const selected = [dayjs().format("YYYY-MM-DD")]
424
+ return this.setSelected(selected, false)
425
+ }
426
+ let defaultDate = []
427
+ const minDate = this.minDate || dayjs().format("YYYY-MM-DD")
428
+ const maxDate = this.maxDate || dayjs(minDate).add(this.maxMonth - 1, 'month').format("YYYY-MM-DD")
429
+ if (this.mode === 'single') {
430
+ // 单选模式,可以是字符串或数组,Date对象等
431
+ if (!uni.$u.test.array(this.defaultDate)) {
432
+ defaultDate = [dayjs(this.defaultDate).format("YYYY-MM-DD")]
433
+ } else {
434
+ defaultDate = [this.defaultDate[0]]
435
+ }
436
+ } else {
437
+ // 如果为非数组,则不执行
438
+ if (!uni.$u.test.array(this.defaultDate)) return
439
+ defaultDate = this.defaultDate
440
+ }
441
+ // 过滤用户传递的默认数组,取出只在可允许最大值与最小值之间的元素
442
+ defaultDate = defaultDate.filter(item => {
443
+ return dayjs(item).isAfter(dayjs(minDate).subtract(1, 'day')) && dayjs(item).isBefore(dayjs(
444
+ maxDate).add(1, 'day'))
445
+ })
446
+ this.setSelected(defaultDate, false)
447
+ },
448
+ setSelected(selected, event = true) {
449
+ this.selected = selected
450
+ event && this.$emit('monthSelected', this.selected)
451
+ }
452
+ }
453
+ }
454
+ </script>
455
+
456
+ <style lang="scss" scoped>
457
+ @import "../../libs/css/components.scss";
458
+
459
+ .u-calendar-month-wrapper {
460
+ margin-top: 4px;
461
+ }
462
+
463
+ .u-calendar-month {
464
+
465
+ &__title {
466
+ font-size: 14px;
467
+ line-height: 42px;
468
+ height: 42px;
469
+ color: $u-main-color;
470
+ text-align: center;
471
+ font-weight: bold;
472
+ }
473
+
474
+ &__days {
475
+ position: relative;
476
+ @include flex;
477
+ flex-wrap: wrap;
478
+
479
+ &__month-mark-wrapper {
480
+ position: absolute;
481
+ top: 0;
482
+ bottom: 0;
483
+ left: 0;
484
+ right: 0;
485
+ @include flex;
486
+ justify-content: center;
487
+ align-items: center;
488
+
489
+ &__text {
490
+ font-size: 155px;
491
+ color: rgba(231, 232, 234, 0.83);
492
+ }
493
+ }
494
+
495
+ &__day {
496
+ @include flex;
497
+ padding: 2px;
498
+ /* #ifndef APP-NVUE */
499
+ // vue下使用css进行宽度计算,因为某些安卓机会无法进行js获取父元素宽度进行计算得出,会有偏移
500
+ width: calc(100% / 7);
501
+ box-sizing: border-box;
502
+ /* #endif */
503
+
504
+ &__select {
505
+ flex: 1;
506
+ @include flex;
507
+ align-items: center;
508
+ justify-content: center;
509
+ position: relative;
510
+
511
+ &__dot {
512
+ width: 7px;
513
+ height: 7px;
514
+ border-radius: 100px;
515
+ background-color: $u-error;
516
+ position: absolute;
517
+ top: 12px;
518
+ right: 7px;
519
+ }
520
+
521
+ &__buttom-info {
522
+ color: $u-content-color;
523
+ text-align: center;
524
+ position: absolute;
525
+ bottom: 5px;
526
+ font-size: 10px;
527
+ text-align: center;
528
+ left: 0;
529
+ right: 0;
530
+
531
+ &--selected {
532
+ color: #ffffff;
533
+ }
534
+
535
+ &--disabled {
536
+ color: #cacbcd;
537
+ }
538
+ }
539
+
540
+ &__info {
541
+ text-align: center;
542
+ font-size: 16px;
543
+
544
+ &--selected {
545
+ color: #ffffff;
546
+ }
547
+
548
+ &--disabled {
549
+ color: #cacbcd;
550
+ }
551
+ }
552
+
553
+ &--selected {
554
+ background-color: $u-primary;
555
+ @include flex;
556
+ justify-content: center;
557
+ align-items: center;
558
+ flex: 1;
559
+ border-radius: 3px;
560
+ }
561
+
562
+ &--range-selected {
563
+ opacity: 0.3;
564
+ border-radius: 0;
565
+ }
566
+
567
+ &--range-start-selected {
568
+ border-top-right-radius: 0;
569
+ border-bottom-right-radius: 0;
570
+ }
571
+
572
+ &--range-end-selected {
573
+ border-top-left-radius: 0;
574
+ border-bottom-left-radius: 0;
575
+ }
576
+ }
577
+ }
578
+ }
579
+ }
580
+ </style>