Leon 1 yıl önce
ebeveyn
işleme
a40345bb16

+ 1 - 1
src/components/basic/Icons.scss

@@ -37,7 +37,7 @@
     display: flex;
     align-items: center;
     justify-content: center;
-    background-color: #ffffff66;
+    background-color: #00000066;
 }
 
 .clear_btn_bg2{

+ 2 - 2
src/components/input/Inputs.tsx

@@ -114,8 +114,8 @@ export default function Component({
             />
             {
                 inputValue.length > 0 && <View className="clear_bg" onClick={clear}>
-                    {/* <IconClear /> */}
-                    <IconClose width={20} height={20} color="#000"/>
+                    <IconClear />
+                    {/* <IconClose width={20} height={20} color="#000"/> */}
                 </View>
             }
         </View>

+ 2 - 2
src/services/http/api.js

@@ -1,9 +1,9 @@
-const online = process.env.TARO_ENV == 'weapp' ? false : false;
+const online = process.env.TARO_ENV == 'weapp' ? true : false;
 
 import { WX_VERSION as _WX_VERSION, APP_VERSION as _APP_VERSION } from "../../../config/env";
 
 // export const baseUrl = online ? 'https://api.fast.liveplus.fun' : 'https://api.fast.dev.liveplus.fun';
-export const baseUrl = online ? process.env.TARO_ENV == 'rn' ? 'https://api.app.fast.liveplus.fun' : 'https://api.pre.fast.liveplus.fun' : 'https://api.fast.dev.liveplus.fun';
+export const baseUrl = online ? process.env.TARO_ENV == 'rn' ? 'https://api.app.fast.liveplus.fun' : 'https://api.fast.liveplus.fun' : 'https://api.fast.dev.liveplus.fun';
 
 export const APP_VERSION = _APP_VERSION
 export const WX_VERSION = _WX_VERSION