|
|
@@ -6,6 +6,7 @@ import { Image, View } from "@tarojs/components";
|
|
|
import ImageUtil from "@/utils/imgUtils";
|
|
|
import AppContext from "@/context/appContext";
|
|
|
import Label from "@/component/label";
|
|
|
+import APPConfig from "@/config";
|
|
|
|
|
|
interface IAboutProps {}
|
|
|
|
|
|
@@ -23,15 +24,19 @@ const About = (props: PropsWithChildren<IAboutProps>) => {
|
|
|
<Flex style={{ height: "100vh" }}>
|
|
|
<View style={imgBackStyle}>
|
|
|
<Image
|
|
|
- className='background-image'
|
|
|
+ className="background-image"
|
|
|
src={require(`../../../assets/bg_aboutus@3x.png`)}
|
|
|
/>
|
|
|
- <Flex rowGap='sm' className='background-content'>
|
|
|
+ <Flex rowGap="sm" className="background-content">
|
|
|
<View style={{ height: 200 }} />
|
|
|
- <Flex alignItem='center' className='login-back-logo-wrap'>
|
|
|
+ <Flex alignItem="center" className="login-back-logo-wrap">
|
|
|
<Image
|
|
|
- className='login-logo'
|
|
|
- src={require("@/assets/logo.png")}
|
|
|
+ className="login-logo"
|
|
|
+ src={
|
|
|
+ APPConfig.APPID == "480"
|
|
|
+ ? require("@/assets/logo-cyr.png")
|
|
|
+ : require("@/assets/logo.png")
|
|
|
+ }
|
|
|
/>
|
|
|
</Flex>
|
|
|
</Flex>
|
|
|
@@ -42,7 +47,7 @@ const About = (props: PropsWithChildren<IAboutProps>) => {
|
|
|
marginBottom: Math.max(appContext.padding.bottom, 16),
|
|
|
textAlign: "center",
|
|
|
}}
|
|
|
- type='secondary'
|
|
|
+ type="secondary"
|
|
|
>
|
|
|
贵州梵诚融资担保有限公司
|
|
|
</Label>
|