tt0101 1 dienu atpakaļ
vecāks
revīzija
e180748edc
2 mainītis faili ar 7 papildinājumiem un 28 dzēšanām
  1. 1 2
      src/views/UserCenter.vue
  2. 6 26
      src/views/shdizhi.vue

+ 1 - 2
src/views/UserCenter.vue

@@ -130,8 +130,7 @@ export default {
 <style scoped>
 .vh100 {
   min-height: 100vh;
-  background: url('../assets/dabag.png') no-repeat ;
-  background-size: 100% 100%;
+  background:#c94545;
 }
 
 .nav-bar {

+ 6 - 26
src/views/shdizhi.vue

@@ -53,18 +53,15 @@
             maxlength="200"
           ></textarea>
         </div>
-
-        <!-- 保存按钮 -->
-        <div class="button-wrapper">
+      </div>
+      <div class="button-wrapper">
           <button 
             class="save-btn"
             @click="saveAddress"
-            :disabled="!isFormValid"
           >
             保存地址
           </button>
         </div>
-      </div>
     </div>
 
     <!-- Toast 提示 -->
@@ -380,34 +377,17 @@ export default {
 
 .save-btn {
   width: 100%;
-  background: #c94545;
-  color: white;
+  background: #ffc5b9;
+  color: red;
   border: none;
-  border-radius: 25px;
-  padding: 15px 0;
+  border-radius: 8px;
+  padding: 8px 0;
   font-size: 16px;
   font-weight: 600;
   cursor: pointer;
-  transition: all 0.3s ease;
-  box-shadow: 0 4px 12px rgba(201, 69, 69, 0.3);
 }
 
-.save-btn:hover {
-  background: #b43a39;
-  transform: translateY(-1px);
-  box-shadow: 0 6px 16px rgba(201, 69, 69, 0.4);
-}
-
-.save-btn:active {
-  transform: translateY(0);
-}
 
-.save-btn:disabled {
-  background: #ccc;
-  cursor: not-allowed;
-  transform: none;
-  box-shadow: none;
-}
 
 /* 响应式优化 */
 @media screen and (max-width: 375px) {