|
@@ -0,0 +1,115 @@
|
|
|
+<!DOCTYPE html>
|
|
|
+<html>
|
|
|
+<head>
|
|
|
+ <title>帮助中心</title>
|
|
|
+ <meta content="IE=edge,Chrome=1" http-equiv="X-UA-Compatible"/>
|
|
|
+ <meta content="帮助中心,热门操作指南,剑鱼标讯" name="Keywords"/>
|
|
|
+ <meta content="webkit" name="renderer">
|
|
|
+ <meta content="telephone=no" name="format-detection"/>
|
|
|
+ <meta content="帮助中心" theme="light" name="enable-header">
|
|
|
+ {{include "/common/pnc.html"}}
|
|
|
+ <link href='{{Msg "seo" "cdn"}}/css/reset.css?v={{Msg "seo" "version"}}' rel="stylesheet" type="text/css"/>
|
|
|
+ <link href='{{Msg "seo" "cdn"}}/pccss/reset_pc.css' rel="stylesheet" type="text/css"/>
|
|
|
+ <link href='{{Msg "seo" "cdn"}}/css/pc.css?v={{Msg "seo" "version"}}' rel="stylesheet"/>
|
|
|
+ <link href='{{Msg "seo" "cdn"}}/pccss/public-nav-1200.css?v={{Msg "seo" "version"}}' rel="stylesheet" type="text/css"/>
|
|
|
+ <!-- 高级语法兼容性处理 -->
|
|
|
+ <script>
|
|
|
+ if (String.prototype.startsWith === 'undefined') {
|
|
|
+ String.prototype.startsWith = function (str) {
|
|
|
+ if (str==null || str == "" || this.length == 0 || str.length > this.length) {
|
|
|
+ return false
|
|
|
+ }
|
|
|
+ if (this.substr(0,str.length) == str) {
|
|
|
+ return true
|
|
|
+ } else {
|
|
|
+ return false
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (typeof Promise === 'undefined') {
|
|
|
+ document.write('<script src="https://cdn-common.jianyu360.com/cdn/lib/bluebird/3.7.2/js/browser/bluebird.core.min.js"><\/script>');
|
|
|
+ }
|
|
|
+ if (typeof fetch === 'undefined') {
|
|
|
+ document.write('<script src="//cdn-common.jianyu360.com/cdn/lib/whatwg-fetch/3.4.1/dist/fetch.umd.min.js"><\/script>');
|
|
|
+ }
|
|
|
+ </script>
|
|
|
+ <!-- 腾讯云视频点播 -->
|
|
|
+ <script src="//imgcache.qq.com/open/qcloud/video/vcplayer/TcPlayer-2.3.2.js" charset="utf-8"></script>
|
|
|
+ <!-- 获取ip -->
|
|
|
+ <script src="https://pv.sohu.com/cityjson?ie=utf-8"></script>
|
|
|
+ <script src="https://cdn-common.jianyu360.com/cdn/lib/pdfjs-dist/2.1.266//build/pdf.min.js"></script>
|
|
|
+ <script src="https://cdn-common.jianyu360.com/cdn/lib/pdfjs-dist/2.1.266//web/pdf_viewer.js"></script>
|
|
|
+
|
|
|
+ <style>
|
|
|
+ #public-nav {
|
|
|
+ border-bottom: 1px solid #e0e0e0;
|
|
|
+ background: #fff;
|
|
|
+ }
|
|
|
+ .page--jyxspc--index .page-container {
|
|
|
+ min-height: calc(100vh - 364px);
|
|
|
+ padding-top: 64px;
|
|
|
+ box-sizing: border-box;
|
|
|
+ }
|
|
|
+ .page--jyxspc--index .w-box .w1200 {
|
|
|
+ width: 1200px;
|
|
|
+ margin: 0 auto;
|
|
|
+ min-width: 1200px;
|
|
|
+ }
|
|
|
+ </style>
|
|
|
+</head>
|
|
|
+<body class="page--jyxspc--index">
|
|
|
+{{include "/site/common/pc-help-center-head.html"}}
|
|
|
+<!-- S-注入 -->
|
|
|
+<div class="w-box page-container">
|
|
|
+ <div id="main-app"></div>
|
|
|
+</div>
|
|
|
+<!-- 主应用依赖 -->
|
|
|
+<script src=//cdn-common.jianyu360.com/cdn/lib/url-polyfill/1.1.12/url-polyfill.min.js></script>
|
|
|
+<script src=//cdn-common.jianyu360.com/cdn/lib/qiankun/2.7.0/index.umd.min.js></script>
|
|
|
+<script>
|
|
|
+ // 该页面是帮助中心热门操作指南视频详情-页面指向线上课程项目的详情路由
|
|
|
+ // 因该页面的顶部顶部导航栏、标题等与线上课程的顶部导航栏不一致,故建两个父应用页面,子应用挂载为同一个(线上课程子应用)
|
|
|
+ window.__QIANKUN_ROUTER_BASE = '/jyxspc'
|
|
|
+ qiankun.registerMicroApps(
|
|
|
+ [
|
|
|
+ {
|
|
|
+ name: 'courseSubApp',
|
|
|
+ entry: '/page_jyxspc/index.html',
|
|
|
+ container: '#main-app',
|
|
|
+ activeRule: '/',
|
|
|
+ props: {
|
|
|
+ className: window.parent !== window ? 'in-app' : 'in-web',
|
|
|
+ inject: function (options) {
|
|
|
+ options.Vue.prototype.$BRACE = window.$BRACE
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ {
|
|
|
+ beforeLoad: function (app) {
|
|
|
+ console.log('before load', app)
|
|
|
+ },
|
|
|
+ beforeMount: [
|
|
|
+ function (app) {
|
|
|
+ console.log('before mount', app)
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ )
|
|
|
+ qiankun.start({
|
|
|
+ sandbox: false
|
|
|
+ })
|
|
|
+</script>
|
|
|
+<script src='{{Msg "seo" "cdn"}}/js/jquery.cookie.js?v={{Msg "seo" "version"}}' type="text/javascript"></script>
|
|
|
+<script src='{{Msg "seo" "cdn"}}/js/public-nav.js?v={{Msg "seo" "version"}}' type="text/javascript"></script>
|
|
|
+<script>
|
|
|
+ $(function () {
|
|
|
+ haslogin({{.T.logid}});
|
|
|
+ })
|
|
|
+</script>
|
|
|
+<!--S-百度统计-->
|
|
|
+{{include "/common/pcbottom.html"}}
|
|
|
+{{include "/common/baiducc.html"}}
|
|
|
+<!--E-百度统计-->
|
|
|
+</body>
|
|
|
+</html>
|