From 3675e202a47910821a86370ae64b60d3cfe93e79 Mon Sep 17 00:00:00 2001 From: wujingjing <gersonwu@qq.com> Date: 星期四, 02 一月 2025 14:17:53 +0800 Subject: [PATCH] Merge branch 'master' of http://47.103.154.90:83/r/WI/Web.V1.0 --- src/components/chat/chatComponents/summaryCom/components/recordSet/components/TimeRange.vue | 12 ++++++++++-- 1 files changed, 10 insertions(+), 2 deletions(-) diff --git a/src/components/chat/chatComponents/summaryCom/components/recordSet/components/TimeRange.vue b/src/components/chat/chatComponents/summaryCom/components/recordSet/components/TimeRange.vue index 27543f2..ef234c6 100644 --- a/src/components/chat/chatComponents/summaryCom/components/recordSet/components/TimeRange.vue +++ b/src/components/chat/chatComponents/summaryCom/components/recordSet/components/TimeRange.vue @@ -33,8 +33,15 @@ <div class="ml-2 inline-flex items-center space-x-2 text-[14px]"> <div @click="quickPickRangeClick(parseInt(item))" - class="border border-solid rounded-md px-2 cursor-pointer" - :class="{ 'bg-[#1677ff]': parseInt(item) === quickPickValue, 'text-white': parseInt(item) === quickPickValue }" + class="border border-solid rounded-md px-2 py-1 cursor-pointer" + :class="{ + 'bg-[#1677ff]': parseInt(item) === quickPickValue, + 'text-white': parseInt(item) === quickPickValue, + 'bg-[#f5f7fa]': disabled, + 'text-[#a9acb3]': disabled, + 'border-[#dcdfe6]': disabled, + '!cursor-not-allowed': disabled, + }" v-for="item in Object.keys(timeRangeMapTitle)" :key="item" > @@ -61,6 +68,7 @@ } from '/@/components/form/datepicker/constants'; import { formatDate } from '/@/utils/formatTime'; import moment from 'moment'; +import { isSharePage } from '/@/stores/chatRoom'; const valueFormat = DEFAULT_FORMATS_DATE + ' ' + DEFAULT_FORMATS_TIME; const props = defineProps({ -- Gitblit v1.9.3