Index: /branches/rel_apv_10_7/usr/click/webui/htdocs/new/src/hive/templates/login.html
===================================================================
--- /branches/rel_apv_10_7/usr/click/webui/htdocs/new/src/hive/templates/login.html	(revision 38544)
+++ /branches/rel_apv_10_7/usr/click/webui/htdocs/new/src/hive/templates/login.html	(working copy)
@@ -49,11 +49,12 @@
                         <div id="test_app" style="display: none;">
                             <el-button type="default" v-if="is_show_basic && !loading" @click="openDetails" style="background-color: transparent;border-color: #fff; color: #fff; cursor: pointer; padding: 6px 12px; margin-left: 10px; margin-top: 15px;">{[gettext('Learn More')]}</el-button>
                             <el-drawer
+                            v-if="is_show_basic"
                             title="{% trans %}System Information{% endtrans %}"
                             :visible.sync="drawer"
                             :direction="direction"
                             :before-close="handleClose">
-                            <el-container>
+                            <el-container v-if="is_show_basic">
                                 <el-main style="padding: 0; overflow: hidden;" >
                                     <el-row :gutter="24">
                                         <el-col :span="24" body-style="{background-color: gray;}">
@@ -170,7 +171,6 @@
                                         }
                                     },
                                     created: function () {
-                                        this.get_basic()
                                         this.get_is_show_basic();
                                     },
                                     destroyed: function () {
@@ -210,10 +210,12 @@
                                                 type: "get",
                                                 dataType: "json",
                                                 success: function (res) {
-                                                    console.log(res);
                                                     if (typeof res['is_show'] != "undefined") {
                                                         that.is_show_basic = res['is_show'] == 1 ? true : false;
                                                     }
+                                                    if (that.is_show_basic) {
+                                                        that.get_basic()
+                                                    }
                                                 }
                                             });
                                         }
