合并冲突问题
This commit is contained in:
@@ -11,10 +11,7 @@ interface RangeProps {
|
||||
onChange?: (value: [number, number]) => void;
|
||||
disabled?: boolean;
|
||||
className?: string;
|
||||
<<<<<<< HEAD
|
||||
showTitle?: boolean;
|
||||
=======
|
||||
>>>>>>> 2b7c9497c6d5b1f3edb2ddd937855570c0cc8eca
|
||||
}
|
||||
|
||||
const NtrpRange: React.FC<RangeProps> = ({
|
||||
@@ -25,10 +22,7 @@ const NtrpRange: React.FC<RangeProps> = ({
|
||||
onChange,
|
||||
disabled = false,
|
||||
className,
|
||||
<<<<<<< HEAD
|
||||
showTitle = true,
|
||||
=======
|
||||
>>>>>>> 2b7c9497c6d5b1f3edb2ddd937855570c0cc8eca
|
||||
}) => {
|
||||
const [currentValue, setCurrentValue] = useState<[number, number]>(value);
|
||||
|
||||
|
||||
@@ -6,7 +6,6 @@ import Menu from "../../components/Menu/example";
|
||||
import CityFilter from "../../components/CityFilter/example";
|
||||
import SearchBar from "../../components/SearchBar";
|
||||
import FilterPopup from "./FilterPopup";
|
||||
import "./index.scss";
|
||||
import { useEffect } from "react";
|
||||
import Taro from "@tarojs/taro";
|
||||
import {
|
||||
@@ -16,6 +15,7 @@ import {
|
||||
useTennisLastRefresh,
|
||||
useTennisActions,
|
||||
} from "../../store/listStore";
|
||||
import "./index.scss";
|
||||
|
||||
const ListPage = () => {
|
||||
// 从 store 获取数据和方法
|
||||
|
||||
@@ -6,8 +6,8 @@ import PublishForm from './publishForm'
|
||||
import { publishBallFormSchema } from '../../config/formSchema/publishBallFormSchema';
|
||||
import { PublishBallFormData } from '../../../types/publishBall';
|
||||
import PublishService from '@/services/publishService';
|
||||
import styles from './index.module.scss'
|
||||
import images from '@/config/images'
|
||||
import styles from './index.module.scss'
|
||||
|
||||
const PublishBall: React.FC = () => {
|
||||
const [activityType, setActivityType] = useState<ActivityType>('individual')
|
||||
|
||||
Reference in New Issue
Block a user