Commit d5b2a85c by 施宇

1

parent 6656efcd
...@@ -550,7 +550,7 @@ body { ...@@ -550,7 +550,7 @@ body {
display: none; display: none;
} }
} }
.layui-icon { .layui-icon-refresh {
display: none !important; display: none !important;
} }
@font-face { @font-face {
......
...@@ -684,7 +684,7 @@ body { ...@@ -684,7 +684,7 @@ body {
display: none; display: none;
} }
} }
.layui-icon{ .layui-icon-refresh{
display: none !important; display: none !important;
} }
......
// $(function () {
// var indexSearch = {
// init: function () {
// this.bindFun();
// $('.search_sp').click();
// },
// getData: function (type) {
// var url = type==1?apis.goodsSearch:apis.inquirySearch;
// IcController.getData(url, 'GET', {
// "offset": 8,
// "p": 1,
// }, function (res) {
// var getTpl = "";
// if(type == 1){
// getTpl = sphtml.innerHTML
// }else{
// getTpl = xjhtml.innerHTML
// }
// if (res.errcode == 0) {
// $('.nav_title').find('span').text(res.total);
// var list = [];
// if(type == 1){
// list = res.goods_list
// }else{
// list = res.inquiry_list
// }
// layui.laytpl(getTpl).render(list, function (html) {
// $(".search_data_list").html(html);
// });
// } else if (res.errcode == 105001) {
// $('.nav_title').find('span').text(0)
// layui.laytpl(getTpl).render([], function (html) {
// $(".search_data_list").html(html);
// });
// }
// })
// },
// bindFun:function(){
// var self = this;
// $('.search_nav li').on('click',function(){
// var index = $(this).index();
// $(this).addClass('active').siblings().removeClass('active');
// $(".search_data_list").empty();
// $('.nav_title').find('span').text(0)
// if(index == 0){//商品
// self.getData(1)
// }else{//询价
// self.getData(2)
// }
// })
// }
// };
// indexSearch.init();
// })
$(function () { $(function () {
var indexSearch = { var indexSearch = {
key: Util.getRequest('key') || "", key: Util.getRequest('key') || "",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment