From c5542e9e2b2fd14633b596334b957535459ae30e Mon Sep 17 00:00:00 2001
From: lin <1005713861@163.com>
Date: Fri, 10 Jul 2026 16:17:15 +0800
Subject: [PATCH] UI:澜品优选:1.行权问题修复;2.版本更新提示
---
components/textBox/index.vue | 12 +++++++-----
1 files changed, 7 insertions(+), 5 deletions(-)
diff --git a/components/textBox/index.vue b/components/textBox/index.vue
index b988f61..ff013f2 100644
--- a/components/textBox/index.vue
+++ b/components/textBox/index.vue
@@ -259,19 +259,21 @@
:disabled="!flag || tiems > 0"
@click="loadPopup"
v-if="code"
- :custom-style="{ color: '#FF1472',border:'none' }"
+ :custom-style="{ color: (!flag || tiems > 0 )? '#666' : '#FF1472',border:'none' }"
>
确定
<text v-show="tiems">({{ tiems }}S)</text>
</uv-button>
<uv-button
-
- :disabled="tiems > 0 || !reachBottom "
+ :disabled="tiems > 0 || !reachBottom"
@click="loadPopup"
v-if="getPlatformProtocolNewList.length"
- :custom-style="{ color: '#FF1472',border:'none' }"
+ :custom-style="{
+ color: (tiems > 0 || !reachBottom) ? '#666' : '#FF1472',
+ border: 'none'
+ }"
>
- {{ flag || getPlatformProtocolNewList.length === ing + 1 ? '确定' : '下一步' }}
+ {{ flag || getPlatformProtocolNewList.length === ing + 1 ? '确定' : '下一步' }}
<text v-show="tiems">({{ tiems }}S)</text>
</uv-button>
</view>
--
Gitblit v1.9.3