From e60a986baea78af885304346587332c5fd607aa9 Mon Sep 17 00:00:00 2001 From: wangxiaowei <1121133807@qq.com> Date: Wed, 22 Apr 2026 14:11:42 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E5=96=84=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/tea_store/index.vue | 8 ++++---- .../teamaster_user/teamaster_cert/edit.vue | 9 +++++---- .../teamaster_user/teamaster_cert/index.vue | 8 ++++---- src/views/withdraw/parten_reflect/edit.vue | 2 +- src/views/withdraw/parten_reflect/index.vue | 19 ++++++++++++++++++- 5 files changed, 32 insertions(+), 14 deletions(-) diff --git a/src/views/tea_store/index.vue b/src/views/tea_store/index.vue index 50a3db6..d8beee5 100644 --- a/src/views/tea_store/index.vue +++ b/src/views/tea_store/index.vue @@ -65,12 +65,12 @@ - + - + diff --git a/src/views/withdraw/parten_reflect/edit.vue b/src/views/withdraw/parten_reflect/edit.vue index 6408231..1cd9c49 100644 --- a/src/views/withdraw/parten_reflect/edit.vue +++ b/src/views/withdraw/parten_reflect/edit.vue @@ -9,7 +9,7 @@ - + diff --git a/src/views/withdraw/parten_reflect/index.vue b/src/views/withdraw/parten_reflect/index.vue index 69cd600..e6bd309 100644 --- a/src/views/withdraw/parten_reflect/index.vue +++ b/src/views/withdraw/parten_reflect/index.vue @@ -27,7 +27,11 @@ - +
+ 注:提现时间为每月2号 +
+ + @@ -103,6 +107,14 @@ const queryParams = reactive({ status: '' }) +// 计算属性:是否为提现日(1号或16号) +const isWithdrawDay = computed(() => { + const today = new Date() + const day = today.getDate() + return day === 2 +}) + + // 选中数据 const selectData = ref([]) @@ -122,6 +134,11 @@ const { pager, getLists, resetParams, resetPage } = usePaging({ // 添加 const handleAdd = async () => { + if (!isWithdrawDay.value) { + feedback.msgError('未到提现日期') + return + } + showEdit.value = true await nextTick() editRef.value?.open('add')