222
This commit is contained in:
parent
f88ae64359
commit
a5dafedfa2
2
.env
2
.env
|
|
@ -1,3 +1,3 @@
|
|||
|
||||
# 页面标题
|
||||
VITE_APP_TITLE = '申请礼物后台管理'
|
||||
VITE_APP_TITLE = '抚顺电机客户福利平台后台管理'
|
||||
|
|
@ -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 = '/'
|
||||
|
|
|
|||
|
|
@ -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 |
|
|
@ -67,7 +67,7 @@ export default {
|
|||
/**
|
||||
* 水印文案
|
||||
*/
|
||||
watermarkText: '管理后台',
|
||||
watermarkText: '抚顺电机客户福利平台后台管理',
|
||||
/**
|
||||
* 是否显示其他登录
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -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' }
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user