This commit is contained in:
zpc 2025-08-07 20:15:49 +08:00
parent f88ae64359
commit a5dafedfa2
10 changed files with 34 additions and 5 deletions

2
.env
View File

@ -1,3 +1,3 @@
# 页面标题
VITE_APP_TITLE = '申请礼物后台管理'
VITE_APP_TITLE = '抚顺电机客户福利平台后台管理'

View File

@ -4,8 +4,8 @@ ENV = 'development'
VITE_APP_API_HOST = 'http://localhost:8888/'
# 开发环境
# VITE_APP_BASE_API = 'http://localhost:8888/'
VITE_APP_BASE_API = 'https://gift.zpc-xy.com/'
VITE_APP_BASE_API = 'http://localhost:8888/'
# VITE_APP_BASE_API = 'https://gift.zpc-xy.com/'
# 路由前缀
VITE_APP_ROUTER_PREFIX = '/'

BIN
dist.zip

Binary file not shown.

View File

@ -7,7 +7,7 @@
<meta name="renderer" content="webkit">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<link rel="icon" href="/favicon.ico">
<title>申请礼物管理系统</title>
<title>抚顺电机客户福利平台后台管理</title>
<!--[if lt IE 11]><script>window.location.href='/html/ie.html';</script><![endif]-->
<style>
html,

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 207 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -67,7 +67,7 @@ export default {
/**
* 水印文案
*/
watermarkText: '管理后台',
watermarkText: '抚顺电机客户福利平台后台管理',
/**
* 是否显示其他登录
*/

View File

@ -118,6 +118,34 @@
</div>
</template>
</el-table-column>
<el-table-column prop="geocodedAddress" label="位置信息" :show-overflow-tooltip="true" width="220">
<template #default="scope">
<div class="user-info-container">
<div class="user-info-item">
<span class="info-label" style="font-size: 12px; min-width: 50px">经度</span>
<span class="info-value" style="font-size: 12px">{{ scope.row.longitude }}</span>
</div>
<div class="user-info-item">
<span class="info-label" style="font-size: 12px; min-width: 50px">经纬度</span>
<span class="info-value" style="font-size: 12px">{{ scope.row.latitude }}</span>
</div>
<div class="user-info-item">
<span class="info-label" style="font-size: 12px; min-width: 50px">位置</span>
<div>
<span class="info-value" style="font-size: 12px; white-space: break-spaces">{{ scope.row.geocodedAddress }}</span>
</div>
</div>
<div class="user-info-item">
<span class="info-label" style="font-size: 12px; min-width: 50px">ip</span>
<span class="info-value" style="font-size: 12px">{{ scope.row.ip }}</span>
</div>
<div class="user-info-item">
<span class="info-label" style="font-size: 12px; min-width: 50px">ip位置</span>
<span class="info-value" style="font-size: 12px">{{ scope.row.ipAddress }}</span>
</div>
</div>
</template>
</el-table-column>
<el-table-column prop="createdAt" label="时间信息" :show-overflow-tooltip="true" width="220">
<template #default="scope">
<div class="user-info-container">
@ -270,6 +298,7 @@ const columns = ref([
{ visible: true, align: 'center', type: '', prop: 'id', label: 'id' },
{ visible: true, align: 'center', type: '', prop: 'userId', label: '用户信息' },
{ visible: true, align: 'center', type: '', prop: 'productModel', label: '产品信息', showOverflowTooltip: true },
{ visible: true, align: 'center', type: '', prop: 'geocodedAddress', label: '位置信息', showOverflowTooltip: true },
{ visible: true, align: 'center', type: '', prop: 'createdAt', label: '申请时间', showOverflowTooltip: true },
{ visible: true, align: 'center', type: 'dict', prop: 'status', label: '审核状态', dictType: 'gift_request_claim', showOverflowTooltip: true }
//{ visible: false, prop: 'actions', label: '', type: 'slot', width: '160' }