小程序微信后台和代理后台使用同一个域名
This commit is contained in:
@@ -18,7 +18,7 @@
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container pt15">
|
||||
<div id="app" class="container pt15">
|
||||
<div class="panel-group" id="accordion">
|
||||
|
||||
|
||||
@@ -35,13 +35,11 @@
|
||||
|
||||
<div class="list-group">
|
||||
|
||||
<a href="https://dlapi.daoqijuyou77.cn/web2/agent_list.html?agentid=all&show=1" class="list-group-item">用户后台</a>
|
||||
<a href="https://dlapi.daoqijuyou77.cn/web2/agent_list_admin.html?agentid=all" class="list-group-item">
|
||||
<a :href="dlapiBase+'/web2/agent_list.html?agentid=all&show=1'" class="list-group-item">用户后台</a>
|
||||
<a :href="dlapiBase+'/web2/agent_list_admin.html?agentid=all'" class="list-group-item">
|
||||
结算后台__电脑端(全国)
|
||||
</a>
|
||||
<!-- ts已修改2021 -->
|
||||
<!-- <a href="https://operate.daoqijuyou77.cn/login.html" class="list-group-item">运营后台</a> -->
|
||||
<a href="https://operate.daoqijuyou77.cn/login.html" class="list-group-item">运营后台</a>
|
||||
<a :href="operateUrl+'/login.html'" class="list-group-item">运营后台</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -58,11 +56,11 @@
|
||||
</div>
|
||||
<div id="collapseTwo" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingTwo">
|
||||
<div class="list-group">
|
||||
<a href="https://proxytest.daoqijuyou77.cn/web2/agent_list.html?agentid=all&show=1" class="list-group-item">用户后台</a>
|
||||
<a href="https://proxytest.daoqijuyou77.cn/web2/agent_list_admin.html?agentid=all" class="list-group-item">
|
||||
<a :href="proxyUrl+'/web2/agent_list.html?agentid=all&show=1'" class="list-group-item">用户后台</a>
|
||||
<a :href="proxyUrl+'/web2/agent_list_admin.html?agentid=all'" class="list-group-item">
|
||||
结算后台__电脑端
|
||||
</a>
|
||||
<a href="https://proxytest.daoqijuyou77.cn/operating/login.html" class="list-group-item">运营后台</a>
|
||||
<a :href="proxyUrl+'/operating/login.html'" class="list-group-item">运营后台</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -94,6 +92,19 @@
|
||||
|
||||
<script src="./libs/jquery.min.js?__HTML_VERSION__=3"></script>
|
||||
<script src="./libs/bootstrap/bootstrap.min.js?__HTML_VERSION__=3"></script>
|
||||
<script src="./libs/vue.min.js?__HTML_VERSION__=3"></script>
|
||||
<script src="./js/env-config.js?__HTML_VERSION__=1"></script>
|
||||
<script>
|
||||
var _env = window.__ENV__ || {};
|
||||
new Vue({
|
||||
el: '#app',
|
||||
data: {
|
||||
dlapiBase: _env.DLWEB_API_BASE_URL || '',
|
||||
proxyUrl: _env.PROXY_URL || '',
|
||||
operateUrl: _env.OPERATE_URL || ''
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user