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