|
@@ -229,9 +229,9 @@ const TalentManagement: React.FC<TalentManagementProps> = () => {
|
|
|
onInput={handleSearchChange}
|
|
onInput={handleSearchChange}
|
|
|
/>
|
|
/>
|
|
|
</View>
|
|
</View>
|
|
|
- <ScrollView className="flex space-x-2 pb-2" scrollX enableFlex>
|
|
|
|
|
|
|
+ <View className="flex space-x-2 overflow-x-auto pb-2">
|
|
|
{statusTags.map((status) => (
|
|
{statusTags.map((status) => (
|
|
|
- <View
|
|
|
|
|
|
|
+ <Text
|
|
|
key={status}
|
|
key={status}
|
|
|
className={`text-xs px-3 py-1 rounded-full whitespace-nowrap ${
|
|
className={`text-xs px-3 py-1 rounded-full whitespace-nowrap ${
|
|
|
activeStatus === status
|
|
activeStatus === status
|
|
@@ -241,12 +241,12 @@ const TalentManagement: React.FC<TalentManagementProps> = () => {
|
|
|
onClick={() => handleStatusClick(status)}
|
|
onClick={() => handleStatusClick(status)}
|
|
|
>
|
|
>
|
|
|
{status}
|
|
{status}
|
|
|
- </View>
|
|
|
|
|
|
|
+ </Text>
|
|
|
))}
|
|
))}
|
|
|
- </ScrollView>
|
|
|
|
|
- <ScrollView className="flex space-x-2 mt-2" scrollX enableFlex>
|
|
|
|
|
|
|
+ </View>
|
|
|
|
|
+ <View className="flex space-x-2 overflow-x-auto mt-2">
|
|
|
{disabilityTypeTags.map((type) => (
|
|
{disabilityTypeTags.map((type) => (
|
|
|
- <View
|
|
|
|
|
|
|
+ <Text
|
|
|
key={type}
|
|
key={type}
|
|
|
className={`text-xs px-3 py-1 rounded-full whitespace-nowrap ${
|
|
className={`text-xs px-3 py-1 rounded-full whitespace-nowrap ${
|
|
|
activeDisabilityType === type
|
|
activeDisabilityType === type
|
|
@@ -256,9 +256,9 @@ const TalentManagement: React.FC<TalentManagementProps> = () => {
|
|
|
onClick={() => handleDisabilityTypeClick(type)}
|
|
onClick={() => handleDisabilityTypeClick(type)}
|
|
|
>
|
|
>
|
|
|
{type}
|
|
{type}
|
|
|
- </View>
|
|
|
|
|
|
|
+ </Text>
|
|
|
))}
|
|
))}
|
|
|
- </ScrollView>
|
|
|
|
|
|
|
+ </View>
|
|
|
</View>
|
|
</View>
|
|
|
|
|
|
|
|
{/* 人才列表区域 - 对照原型第451-560行 */}
|
|
{/* 人才列表区域 - 对照原型第451-560行 */}
|