mcalendar.vue 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <template>
  2. <view>
  3. <view class="mcalendar">
  4. <view class="con">
  5. <text class="icon">&#xe621;</text>
  6. <input placeholder="选择日期范围" :value="param.data" class="date" :disabled="true" @click="show = true" />
  7. <text class="icon del" @click="clear()" v-if="param.data">&#xe61a;</text>
  8. <text class="label" @click="today()">今天</text>
  9. </view>
  10. </view>
  11. <u-calendar :show="show" mode="range" :minDate="minDate" @confirm="confirm" @close="show = false" :closeOnClickOverlay="true"></u-calendar>
  12. </view>
  13. </template>
  14. <script>
  15. export default {
  16. name: 'mcalendar',
  17. props: {
  18. value: {
  19. type: Boolean,
  20. default: false
  21. }
  22. },
  23. data() {
  24. return {
  25. show: false,
  26. minDate: this.util.getDate('lm'),
  27. param: {}
  28. };
  29. },
  30. watch: {
  31. value(newValue) {
  32. this.show = newValue;
  33. }
  34. },
  35. methods: {
  36. confirm(e) {
  37. this.$emit('input', false);
  38. this.param.dateBegin = e[0];
  39. this.param.dateEnd = e[1];
  40. this.param.data = e[0] + ' - ' + e[1];
  41. this.show = false;
  42. this.$emit('confirm', e);
  43. },
  44. today() {
  45. this.param.dateBegin = this.util.getDate('day');
  46. this.param.dateEnd = this.util.getDate('day');
  47. this.param.data = this.util.getDate('day') + ' - ' + this.util.getDate('day');
  48. this.$forceUpdate();
  49. this.$emit('today', [this.util.getDate('day'), this.util.getDate('day')]);
  50. },
  51. clear() {
  52. this.param.dateBegin = '';
  53. this.param.dateEnd = '';
  54. this.param.data = '';
  55. this.$forceUpdate();
  56. this.$emit('clear');
  57. }
  58. }
  59. };
  60. </script>
  61. <style lang="scss">
  62. .mcalendar {
  63. padding: 10px 10px 0px 10px;
  64. .con {
  65. padding: 10px 15px 10px 15px;
  66. background-color: white;
  67. border-radius: 20px;
  68. color: $font-c;
  69. overflow: hidden;
  70. .icon {
  71. padding-right: 10px;
  72. float: left;
  73. margin-top: 2px;
  74. }
  75. .del {
  76. padding-left: 9px;
  77. }
  78. .date {
  79. float: left;
  80. width: 60%;
  81. }
  82. .label {
  83. float: right;
  84. color: $main-color;
  85. padding-right: 5px;
  86. }
  87. }
  88. }
  89. </style>