From fa3a7451cd87728ca35c4f37e40f30a675928eef Mon Sep 17 00:00:00 2001
From: jyt <1592211625@qq.com>
Date: Thu, 24 Mar 2022 18:24:03 +0800
Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E8=AE=B0=E5=BD=95?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/api/modules/api.js | 8 +
src/api/modules/http.js | 2 +-
src/router/views/index.js | 5 +
src/views/contentManage/updateRecord/list.vue | 216 ++++++++++++++++++
.../contentManage/updateRecord/update.vue | 122 ++++++++++
vue.config.js | 3 +-
6 files changed, 354 insertions(+), 2 deletions(-)
create mode 100644 src/views/contentManage/updateRecord/list.vue
create mode 100644 src/views/contentManage/updateRecord/update.vue
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']