Compare commits
3 Commits
2f3a171855
...
ec7ee48be8
| Author | SHA1 | Date | |
|---|---|---|---|
| ec7ee48be8 | |||
| ed58ffa3d6 | |||
| e993caaa2c |
@@ -226,7 +226,7 @@
|
||||
</div>
|
||||
<div class="nztbzyj">
|
||||
<a href="https://alidocs.dingtalk.com/notable/share/form/v013M0Oz5Xz1Xv8qzeE_vQkCkLg_cMm6AQO" target="_blank">意见反馈</a>
|
||||
<a href="https://www.orico.com.cn/index/tops_nas/helper.html" target="_blank">帮助中心</a>
|
||||
<a href="https://www.orico.com.cn/mobile/tops_nas/helper.html" target="_blank">帮助中心</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -6,9 +6,6 @@
|
||||
<title>帮助中心</title>
|
||||
{include file='include/head-nas' /}
|
||||
<style>
|
||||
[class*=' icon-'] {
|
||||
color: #000;
|
||||
}
|
||||
.narshelpCenterPc {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
@@ -319,9 +316,9 @@
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<!-- 顶部导航 -->
|
||||
{include file='include/top-header-nas'/}
|
||||
<div class="narshelpCenterPc">
|
||||
<!-- 顶部导航 -->
|
||||
{include file='include/top-header-nas'/}
|
||||
<!-- banner-搜索-->
|
||||
<div class="pagetopbg">
|
||||
<img src="__PUBLIC__/m_web/images/nas/help/banner.jpg" class="hpbgimg" />
|
||||
@@ -395,10 +392,10 @@
|
||||
{/if}
|
||||
<span class="t1">{$banners[2]['name']}</span>
|
||||
<span class="t2">{$banners[2]['desc']}</span>
|
||||
</a>
|
||||
</a>
|
||||
{/if}
|
||||
{if condition="$banners_size > 3"}
|
||||
<a href="{$banners[3]['link']}" class="nhlplxwmit nhlplxwmit-w2" target="_blank">
|
||||
<a href="{$banners[3]['link']}" class="nhlplxwmit nhlplxwmit-w2 target="_blank"">
|
||||
<img src="__PUBLIC__/m_web/images/nas/help/nhlp-lx4.png" class="lximg" />
|
||||
{if condition="!empty($banners[3]['picture']) && $banners[3]['picture'] != '/uploads/nopic.jpg'"}
|
||||
<img src="{$banners[3]['picture']}" class="lxewmimg">
|
||||
@@ -435,7 +432,7 @@
|
||||
{/if}
|
||||
<span class="t1">{$banners[6]['name']}</span>
|
||||
<span class="t2">{$banners[6]['desc']}</span>
|
||||
</a>
|
||||
</a>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
@@ -447,32 +444,32 @@
|
||||
// 监听输入框内容变化
|
||||
var timeout = null;
|
||||
$('#search-input').on('focus input', function() {
|
||||
clearTimeout(timeout);
|
||||
var _this = this;
|
||||
timeout = setTimeout(function () {
|
||||
var keywords = $(_this).val();
|
||||
if (keywords == '') {
|
||||
$('#dropdown').hide().html('');
|
||||
return;
|
||||
}
|
||||
$.ajax({
|
||||
url: "{:url('tops_nas/helper_search')}",
|
||||
type: 'POST',
|
||||
data: {keywords: keywords},
|
||||
dataType: 'JSON',
|
||||
success: function(r) {
|
||||
var html = '';
|
||||
if (r.code == 0) {
|
||||
html = '<ul>'
|
||||
$.each(r.data, function(k, v) {
|
||||
html += '<li><a href="{:url(\'tops_nas/helper_detail\')}?id=' + v.id + '">' + v.name + '</a></li>'
|
||||
})
|
||||
html += '</ul>'
|
||||
}
|
||||
$('#dropdown').show().html(html);
|
||||
}
|
||||
})
|
||||
}, 300);
|
||||
clearTimeout(timeout);
|
||||
var _this = this;
|
||||
timeout = setTimeout(function () {
|
||||
var keywords = $(_this).val();
|
||||
if (keywords == '') {
|
||||
$('#dropdown').hide().html('');
|
||||
return;
|
||||
}
|
||||
$.ajax({
|
||||
url: "{:url('tops_nas/helper_search')}",
|
||||
type: 'POST',
|
||||
data: {keywords: keywords},
|
||||
dataType: 'JSON',
|
||||
success: function(r) {
|
||||
var html = '';
|
||||
if (r.code == 0) {
|
||||
html = '<ul>'
|
||||
$.each(r.data, function(k, v) {
|
||||
html += '<li><a href="{:url(\'tops_nas/helper_detail\')}?id=' + v.id + '">' + v.name + '</a></li>'
|
||||
})
|
||||
html += '</ul>'
|
||||
}
|
||||
$('#dropdown').show().html(html);
|
||||
}
|
||||
})
|
||||
}, 300);
|
||||
})
|
||||
$(document).on('click', function (e) {
|
||||
var target = $(e.target);
|
||||
|
||||
@@ -6,9 +6,6 @@
|
||||
<title>帮助中心</title>
|
||||
{include file='include/head-nas' /}
|
||||
<style>
|
||||
[class*=' icon-'] {
|
||||
color: #000;
|
||||
}
|
||||
.narshelpdetailPc {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
@@ -170,9 +167,6 @@
|
||||
overflow-y: auto;
|
||||
position: relative;
|
||||
}
|
||||
.narshelpdetailPc .nars-help-content .nars-hlpdt-mm img{
|
||||
max-width: 100%;
|
||||
}
|
||||
/* .narshelpdetailPc .nars-help-content .nars-hlpdt-mm img{*/
|
||||
/* width: -webkit-fill-available;*/
|
||||
/*}*/
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
||||
|
||||
<title>元创官网</title>
|
||||
{include file='include/head-nas'/}
|
||||
</head>
|
||||
|
||||
@@ -147,7 +147,7 @@ class TopsNas extends BaseController
|
||||
'id',
|
||||
'pid',
|
||||
'name',
|
||||
'picture'
|
||||
'picture',
|
||||
])
|
||||
->where('isshow', '=', 1)
|
||||
->where('country_code', '=', $this->country_code)
|
||||
|
||||
@@ -11,9 +11,6 @@
|
||||
</style>
|
||||
{include file='include/head-nas'/}
|
||||
<style type="text/css">
|
||||
[class*=' icon-'] {
|
||||
color: #000;
|
||||
}
|
||||
.narsZTPC {
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
@@ -233,8 +230,8 @@
|
||||
<span>3.请遵守国家相关法律、法规,勿上传、下载和分享非法数据</span>
|
||||
</div>
|
||||
<div class="nztbzyj">
|
||||
<a href="https://alidocs.dingtalk.com/notable/share/form/v013M0Oz5Xz1Xv8qzeE_vQkCkLg_cMm6AQO" target="_blank">意见反馈</a>
|
||||
<a href="https://www.orico.com.cn/index/tops_nas/helper.html" target="_blank">帮助中心</a>
|
||||
<a href="https://alidocs.dingtalk.com/notable/share/form/v013M0Oz5Xz1Xv8qzeE_vQkCkLg_cMm6AQO">意见反馈</a>
|
||||
<a href="https://www.orico.com.cn/mobile/tops_nas/helper.html">帮助中心</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -4,11 +4,8 @@
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>元创官网</title>
|
||||
{include file='include/head-nas'/}
|
||||
{include file='include/head-nas' /}
|
||||
<style type="text/css">
|
||||
.icon-menu-svg,.icon-search-svg,.icon-lag-svg{
|
||||
color: #000 !important;
|
||||
}
|
||||
.header {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
@@ -148,7 +148,7 @@
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.narsjswdMbPage .narsjswd-mb-list .jswdmb-item .jswdmb-tags .jswdmb-tag {
|
||||
font-size: 0.75rem;
|
||||
|
||||
0
app/mobile/view/tops_nas/helper.phtml
Normal file → Executable file
0
app/mobile/view/tops_nas/helper.phtml
Normal file → Executable file
0
app/mobile/view/tops_nas/helper_detail.phtml
Normal file → Executable file
0
app/mobile/view/tops_nas/helper_detail.phtml
Normal file → Executable file
Reference in New Issue
Block a user