Browse Source

小bug

zhangrenyuan/feature-20250623164058-金币前端
lihuilin 16 hours ago
parent
commit
a071e5c8d5
  1. 2
      .env.development
  2. 2
      .env.production
  3. 2
      .env.test
  4. 5
      src/views/audit/rechargeAudit.vue
  5. 6
      src/views/consume/addCoinConsume.vue
  6. 2
      src/views/recharge/coinRechargeDetail.vue
  7. 2
      stats.html

2
.env.development

@ -1,4 +1,4 @@
VITE_API_BASE='http://192.168.8.220:8081/'
VITE_API_BASE='https://hwjb.homilychart.com/admin/'
# VITE_API_BASE='https://hwjb.homilychart.com/gold_htms_dev'
# VITE_API_BASE='http://54.251.137.151:10704/'
# VITE_API_BASE='http://18.143.76.3:10704/'

2
.env.production

@ -1,5 +1,5 @@
# VITE_API_BASE='http://54.251.137.151:10702/'
VITE_API_BASE='https://hwjb.homilychart.com/gold_htms_prod'
VITE_API_BASE='https://hwjb.homilychart.com/admin/'
# VITE_API_BASE='https://hwjb.homilychart.com/gold_htms_dev'
# VITE_API_BASE='http://192.168.8.232:8080/'

2
.env.test

@ -1,5 +1,5 @@
# VITE_API_BASE='https://hwjb.homilychart.com/gold_htms_prod'
#VITE_API_BASE='http://54.251.137.151:10704/'
VITE_API_BASE='http://192.168.8.220:8081/'
VITE_API_BASE='https://hwjb.homilychart.com/admin/'
#VITE_API_BASE='https://hwjb.homilychart.com/gold_htms_dev'
# VITE_API_BASE='http://18.143.76.3:10704/'

5
src/views/audit/rechargeAudit.vue

@ -81,8 +81,8 @@
<el-table-column fixed="left" prop="jwcode" label="精网号" width="110px" />
<el-table-column prop="market" label="所属地区" width="100px" />
<el-table-column prop="activity" label="活动名称" width="100px" show-overflow-tooltip />
<el-table-column prop="permanentGold" label="充值金额" sortable="custom" width="110px">
<template #default="scope">{{ scope.row.permanentGold / 100 }}</template>
<el-table-column prop="sumGold" label="充值金额" sortable="custom" width="110px">
<template #default="scope">{{ scope.row.sumGold / 100 }}</template>
</el-table-column>
<el-table-column prop="permanentGold" label="永久金币" width="110px" sortable="custom">
<template #default="scope">{{ scope.row.permanentGold / 100 }}</template>
@ -94,7 +94,6 @@
<el-table-column prop="payModel" label="支付方式" width="110px" />
<el-table-column prop="voucher" label="支付凭证" width="110px">
<!-- 支付凭证列支持点击放大预览 -->
<template #default="scope">
<div v-if="scope.row.voucher" style="cursor: pointer;" @click="previewImage(scope.row.voucher)">
<img :src="scope.row.voucher" alt="支付凭证" style="width: 80px; height: auto;">

6
src/views/consume/addCoinConsume.vue

@ -440,10 +440,12 @@ onMounted(async function () {
<div style="display: flex; align-items: center">
<el-form-item prop="permanentGold" label="永久金币" style="float: left">
<el-input
v-model="addConsume.permanentGold"
disabled
v-model="addConsume.permanentGold"
style="width: 100px; margin-left: -5px"
/>
>
<template #default="scope">{{ scope.row.permanentGold / 100 }}</template>
</el-input>
<p style="margin-right: 0px"></p>
</el-form-item>
<el-form-item

2
src/views/recharge/coinRechargeDetail.vue

@ -418,7 +418,7 @@ const handleSortChange = (column) => {
<el-col>
<el-card>
<div>
充值金额{{ permanentGolds.toFixed(2) }}新币永久金币{{
充值金额{{ (permanentGolds + freeGolds).toFixed(2) }}新币永久金币{{
permanentGolds.toFixed(2)
}}金币免费金币{{ freeGolds }}金币
</div>

2
stats.html
File diff suppressed because it is too large
View File

Loading…
Cancel
Save