珠宝小程序前端代码
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.

34 lines
594 B

2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
  1. <template>
  2. <view class="calendars">
  3. <uv-calendars ref="calendars" mode="range" @confirm="confirm" color="#E3441A" confirmColor="#E3441A" />
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. name: "Calendars",
  9. data() {
  10. return {
  11. date: ['2023-08-26', '2023-08-29']
  12. }
  13. },
  14. methods: {
  15. //打开日历
  16. open() {
  17. this.$refs.calendars.open();
  18. },
  19. //用户选择了日期信息
  20. confirm(e) {
  21. this.$emit("select", e)
  22. }
  23. }
  24. }
  25. </script>
  26. <style lang="scss" scoped>
  27. .calendars {
  28. &::v-deep .uv-calendar__header {
  29. border-bottom: none !important;
  30. }
  31. }
  32. </style>