|
@ -5,7 +5,8 @@ |
|
|
<el-input v-model="searchForm.jwcode" placeholder="请输入精网号" style="width: 12vw;margin-right:1vw" clearable/> |
|
|
<el-input v-model="searchForm.jwcode" placeholder="请输入精网号" style="width: 12vw;margin-right:1vw" clearable/> |
|
|
|
|
|
|
|
|
<el-text size="large">商品名:</el-text> |
|
|
<el-text size="large">商品名:</el-text> |
|
|
<el-select v-model="searchForm.goodsName" placeholder="请输入商品名" style="width: 12vw;margin-right:1vw" clearable> |
|
|
|
|
|
|
|
|
<el-select v-model="searchForm.goodsName" placeholder="请输入商品名" style="width: 12vw;margin-right:1vw" |
|
|
|
|
|
clearable> |
|
|
<el-option v-for="item in refundGoodsOptions" :key="item" :label="item" :value="item"></el-option> |
|
|
<el-option v-for="item in refundGoodsOptions" :key="item" :label="item" :value="item"></el-option> |
|
|
</el-select> |
|
|
</el-select> |
|
|
|
|
|
|
|
@ -16,7 +17,8 @@ |
|
|
</el-select> |
|
|
</el-select> |
|
|
|
|
|
|
|
|
<el-text size="large">所属地区:</el-text> |
|
|
<el-text size="large">所属地区:</el-text> |
|
|
<el-cascader v-model="selectedMarketPath" :options="market" placeholder="请选择所属地区" clearable style="width:12vw" |
|
|
|
|
|
|
|
|
<el-cascader v-model="selectedMarketPath" :options="market" placeholder="请选择所属地区" clearable |
|
|
|
|
|
style="width:12vw" |
|
|
@change="handleMarketChange"/> |
|
|
@change="handleMarketChange"/> |
|
|
</el-col> |
|
|
</el-col> |
|
|
<el-col> |
|
|
<el-col> |
|
@ -42,7 +44,6 @@ |
|
|
</el-tabs> |
|
|
</el-tabs> |
|
|
|
|
|
|
|
|
<div> |
|
|
<div> |
|
|
总条数:{{ format3(stats.totalNum) }}条 |
|
|
|
|
|
退款总金币数:{{ format3((stats.permanentGolds + stats.freeGolds + stats.taskGolds).toFixed(2)) }}金币 |
|
|
退款总金币数:{{ format3((stats.permanentGolds + stats.freeGolds + stats.taskGolds).toFixed(2)) }}金币 |
|
|
永久金币:{{ format3(stats.permanentGolds.toFixed(2)) }}金币 |
|
|
永久金币:{{ format3(stats.permanentGolds.toFixed(2)) }}金币 |
|
|
免费金币:{{ format3(stats.freeGolds.toFixed(2)) }}金币 |
|
|
免费金币:{{ format3(stats.freeGolds.toFixed(2)) }}金币 |
|
@ -85,7 +86,8 @@ |
|
|
</el-table-column> |
|
|
</el-table-column> |
|
|
<el-table-column prop="remark" label="备注" width="150" show-overflow-tooltip/> |
|
|
<el-table-column prop="remark" label="备注" width="150" show-overflow-tooltip/> |
|
|
<el-table-column prop="adminName" label="提交人" width="120"/> |
|
|
<el-table-column prop="adminName" label="提交人" width="120"/> |
|
|
<el-table-column v-if="checkTab === 'reject'" prop="rejectReason" label="驳回理由" width="150" show-overflow-tooltip /> |
|
|
|
|
|
|
|
|
<el-table-column v-if="checkTab === 'reject'" prop="rejectReason" label="驳回理由" width="150" |
|
|
|
|
|
show-overflow-tooltip/> |
|
|
<el-table-column v-if="checkTab !== 'pending'" prop="auditName" label="审核人" width="120"/> |
|
|
<el-table-column v-if="checkTab !== 'pending'" prop="auditName" label="审核人" width="120"/> |
|
|
<el-table-column prop="createTime" label="提交时间" width="180" sortable="custom"> |
|
|
<el-table-column prop="createTime" label="提交时间" width="180" sortable="custom"> |
|
|
<template #default="{ row }"> |
|
|
<template #default="{ row }"> |
|
@ -126,7 +128,8 @@ |
|
|
</el-table-column> |
|
|
</el-table-column> |
|
|
</el-table> |
|
|
</el-table> |
|
|
<el-pagination class="pagination" v-model:current-page="pagination.pageNum" v-model:page-size="pagination.pageSize" |
|
|
<el-pagination class="pagination" v-model:current-page="pagination.pageNum" v-model:page-size="pagination.pageSize" |
|
|
layout="total, sizes, prev, pager, next, jumper" :total="pagination.total" @size-change="handlePageSizeChange" |
|
|
|
|
|
|
|
|
layout="total, sizes, prev, pager, next, jumper" :total="pagination.total" |
|
|
|
|
|
@size-change="handlePageSizeChange" |
|
|
@current-change="handleCurrentChange"></el-pagination> |
|
|
@current-change="handleCurrentChange"></el-pagination> |
|
|
</el-card> |
|
|
</el-card> |
|
|
|
|
|
|
|
|