Explorar o código

feat:颜色修改

ljc hai 1 mes
pai
achega
52b438d71e

+ 1 - 2
pages/login/index.vue

@@ -1284,11 +1284,10 @@ button {
   .uni-easyinput__content,
   //.cwg-combox,
   .uni-date-editor--x {
-    padding: 0.5rem 0;
+    padding: 0.5rem px2rpx(10);
     height: 3rem!important;
     //border: none !important;
     border-radius: px2rpx(8);
-    background-color: transparent !important;
 
   }
   .cwg-combox{

+ 1 - 1
pages/mine/components/BankInfoTab.vue

@@ -437,7 +437,7 @@
     }
   })
   // 状态
-  const updateUrl = config.Host80
+  const updateUrl = config.Host05
   const editingId = ref(null)
   const bankList = ref([])
   const isZh = computed(() => ['cn', 'zh', 'zhHant'].includes(locale.value))

+ 11 - 3
uni_modules/uni-easyinput/components/uni-easyinput/uni-easyinput.vue

@@ -681,12 +681,20 @@ $uni-border-1: #dcdfe6 !default;
 }
 
 .is-disabled {
-	background-color: transparent !important;
-	color: var(--bs-body-color);
+	background-color: #f5f7fa !important;
+	color: #c0c4cc;
+  cursor: not-allowed;
+  .uni-input-wrapper,uni-input-input{
+    cursor: not-allowed;
+  }
 
 	.uni-easyinput__placeholder-class {
-		color: var(--bs-body-color);
+		color: #c0c4cc;
 		font-size: 1rem;
+    cursor: not-allowed;
 	}
+  input:disabled{
+    cursor: not-allowed;
+  }
 }
 </style>