|
@@ -0,0 +1,40 @@
|
|
|
+function entityctrlGenPage() {
|
|
|
+ var page = '<div id="entityctrl_page">\
|
|
|
+ <div id="entityctrl_tip" align="center" style="display: block;">\
|
|
|
+ <div class="color_descroption_gray"\
|
|
|
+ style="width:auto;margin-top:200px;font-size:18px;line-height:120%;">\
|
|
|
+ <span>相关功能正在开发中,敬请期待!</span>\
|
|
|
+ </div>\
|
|
|
+ </div>\
|
|
|
+ </div>';
|
|
|
+
|
|
|
+ $("#rightpagearea").prepend(page);
|
|
|
+ if (typeof entityctrlRenderPage == "function") {
|
|
|
+ beforeRenderPage("entityctrl");
|
|
|
+ entityctrlRenderPage();
|
|
|
+ afterRenderPage("entityctrl");
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+var entityctrlController = (function() {
|
|
|
+
|
|
|
+ function initPage() {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ var fistTime = true;
|
|
|
+
|
|
|
+ function init() {
|
|
|
+
|
|
|
+ if (fistTime) {
|
|
|
+ fistTime = false;
|
|
|
+ }
|
|
|
+ initPage();
|
|
|
+ }
|
|
|
+
|
|
|
+ return { init: init };
|
|
|
+}());
|
|
|
+
|
|
|
+window.entityctrlRenderPage = function () {
|
|
|
+ entityctrlController.init();
|
|
|
+};
|