合并冲突

main
king 1 year ago
parent f92a737c3d
commit 2190944d21
  1. 2
      .env
  2. 2
      src/pages/home/components/feature_recommended.tsx
  3. 2
      src/pages/preview/profession/profession.tsx

@ -3,5 +3,3 @@ TARO_APP_API=https://mooc.yaojiankang.top
#TARO_APP_API=https://shopfix.yaojiankang.top #TARO_APP_API=https://shopfix.yaojiankang.top
#TARO_APP_API=https://playedu.yaojiankang.top #TARO_APP_API=https://playedu.yaojiankang.top
TARO_APP_LGOIN=true TARO_APP_LGOIN=true

@ -117,7 +117,7 @@ const FeatureRecommended: FC<Props> = (props) => {
return props.illness.map<DataContent>(d => ({ return props.illness.map<DataContent>(d => ({
id: d.id, id: d.id,
imageUrl: '', imageUrl: '',
description: d.description, description: d.description?.replace(/[^\u4e00-\u9fa5]/gi,"") ?? '暂无描述',
title: d.name, title: d.name,
path: `?id=${d.id}` path: `?id=${d.id}`
})) }))

@ -92,7 +92,7 @@ const Profession = () => {
data.data.map(d => data.data.map(d =>
<View className={styles.killBox} onClick={() => jump(d)}> <View className={styles.killBox} onClick={() => jump(d)}>
<Image src={d.url_path} mode='widthFix'/> <Image src={d.url_path} mode='widthFix'/>
<View className='text-ellipsis flex-1'>{d.resource.name}</View> <View className='text-ellipsis flex-1'>{d?.resource?.name}</View>
</View> </View>
) )
} }

Loading…
Cancel
Save