diff --git a/src/api/modules/api.js b/src/api/modules/api.js
index 577e9e6..d15cdc3 100644
--- a/src/api/modules/api.js
+++ b/src/api/modules/api.js
@@ -1174,3 +1174,11 @@ export function sensitivewordsList(data) {
params: data
})
}
+// 更新记录列表
+export function updateListApi(data) {
+ return request({
+ url: '/autoSR/api/zkMessage/messagePage',
+ method: 'get',
+ params: data
+ })
+}
\ No newline at end of file
diff --git a/src/api/modules/http.js b/src/api/modules/http.js
index 9e2d696..a0d645d 100644
--- a/src/api/modules/http.js
+++ b/src/api/modules/http.js
@@ -858,6 +858,6 @@ export function theCirculation(query) {
return request({
url: 'autoSR/customer/theCirculation',
method: 'get',
- params: query
+ data: query
})
}
\ No newline at end of file
diff --git a/src/router/views/index.js b/src/router/views/index.js
index 25ef589..f7bc475 100644
--- a/src/router/views/index.js
+++ b/src/router/views/index.js
@@ -30,6 +30,11 @@ export default [{
component: () =>
import(/* webpackChunkName: "page" */ '@/views/Receive/index'),
name: '接待详情',
+ },
+ {
+ path: '/contentManage/updateRecord/update',
+ component: () => import(/* webpackChunkName: "views" */ '@/views/contentManage/updateRecord/update'),
+ name:"更新"
}
]
}, {
diff --git a/src/views/contentManage/updateRecord/list.vue b/src/views/contentManage/updateRecord/list.vue
new file mode 100644
index 0000000..5ce1946
--- /dev/null
+++ b/src/views/contentManage/updateRecord/list.vue
@@ -0,0 +1,216 @@
+
+
+
+
+
+
+
+
+ 新增
+
+
+ 筛选
+
+
+ 清空筛选条件
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 编辑
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/contentManage/updateRecord/update.vue b/src/views/contentManage/updateRecord/update.vue
new file mode 100644
index 0000000..4cd442c
--- /dev/null
+++ b/src/views/contentManage/updateRecord/update.vue
@@ -0,0 +1,122 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 发布
+ 取消
+
+
+
+
+
+
+
+
+
diff --git a/vue.config.js b/vue.config.js
index b8efc3d..448efae 100644
--- a/vue.config.js
+++ b/vue.config.js
@@ -7,7 +7,8 @@
// const url = 'http://192.168.31.167:9999' //长龙
// const url = 'http://192.168.31.134:9999' //嘉豪
// const url = 'http://192.168.31.100:9999' //王笑
-const url = 'http://62.234.122.43:9999' //正式
+// const url = 'http://62.234.122.43:9999' //正式
+const url = 'http://192.168.31.88:9999' //正式
// const url = 'https://zanyong.hfju.com' // 正式域名
const CompressionWebpackPlugin = require('compression-webpack-plugin')
const productionGzipExtensions = ['js', 'css']