123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238 |
- /**
- * 作者:王成
- * 创建日期: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('建设中...','提示');
- }
|