From eefead233d06cf6a1d3c2fd7862384ad69f7eeff Mon Sep 17 00:00:00 2001 From: 18650502300 <18650502300@163.com> Date: Fri, 25 Oct 2024 11:26:49 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=84=E7=A7=8D=E6=97=A5=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/rl/locationLog.js | 44 +++ src/views/system/changeBalance/index.vue | 7 +- src/views/system/locationLog/index.vue | 379 +++++++++++++++++++++++ src/views/system/msgLog/index.vue | 10 +- src/views/system/onlineLog/index.vue | 6 +- src/views/system/orderOper/index.vue | 24 +- 6 files changed, 456 insertions(+), 14 deletions(-) create mode 100644 src/api/rl/locationLog.js create mode 100644 src/views/system/locationLog/index.vue diff --git a/src/api/rl/locationLog.js b/src/api/rl/locationLog.js new file mode 100644 index 0000000..f8ee0c2 --- /dev/null +++ b/src/api/rl/locationLog.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 查询定位日志列表 +export function listLocationLog(query) { + return request({ + url: '/system/locationLog/list', + method: 'get', + params: query + }) +} + +// 查询定位日志详细 +export function getLocationLog(locationId) { + return request({ + url: '/system/locationLog/' + locationId, + method: 'get' + }) +} + +// 新增定位日志 +export function addLocationLog(data) { + return request({ + url: '/system/locationLog', + method: 'post', + data: data + }) +} + +// 修改定位日志 +export function updateLocationLog(data) { + return request({ + url: '/system/locationLog', + method: 'put', + data: data + }) +} + +// 删除定位日志 +export function delLocationLog(locationId) { + return request({ + url: '/system/locationLog/' + locationId, + method: 'delete' + }) +} diff --git a/src/views/system/changeBalance/index.vue b/src/views/system/changeBalance/index.vue index a78665d..9cbefc2 100644 --- a/src/views/system/changeBalance/index.vue +++ b/src/views/system/changeBalance/index.vue @@ -100,6 +100,11 @@ + + + @@ -182,7 +187,7 @@ import { listChangeBalance, getChangeBalance, delChangeBalance, addChangeBalance export default { name: "ChangeBalance", - dicts: ['rl_change_type', 'rl_business_type'], + dicts: ['rl_change_type', 'rl_business_type','rl_user_type'], data() { return { // 遮罩层 diff --git a/src/views/system/locationLog/index.vue b/src/views/system/locationLog/index.vue new file mode 100644 index 0000000..75cf3b5 --- /dev/null +++ b/src/views/system/locationLog/index.vue @@ -0,0 +1,379 @@ + + + diff --git a/src/views/system/msgLog/index.vue b/src/views/system/msgLog/index.vue index ac3f0e1..cfc4e2c 100644 --- a/src/views/system/msgLog/index.vue +++ b/src/views/system/msgLog/index.vue @@ -4,7 +4,7 @@ + - - +