-
+
+
+
未上传
@@ -60,6 +60,7 @@ const popupTitle = computed(() => {
const formData = reactive({
id: '',
fitness_img: '',
+ license_img: '',
cert_img: '',
remark: '',
status: ''
diff --git a/src/views/teamaster_user/teamaster_cert/index.vue b/src/views/teamaster_user/teamaster_cert/index.vue
index 4085074..c691a97 100644
--- a/src/views/teamaster_user/teamaster_cert/index.vue
+++ b/src/views/teamaster_user/teamaster_cert/index.vue
@@ -45,11 +45,11 @@
—
-
+
-
-
+
+
—
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')