feat: update

This commit is contained in:
chashaobao
2025-10-20 07:58:50 +08:00
parent bc141fcf1b
commit a179654898
32 changed files with 648 additions and 271 deletions

View File

@ -0,0 +1,10 @@
import { useSelector } from 'react-redux';
import { selectCityOperators } from '@/store/selector';
function useCityOperators() {
const data = useSelector(selectCityOperators);
return data || [];
}
export default useCityOperators;

View File

@ -100,6 +100,7 @@ export const APP_CONFIG: AppConfigType = {
PageUrl.GroupDelegatePublish,
PageUrl.GiveVip,
PageUrl.GroupOwnerCertificate,
PageUrl.PartnerShareVip,
// PageUrl.DevDebug,
],
window: {

View File

@ -1,10 +0,0 @@
import { useSelector } from 'react-redux';
import { selectServiceUrls } from '@/store/selector';
function useServiceUrls() {
const data = useSelector(selectServiceUrls);
return data || [];
}
export default useServiceUrls;