[Technical Tutorial] How to change the title of the video alarm intelligent analysis platform page of the national standard GB28181 cascade protocol?

For some users, after integrating the TSINGSEE Qingxi Video Cloud Edge Platform into their own projects, the trademark information about us will be erased. At present, in the EasyGBS video platform of our cloud side platform, the login title and the top name after successful login have been customized to modify ( Can EasyGBS modify the login page title and bottom label information ).

85.png

However, after the modification of the title of the link address of the EasyGBS page is completed, the page refresh will still display EasyGBS first, and then change to the modified specified content, so this detail still needs us to further process.

21.png

Generally, the title of the html page is only in the title tag of the html, here are generally constants, this conflicts with our function, so delete the title tag here.

<!DOCTYPE HTML>
<html style="height:100%;">
    <head>
        <title>页面title</title>
        <meta charset="utf-8"/>
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
        <meta name="renderer" content="webkit"/>
        <meta name="force-rendering" content="webkit"/>
        <meta name="format-detection" content="telephone=no">
        <meta content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no" name="viewport"/>
        <script src="js/jquery-2.2.4.js"></script>
    </head>
    <bod>
        <div id="app"></div>
    </body>
</html>

After removing the title tag of html, the title value of the page defaults to the page url path. When we configure the specified content, it will change from the url to the specified content. The url does not contain specific indicative information or commercial logo, etc., which will be more user-friendly.

22.png

Therefore, if there are users who want to have customized needs to be realized, please contact us to understand. At the same time, EasyGBS supports trial. Although customization requirements cannot be achieved during the trial period, you can freely call the secondary development interface we provide for development. Welcome to test.

Guess you like

Origin blog.csdn.net/Black_3717/article/details/111353342