| 12345678910111213 |
- import { SysAppPageList } from '../../service/base';;
- import { common } from '../../utils';
- export const useGetSysAppPageList = async () => {
- const app = getApp();
- const resp = await SysAppPageList({
- sysAppCode: app.globalData.appId,
- });
- if (resp) {
- const map = common.turnToMap(resp);
- app.globalData.pageMessageList = map;
- }
- };
|