|
@ -268,7 +268,7 @@ const getArea = async function () { |
|
|
|
|
|
|
|
|
//定义充值方式的加载状态 |
|
|
//定义充值方式的加载状态 |
|
|
const isLoadingPlatform = ref(false) |
|
|
const isLoadingPlatform = ref(false) |
|
|
// 充值方式 |
|
|
|
|
|
|
|
|
// 充值平台 |
|
|
const platform = ref([]) |
|
|
const platform = ref([]) |
|
|
//获取充值方式的函数 |
|
|
//获取充值方式的函数 |
|
|
const getPlatform = async () => { |
|
|
const getPlatform = async () => { |
|
@ -613,8 +613,8 @@ const getTagText = (state) => { |
|
|
</el-col> |
|
|
</el-col> |
|
|
<el-col :span="5"> |
|
|
<el-col :span="5"> |
|
|
<div class="head-card-element"> |
|
|
<div class="head-card-element"> |
|
|
<el-text class="mx-1" size="large">充值方式:</el-text> |
|
|
|
|
|
<el-select v-model="rechargeUser.payPlatform" placeholder="请选择充值方式" style="width: 180px" clearable> |
|
|
|
|
|
|
|
|
<el-text class="mx-1" size="large">充值平台:</el-text> |
|
|
|
|
|
<el-select v-model="rechargeUser.payPlatform" placeholder="请选择充值平台" style="width: 180px" clearable> |
|
|
<el-option v-for="item in platform" :key="item.value" :label="item.label" :value="item.value" /> |
|
|
<el-option v-for="item in platform" :key="item.value" :label="item.label" :value="item.value" /> |
|
|
</el-select> |
|
|
</el-select> |
|
|
</div> |
|
|
</div> |
|
@ -656,9 +656,9 @@ const getTagText = (state) => { |
|
|
<el-card> |
|
|
<el-card> |
|
|
<div> |
|
|
<div> |
|
|
充值新币:{{ format3(permanentGolds) }}新币 |
|
|
充值新币:{{ format3(permanentGolds) }}新币 |
|
|
|
|
|
总金币数:{{ format3(permanentGolds+freeGolds) }}金币 |
|
|
永久金币:{{ format3(permanentGolds) }}金币 |
|
|
永久金币:{{ format3(permanentGolds) }}金币 |
|
|
免费金币:{{ format3(freeGolds ) }}金币 |
|
|
免费金币:{{ format3(freeGolds ) }}金币 |
|
|
|
|
|
|
|
|
</div> |
|
|
</div> |
|
|
<!-- 设置表格容器的高度和滚动样式 --> |
|
|
<!-- 设置表格容器的高度和滚动样式 --> |
|
|
<div style="height: 520px; overflow-y: auto;margin-top: 10px;"> |
|
|
<div style="height: 520px; overflow-y: auto;margin-top: 10px;"> |
|
@ -678,7 +678,7 @@ const getTagText = (state) => { |
|
|
<el-table-column prop="money" sortable="custom" label="充值金额" width="110px" /> |
|
|
<el-table-column prop="money" sortable="custom" label="充值金额" width="110px" /> |
|
|
<el-table-column prop="permanentGold" label="永久金币" sortable="custom" width="110px" /> |
|
|
<el-table-column prop="permanentGold" label="永久金币" sortable="custom" width="110px" /> |
|
|
<el-table-column prop="freeGold" label="免费金币" sortable="custom" width="110px" /> |
|
|
<el-table-column prop="freeGold" label="免费金币" sortable="custom" width="110px" /> |
|
|
<el-table-column prop="payPlatform" label="充值方式" width="110px" /> |
|
|
|
|
|
|
|
|
<el-table-column prop="payPlatform" label="充值平台" width="110px" /> |
|
|
<el-table-column prop="payModel" label="支付方式" width="100px" /> |
|
|
<el-table-column prop="payModel" label="支付方式" width="100px" /> |
|
|
<el-table-column prop="remark" label="备注" width="150px" show-overflow-tooltip /> |
|
|
<el-table-column prop="remark" label="备注" width="150px" show-overflow-tooltip /> |
|
|
<el-table-column prop="adminName" label="提交人" width="100px" /> |
|
|
<el-table-column prop="adminName" label="提交人" width="100px" /> |
|
|