江西小程序管理端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

365 lines
13 KiB

1 year ago
  1. <template>
  2. <view class="">
  3. <u-picker-my
  4. ref="picker"
  5. :show="show"
  6. :closeOnClickOverlay="closeOnClickOverlay"
  7. :columns="columns"
  8. :title="title"
  9. :itemHeight="itemHeight"
  10. :showToolbar="showToolbar"
  11. :visibleItemCount="visibleItemCount"
  12. :defaultIndex="innerDefaultIndex"
  13. :cancelText="cancelText"
  14. :confirmText="confirmText"
  15. :cancelColor="cancelColor"
  16. :confirmColor="confirmColor"
  17. @close="close"
  18. @cancel="cancel"
  19. @change="change"
  20. >
  21. </u-picker-my>
  22. <view class="btnBg" @click="confirm">确定</view>
  23. </view>
  24. </template>
  25. <script>
  26. function times(n, iteratee) {
  27. let index = -1
  28. const result = Array(n < 0 ? 0 : n)
  29. while (++index < n) {
  30. result[index] = iteratee(index)
  31. }
  32. return result
  33. }
  34. import props from './props.js';
  35. import dayjs from '../../libs/util/dayjs.js';
  36. /**
  37. * DatetimePicker 时间日期选择器
  38. * @description 此选择器用于时间日期
  39. * @tutorial https://www.uviewui.com/components/datetimePicker.html
  40. * @property {Boolean} show 用于控制选择器的弹出与收起 ( 默认 false )
  41. * @property {Boolean} showToolbar 是否显示顶部的操作栏 ( 默认 true )
  42. * @property {String | Number} value 绑定值
  43. * @property {String} title 顶部标题
  44. * @property {String} mode 展示格式 mode=date为日期选择mode=time为时间选择mode=year-month为年月选择mode=datetime为日期时间选择 ( 默认 datetime )
  45. * @property {Number} maxDate 可选的最大时间 默认值为后10年
  46. * @property {Number} minDate 可选的最小时间 默认值为前10年
  47. * @property {Number} minHour 可选的最小小时仅mode=time有效 ( 默认 0 )
  48. * @property {Number} maxHour 可选的最大小时仅mode=time有效 ( 默认 23 )
  49. * @property {Number} minMinute 可选的最小分钟仅mode=time有效 ( 默认 0 )
  50. * @property {Number} maxMinute 可选的最大分钟仅mode=time有效 ( 默认 59 )
  51. * @property {Function} filter 选项过滤函数
  52. * @property {Function} formatter 选项格式化函数
  53. * @property {Boolean} loading 是否显示加载中状态 ( 默认 false )
  54. * @property {String | Number} itemHeight 各列中单个选项的高度 ( 默认 44 )
  55. * @property {String} cancelText 取消按钮的文字 ( 默认 '取消' )
  56. * @property {String} confirmText 确认按钮的文字 ( 默认 '确认' )
  57. * @property {String} cancelColor 取消按钮的颜色 ( 默认 '#909193' )
  58. * @property {String} confirmColor 确认按钮的颜色 ( 默认 '#3c9cff' )
  59. * @property {String | Number} visibleItemCount 每列中可见选项的数量 ( 默认 5 )
  60. * @property {Boolean} closeOnClickOverlay 是否允许点击遮罩关闭选择器 ( 默认 false )
  61. * @property {Array} defaultIndex 各列的默认索引
  62. * @event {Function} close 关闭选择器时触发
  63. * @event {Function} confirm 点击确定按钮返回当前选择的值
  64. * @event {Function} change 当选择值变化时触发
  65. * @event {Function} cancel 点击取消按钮
  66. * @example <u-datetime-picker :show="show" :value="value1" mode="datetime" ></u-datetime-picker>
  67. */
  68. export default {
  69. name: 'datetime-picker',
  70. mixins: [uni.$u.mpMixin, uni.$u.mixin, props],
  71. data() {
  72. return {
  73. columns: [],
  74. innerDefaultIndex: [],
  75. innerFormatter: (type, value) => value
  76. }
  77. },
  78. watch: {
  79. show(newValue, oldValue) {
  80. if (newValue) {
  81. this.updateColumnValue(this.innerValue)
  82. }
  83. },
  84. propsChange() {
  85. this.init()
  86. }
  87. },
  88. computed: {
  89. // 如果以下这些变量发生了变化,意味着需要重新初始化各列的值
  90. propsChange() {
  91. return [this.mode, this.maxDate, this.minDate, this.minHour, this.maxHour, this.minMinute, this.maxMinute, this.filter, ]
  92. }
  93. },
  94. mounted() {
  95. this.init()
  96. },
  97. methods: {
  98. init() {
  99. this.innerValue = this.correctValue(this.value)
  100. this.updateColumnValue(this.innerValue)
  101. },
  102. // 在微信小程序中,不支持将函数当做props参数,故只能通过ref形式调用
  103. setFormatter(e) {
  104. this.innerFormatter = e
  105. },
  106. // 关闭选择器
  107. close() {
  108. if (this.closeOnClickOverlay) {
  109. this.$emit('close')
  110. }
  111. },
  112. // 点击工具栏的取消按钮
  113. cancel() {
  114. this.$emit('cancel')
  115. },
  116. // 点击工具栏的确定按钮
  117. confirm() {
  118. this.$emit('confirm', {
  119. value: this.innerValue,
  120. mode: this.mode
  121. })
  122. console.log(this.innerValue)
  123. this.$emit('input', this.innerValue)
  124. },
  125. //用正则截取输出值,当出现多组数字时,抛出错误
  126. intercept(e,type){
  127. let judge = e.match(/\d+/g)
  128. //判断是否掺杂数字
  129. if(judge.length>1){
  130. uni.$u.error("请勿在过滤或格式化函数时添加数字")
  131. return 0
  132. }else if(type&&judge[0].length==4){//判断是否是年份
  133. return judge[0]
  134. }else if(judge[0].length>2){
  135. uni.$u.error("请勿在过滤或格式化函数时添加数字")
  136. return 0
  137. }else{
  138. return judge[0]
  139. }
  140. },
  141. // 列发生变化时触发
  142. change(e) {
  143. const { indexs, values } = e
  144. let selectValue = ''
  145. if(this.mode === 'time') {
  146. // 根据value各列索引,从各列数组中,取出当前时间的选中值
  147. selectValue = `${this.intercept(values[0][indexs[0]])}:${this.intercept(values[1][indexs[1]])}`
  148. } else {
  149. // 将选择的值转为数值,比如'03'转为数值的3,'2019'转为数值的2019
  150. const year = parseInt(this.intercept(values[0][indexs[0]],'year'))
  151. const month = parseInt(this.intercept(values[1][indexs[1]]))
  152. let date = parseInt(values[2] ? this.intercept(values[2][indexs[2]]) : 1)
  153. let hour = 0, minute = 0
  154. // 此月份的最大天数
  155. const maxDate = dayjs(`${year}-${month}`).daysInMonth()
  156. // year-month模式下,date不会出现在列中,设置为1,为了符合后边需要减1的需求
  157. if (this.mode === 'year-month') {
  158. date = 1
  159. }
  160. // 不允许超过maxDate值
  161. date = Math.min(maxDate, date)
  162. if (this.mode === 'datetime') {
  163. hour = parseInt(this.intercept(values[3][indexs[3]]))
  164. minute = parseInt(this.intercept(values[4][indexs[4]]))
  165. }
  166. // 转为时间模式
  167. selectValue = Number(new Date(year, month - 1, date, hour, minute))
  168. }
  169. // 取出准确的合法值,防止超越边界的情况
  170. selectValue = this.correctValue(selectValue)
  171. this.innerValue = selectValue
  172. this.updateColumnValue(selectValue)
  173. // 发出change时间,value为当前选中的时间戳
  174. this.$emit('change', {
  175. value: selectValue,
  176. // #ifndef MP-WEIXIN
  177. // 微信小程序不能传递this实例,会因为循环引用而报错
  178. picker: this.$refs.picker,
  179. // #endif
  180. mode: this.mode
  181. })
  182. },
  183. // 更新各列的值,进行补0、格式化等操作
  184. updateColumnValue(value) {
  185. this.innerValue = value
  186. this.updateColumns()
  187. this.updateIndexs(value)
  188. },
  189. // 更新索引
  190. updateIndexs(value) {
  191. let values = []
  192. const formatter = this.formatter || this.innerFormatter
  193. const padZero = uni.$u.padZero
  194. if (this.mode === 'time') {
  195. // 将time模式的时间用:分隔成数组
  196. const timeArr = value.split(':')
  197. // 使用formatter格式化方法进行管道处理
  198. values = [formatter('hour', timeArr[0]), formatter('minute', timeArr[1])]
  199. } else {
  200. const date = new Date(value)
  201. values = [
  202. formatter('year', `${dayjs(value).year()}`),
  203. // 月份补0
  204. formatter('month', padZero(dayjs(value).month() + 1))
  205. ]
  206. if (this.mode === 'date') {
  207. // date模式,需要添加天列
  208. values.push(formatter('day', padZero(dayjs(value).date())))
  209. }
  210. if (this.mode === 'datetime') {
  211. // 数组的push方法,可以写入多个参数
  212. values.push(formatter('day', padZero(dayjs(value).date())), formatter('hour', padZero(dayjs(value).hour())), formatter('minute', padZero(dayjs(value).minute())))
  213. }
  214. }
  215. // 根据当前各列的所有值,从各列默认值中找到默认值在各列中的索引
  216. const indexs = this.columns.map((column, index) => {
  217. // 通过取大值,可以保证不会出现找不到索引的-1情况
  218. return Math.max(0, column.findIndex(item => item === values[index]))
  219. })
  220. this.innerDefaultIndex = indexs
  221. },
  222. // 更新各列的值
  223. updateColumns() {
  224. const formatter = this.formatter || this.innerFormatter
  225. // 获取各列的值,并且map后,对各列的具体值进行补0操作
  226. const results = this.getOriginColumns().map((column) => column.values.map((value) => formatter(column.type, value)))
  227. this.columns = results
  228. },
  229. getOriginColumns() {
  230. // 生成各列的值
  231. const results = this.getRanges().map(({ type, range }) => {
  232. let values = times(range[1] - range[0] + 1, (index) => {
  233. let value = range[0] + index
  234. value = type === 'year' ? `${value}` : uni.$u.padZero(value)
  235. return value
  236. })
  237. // 进行过滤
  238. if (this.filter) {
  239. values = this.filter(type, values)
  240. }
  241. return { type, values }
  242. })
  243. return results
  244. },
  245. // 通过最大值和最小值生成数组
  246. generateArray(start, end) {
  247. return Array.from(new Array(end + 1).keys()).slice(start)
  248. },
  249. // 得出合法的时间
  250. correctValue(value) {
  251. const isDateMode = this.mode !== 'time'
  252. if (isDateMode && !uni.$u.test.date(value)) {
  253. // 如果是日期类型,但是又没有设置合法的当前时间的话,使用最小时间为当前时间
  254. value = this.minDate
  255. } else if (!isDateMode && !value) {
  256. // 如果是时间类型,而又没有默认值的话,就用最小时间
  257. value = `${uni.$u.padZero(this.minHour)}:${uni.$u.padZero(this.minMinute)}`
  258. }
  259. // 时间类型
  260. if (!isDateMode) {
  261. if (String(value).indexOf(':') === -1) return uni.$u.error('时间错误,请传递如12:24的格式')
  262. let [hour, minute] = value.split(':')
  263. // 对时间补零,同时控制在最小值和最大值之间
  264. hour = uni.$u.padZero(uni.$u.range(this.minHour, this.maxHour, Number(hour)))
  265. minute = uni.$u.padZero(uni.$u.range(this.minMinute, this.maxMinute, Number(minute)))
  266. return `${ hour }:${ minute }`
  267. } else {
  268. // 如果是日期格式,控制在最小日期和最大日期之间
  269. value = dayjs(value).isBefore(dayjs(this.minDate)) ? this.minDate : value
  270. value = dayjs(value).isAfter(dayjs(this.maxDate)) ? this.maxDate : value
  271. return value
  272. }
  273. },
  274. // 获取每列的最大和最小值
  275. getRanges() {
  276. if (this.mode === 'time') {
  277. return [
  278. {
  279. type: 'hour',
  280. range: [this.minHour, this.maxHour],
  281. },
  282. {
  283. type: 'minute',
  284. range: [this.minMinute, this.maxMinute],
  285. },
  286. ];
  287. }
  288. const { maxYear, maxDate, maxMonth, maxHour, maxMinute, } = this.getBoundary('max', this.innerValue);
  289. const { minYear, minDate, minMonth, minHour, minMinute, } = this.getBoundary('min', this.innerValue);
  290. const result = [
  291. {
  292. type: 'year',
  293. range: [minYear, maxYear],
  294. },
  295. {
  296. type: 'month',
  297. range: [minMonth, maxMonth],
  298. },
  299. {
  300. type: 'day',
  301. range: [minDate, maxDate],
  302. },
  303. {
  304. type: 'hour',
  305. range: [minHour, maxHour],
  306. },
  307. {
  308. type: 'minute',
  309. range: [minMinute, maxMinute],
  310. },
  311. ];
  312. if (this.mode === 'date')
  313. result.splice(3, 2);
  314. if (this.mode === 'year-month')
  315. result.splice(2, 3);
  316. return result;
  317. },
  318. // 根据minDate、maxDate、minHour、maxHour等边界值,判断各列的开始和结束边界值
  319. getBoundary(type, innerValue) {
  320. const value = new Date(innerValue)
  321. const boundary = new Date(this[`${type}Date`])
  322. const year = dayjs(boundary).year()
  323. let month = 1
  324. let date = 1
  325. let hour = 0
  326. let minute = 0
  327. if (type === 'max') {
  328. month = 12
  329. // 月份的天数
  330. date = dayjs(value).daysInMonth()
  331. hour = 23
  332. minute = 59
  333. }
  334. // 获取边界值,逻辑是:当年达到了边界值(最大或最小年),就检查月允许的最大和最小值,以此类推
  335. if (dayjs(value).year() === year) {
  336. month = dayjs(boundary).month() + 1
  337. if (dayjs(value).month() + 1 === month) {
  338. date = dayjs(boundary).date()
  339. if (dayjs(value).date() === date) {
  340. hour = dayjs(boundary).hour()
  341. if (dayjs(value).hour() === hour) {
  342. minute = dayjs(boundary).minute()
  343. }
  344. }
  345. }
  346. }
  347. return {
  348. [`${type}Year`]: year,
  349. [`${type}Month`]: month,
  350. [`${type}Date`]: date,
  351. [`${type}Hour`]: hour,
  352. [`${type}Minute`]: minute
  353. }
  354. },
  355. },
  356. }
  357. </script>
  358. <style lang="scss" scoped>
  359. @import '../../libs/css/components.scss';
  360. </style>