diff --git a/js/http.js b/js/http.js
new file mode 100644
index 0000000..4fb8e91
--- /dev/null
+++ b/js/http.js
@@ -0,0 +1,22 @@
+// 获取咨询列表
+async function getArticleList(params) {
+ const urlParams = new URLSearchParams(params)
+ return fetch(`http://49.232.154.205/prod-api/export/article/list?${urlParams.toString()}`, {
+ method: 'GET',
+ headers: {
+ 'Content-Type': 'application/json'
+ },
+ })
+ .then(res => res.json())
+}
+
+// 获取咨询详情
+async function getArticleDetail(id) {
+ return fetch(`http://49.232.154.205/prod-api/export/article/${id}`, {
+ method: 'GET',
+ headers: {
+ 'Content-Type': 'application/json'
+ }
+ })
+ .then(res => res.json())
+}
\ No newline at end of file
diff --git a/portfolio-single.html b/portfolio-single.html
index 690458f..9730ff9 100644
--- a/portfolio-single.html
+++ b/portfolio-single.html
@@ -38,6 +38,7 @@
首页
关于我们
解决方案
+
行业资讯
成功案例
联系我们
diff --git a/portfolio.html b/portfolio.html
index 32927b6..bd1b327 100644
--- a/portfolio.html
+++ b/portfolio.html
@@ -38,6 +38,7 @@
首页
关于我们
解决方案
+
行业资讯
成功案例
联系我们
diff --git a/service.html b/service.html
index 85fff04..5dc8783 100644
--- a/service.html
+++ b/service.html
@@ -38,6 +38,7 @@
首页
关于我们
解决方案
+
行业资讯
成功案例
联系我们
@@ -64,184 +65,6 @@