This commit is contained in:
2025-09-18 09:10:39 +08:00
parent 2f5bfc537c
commit b2872a5529
2 changed files with 1 additions and 3 deletions

View File

@@ -30,7 +30,6 @@ const PopupPicker = ({
const [defaultValue, setDefaultValue] = useState<(string | number)[]>([])
const [defaultOptions, setDefaultOptions] = useState<PickerOption[][]>([])
const changePicker = (options: any[], values: any, columnIndex: number) => {
debugger
if (onChange) {
console.log('picker onChange', columnIndex, values, options);

View File

@@ -231,7 +231,6 @@ const EditProfilePage: React.FC = () => {
// 处理地区选择
const handle_location_change = (e: any) => {
debugger
const [country, province, city] = e;
handle_field_edit({ country, province, city });
};