/** * 作者:王成 * 创建日期:2021年11月22日 * 操作系统:MAC * 描述:应用中心打开各项应用的方法集合 */ /** * 打开待处理案件页面 */ function openWaitCheckCasePage(){ createAndOpenPage({ htmlPath:'task-waitcheck.html', title:'待处理案件', autoback:true, }); } /** * 打开待复飞案件页面 */ function openWaitRepeatCasePage(){ createAndOpenPage({ htmlPath:'task-waitrepeat.html', title:'待复飞案件', autoback:true, }); } /** * 打开待审核案件页面 */ function openWaitVerifyCasePage(){ createAndOpenPage({ htmlPath:'task-waitverify.html', title:'待审核案件', autoback:true, }); } /** * 打开已结案案件页面 */ function openCaseClosePage(){ createAndOpenPage({ htmlPath:'task-close.html', title:'已结案案件', autoback:true, }); } /** * 打开案件派发页面 */ function openWaitAssignCasePage(){ createAndOpenPage({ htmlPath:'task-waitassign.html', title:'案件派发', autoback:true, }); } /** * 打开案件撤派页面 */ function openUndoAssignCasePage(){ createAndOpenPage({ htmlPath:'task-undoassign.html', title:'案件撤销派发', autoback:true, }); } /** * 打开案件督办页面 */ function openSupperCasePage(){ showBuildTips(); } /** * 打开统计排名页面 */ function openCountAndRankingPage(){ createAndOpenPage({ htmlPath:'page-khpm.html', title:'案件统计分析', autoback:true, }); } /** * 打开报告专题页面 */ function openReportThematicPage(){ showBuildTips(); } /** * 打开视频监控页面 */ function openVideoMonitorPage(){ showBuildTips(); } /** * 打开规划编制页面 */ function OpenPlanningPreparationPage(){ showBuildTips(); } /** * 打开淹没分析页面 */ function OpenInundationAnalysisPage(){ showBuildTips(); } /** * 打开光照分析页面 */ function OpenLightAnalysisPage(){ showBuildTips(); } /** * 打开路径分析页面 */ function OpenPathAnalysisPage(){ showBuildTips(); } /** * 打开控高分析页面 */ function OpenHeihtcontrolAnalysisPage(){ showBuildTips(); } /** * 打开规划比选页面 */ function OpenPlanningComparisonAndSelectionPage(){ showBuildTips(); } /** * 打开用地趋势分析页面 */ function OpenLandUseTrendAnalysisPage(){ showBuildTips(); } /** * 打开征收方案页面 */ function OpenExpropriationSchemePage(){ showBuildTips(); } /** * 打开征地调查页面 */ function OpenLandAcquisitionSurveyPage(){ showBuildTips(); } /** * 打开征地报批页面 */ function OpenLandRequisitionApprovalPage(){ showBuildTips(); } /** * 打开征地公告页面 */ function OpenLandAcquisitionAnnouncementPage(){ showBuildTips(); } /** * 打开补偿登记页面 */ function OpenCompensationRegistrationPage(){ showBuildTips(); } /** * 打开补偿安置页面 */ function OpenCompensationAndResettlementPage(){ showBuildTips(); } /** * 打开清理征收页面 */ function OpenLandClearOrCollectionPage(){ showBuildTips(); } /** * 打开供地公告页面 */ function OpenLandSupplyAnnouncementPage(){ showBuildTips(); } /** * 打开供应审查页面 */ function OpenSupplyReviewPage(){ showBuildTips(); } /** * 打开供后监测页面 */ function OpenPostSupplyMonitoringPage(){ showBuildTips(); } /** * 打开存量监管页面 */ function OpenStockSupervisionPage(){ showBuildTips(); } /** * 弹出正在建设的提示信息 */ function showBuildTips(){ muiAlert('建设中...','提示'); }