|
@@ -237,7 +237,9 @@
|
|
|
this.id = this.getQueryVariable('id')
|
|
|
console.log(this.id)
|
|
|
|
|
|
- this.backBanner = '../assets/img/solution/solution-banner' + this.getQueryVariable('solution_type') + '.jpg'
|
|
|
+ // this.backBanner = '../assets/img/solution/solution-banner' + this.getQueryVariable('solution_type') + '.jpg';
|
|
|
+ this.backBanner = '../assets/img/solution/solution-banner1.jpg'
|
|
|
+
|
|
|
},
|
|
|
mounted: function() {
|
|
|
console.log(this.solution_type)
|
|
@@ -254,6 +256,20 @@
|
|
|
}).done(function(arr) {
|
|
|
_this.array = arr;
|
|
|
}).fail(function(err) {});
|
|
|
+
|
|
|
+
|
|
|
+ $.ajax({
|
|
|
+ type: 'GET',
|
|
|
+ dataType: 'json',
|
|
|
+ url: window.FQDN2 + 'siteArticle/siteArticleList',
|
|
|
+ data: {
|
|
|
+ categoryid: this.id?this.id:182
|
|
|
+ }
|
|
|
+ }).done(function(arr) {
|
|
|
+ // _this.array = arr;
|
|
|
+ }).fail(function(err) {});
|
|
|
+
|
|
|
+
|
|
|
},
|
|
|
methods: {
|
|
|
getQueryVariable: function(variable) {
|