yyzx.open.js 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. /**
  2. * 作者:王成
  3. * 创建日期:2021年11月22日
  4. * 操作系统:MAC
  5. * 描述:应用中心打开各项应用的方法集合
  6. */
  7. /**
  8. * 打开待处理案件页面
  9. */
  10. function openWaitCheckCasePage(){
  11. createAndOpenPage({
  12. htmlPath:'task-waitcheck.html',
  13. title:'待处理案件',
  14. autoback:true,
  15. });
  16. }
  17. /**
  18. * 打开待复飞案件页面
  19. */
  20. function openWaitRepeatCasePage(){
  21. createAndOpenPage({
  22. htmlPath:'task-waitrepeat.html',
  23. title:'待复飞案件',
  24. autoback:true,
  25. });
  26. }
  27. /**
  28. * 打开待审核案件页面
  29. */
  30. function openWaitVerifyCasePage(){
  31. createAndOpenPage({
  32. htmlPath:'task-waitverify.html',
  33. title:'待审核案件',
  34. autoback:true,
  35. });
  36. }
  37. /**
  38. * 打开已结案案件页面
  39. */
  40. function openCaseClosePage(){
  41. createAndOpenPage({
  42. htmlPath:'task-close.html',
  43. title:'已结案案件',
  44. autoback:true,
  45. });
  46. }
  47. /**
  48. * 打开案件派发页面
  49. */
  50. function openWaitAssignCasePage(){
  51. createAndOpenPage({
  52. htmlPath:'task-waitassign.html',
  53. title:'案件派发',
  54. autoback:true,
  55. });
  56. }
  57. /**
  58. * 打开案件撤派页面
  59. */
  60. function openUndoAssignCasePage(){
  61. createAndOpenPage({
  62. htmlPath:'task-undoassign.html',
  63. title:'案件撤销派发',
  64. autoback:true,
  65. });
  66. }
  67. /**
  68. * 打开案件督办页面
  69. */
  70. function openSupperCasePage(){
  71. showBuildTips();
  72. }
  73. /**
  74. * 打开统计排名页面
  75. */
  76. function openCountAndRankingPage(){
  77. createAndOpenPage({
  78. htmlPath:'page-khpm.html',
  79. title:'案件统计分析',
  80. autoback:true,
  81. });
  82. }
  83. /**
  84. * 打开报告专题页面
  85. */
  86. function openReportThematicPage(){
  87. showBuildTips();
  88. }
  89. /**
  90. * 打开视频监控页面
  91. */
  92. function openVideoMonitorPage(){
  93. showBuildTips();
  94. }
  95. /**
  96. * 打开规划编制页面
  97. */
  98. function OpenPlanningPreparationPage(){
  99. showBuildTips();
  100. }
  101. /**
  102. * 打开淹没分析页面
  103. */
  104. function OpenInundationAnalysisPage(){
  105. showBuildTips();
  106. }
  107. /**
  108. * 打开光照分析页面
  109. */
  110. function OpenLightAnalysisPage(){
  111. showBuildTips();
  112. }
  113. /**
  114. * 打开路径分析页面
  115. */
  116. function OpenPathAnalysisPage(){
  117. showBuildTips();
  118. }
  119. /**
  120. * 打开控高分析页面
  121. */
  122. function OpenHeihtcontrolAnalysisPage(){
  123. showBuildTips();
  124. }
  125. /**
  126. * 打开规划比选页面
  127. */
  128. function OpenPlanningComparisonAndSelectionPage(){
  129. showBuildTips();
  130. }
  131. /**
  132. * 打开用地趋势分析页面
  133. */
  134. function OpenLandUseTrendAnalysisPage(){
  135. showBuildTips();
  136. }
  137. /**
  138. * 打开征收方案页面
  139. */
  140. function OpenExpropriationSchemePage(){
  141. showBuildTips();
  142. }
  143. /**
  144. * 打开征地调查页面
  145. */
  146. function OpenLandAcquisitionSurveyPage(){
  147. showBuildTips();
  148. }
  149. /**
  150. * 打开征地报批页面
  151. */
  152. function OpenLandRequisitionApprovalPage(){
  153. showBuildTips();
  154. }
  155. /**
  156. * 打开征地公告页面
  157. */
  158. function OpenLandAcquisitionAnnouncementPage(){
  159. showBuildTips();
  160. }
  161. /**
  162. * 打开补偿登记页面
  163. */
  164. function OpenCompensationRegistrationPage(){
  165. showBuildTips();
  166. }
  167. /**
  168. * 打开补偿安置页面
  169. */
  170. function OpenCompensationAndResettlementPage(){
  171. showBuildTips();
  172. }
  173. /**
  174. * 打开清理征收页面
  175. */
  176. function OpenLandClearOrCollectionPage(){
  177. showBuildTips();
  178. }
  179. /**
  180. * 打开供地公告页面
  181. */
  182. function OpenLandSupplyAnnouncementPage(){
  183. showBuildTips();
  184. }
  185. /**
  186. * 打开供应审查页面
  187. */
  188. function OpenSupplyReviewPage(){
  189. showBuildTips();
  190. }
  191. /**
  192. * 打开供后监测页面
  193. */
  194. function OpenPostSupplyMonitoringPage(){
  195. showBuildTips();
  196. }
  197. /**
  198. * 打开存量监管页面
  199. */
  200. function OpenStockSupervisionPage(){
  201. showBuildTips();
  202. }
  203. /**
  204. * 弹出正在建设的提示信息
  205. */
  206. function showBuildTips(){
  207. muiAlert('建设中...','提示');
  208. }