diff --git a/src/api/xq/userVisitor.js b/src/api/xq/userVisitor.js
new file mode 100644
index 0000000..ba563a9
--- /dev/null
+++ b/src/api/xq/userVisitor.js
@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询用户来访记录列表
+export function listUserVisitor(query) {
+ return request({
+ url: '/xq/userVisitor/list',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询用户来访记录详细
+export function getUserVisitor(id) {
+ return request({
+ url: '/xq/userVisitor/' + id,
+ method: 'get'
+ })
+}
+
+// 新增用户来访记录
+export function addUserVisitor(data) {
+ return request({
+ url: '/xq/userVisitor',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改用户来访记录
+export function updateUserVisitor(data) {
+ return request({
+ url: '/xq/userVisitor',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除用户来访记录
+export function delUserVisitor(id) {
+ return request({
+ url: '/xq/userVisitor/' + id,
+ method: 'delete'
+ })
+}
diff --git a/src/views/xq/userVisitor/index.vue b/src/views/xq/userVisitor/index.vue
new file mode 100644
index 0000000..ffe8f55
--- /dev/null
+++ b/src/views/xq/userVisitor/index.vue
@@ -0,0 +1,338 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 新增
+
+
+ 修改
+
+
+ 删除
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+