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 @@ + - - +