|
@@ -72,18 +72,18 @@
|
|
|
<header class="header-absolute sticky-header">
|
|
|
<div class="custom-container-one">
|
|
|
<div class="header-top-area">
|
|
|
- <div class="container align-items-center">
|
|
|
- <!-- <div class="col-md-6 col-sm-7">
|
|
|
- <ul class="contact-list">
|
|
|
- <li>
|
|
|
- <a href="javascipt:void();">www.chinausky.com</a>
|
|
|
- </li>
|
|
|
- <li>
|
|
|
- <a href="javascipt:void();">400 633 8668</a>
|
|
|
- </li>
|
|
|
- </ul>
|
|
|
- </div> -->
|
|
|
- </div>
|
|
|
+ <!-- <div class="container align-items-center">
|
|
|
+ <div class="col-md-6 col-sm-7">
|
|
|
+ <ul class="contact-list">
|
|
|
+ <li>
|
|
|
+ <a href="javascipt:void();">www.chinausky.com</a>
|
|
|
+ </li>
|
|
|
+ <li>
|
|
|
+ <a href="javascipt:void();">400 633 8668</a>
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+ </div> -->
|
|
|
</div>
|
|
|
<div id="headerNav"></div>
|
|
|
<div>
|
|
@@ -120,7 +120,7 @@
|
|
|
<div class="col-lg-4 col-sm-6 software" v-for="(list,index) in getProductList" :key="index">
|
|
|
<div class="product-grid-box" @click="productDetails(list)">
|
|
|
<div class="product-img">
|
|
|
- <img :src="list.image" />
|
|
|
+ <img :src="list.htmlfilepath" />
|
|
|
</div>
|
|
|
<div class="title">
|
|
|
<span>{{list.title}}</span>
|
|
@@ -248,8 +248,13 @@
|
|
|
item: undefined
|
|
|
},
|
|
|
mounted: function() {
|
|
|
+ console.log('111111111111')
|
|
|
+ console.log(localStorage.getItem("item"))
|
|
|
+ this.getListData('', 1, 12)
|
|
|
if (JSON.stringify(JSON.parse(localStorage.getItem("item")).children) != "[]") {
|
|
|
this.banner = JSON.parse(localStorage.getItem("item")).imagePath
|
|
|
+ console.log('this.banner')
|
|
|
+ console.log(this.banner)
|
|
|
if (window.location.search) {
|
|
|
if (window.location.search.indexOf("detailId") > -1) {
|
|
|
this.detailsData(this.getString('detailId')[2])
|
|
@@ -259,8 +264,8 @@
|
|
|
}
|
|
|
} else {
|
|
|
this.getList()
|
|
|
- }
|
|
|
- }
|
|
|
+ }
|
|
|
+ }
|
|
|
},
|
|
|
methods: {
|
|
|
getString(key) {
|
|
@@ -279,6 +284,8 @@
|
|
|
_this.tabsId = id
|
|
|
let path = JSON.parse(localStorage.getItem("item")).sname
|
|
|
let data = JSON.parse(localStorage.getItem("item")).children
|
|
|
+ console.log('data')
|
|
|
+ console.log(data)
|
|
|
for (let i = 0; i < data.length; i++) {
|
|
|
if (id == data[i].id) {
|
|
|
var li = $(`
|
|
@@ -360,7 +367,7 @@
|
|
|
dataType: 'json',
|
|
|
url: window.FQDN2 + 'Product/getProductType',
|
|
|
}).done(function(res) {
|
|
|
- _this.getProductType = res
|
|
|
+ _this.getProductType = res
|
|
|
|
|
|
}).fail(function(err) {});
|
|
|
},
|