提现记录方式更改,铸源星记录订单号增加

This commit is contained in:
faiz 2024-12-20 14:01:45 +08:00
parent 8a868b0272
commit aff27335bf
3 changed files with 11 additions and 13 deletions

View File

@ -104,7 +104,8 @@ export function extractTypeFilter(status) {
0: '银行卡', 0: '银行卡',
1: '微信', 1: '微信',
2: '支付宝', 2: '支付宝',
3: '微信零钱' 3: '微信零钱',
5: '铸源星'
} }
return statusMap[status] return statusMap[status]
} }

View File

@ -30,13 +30,12 @@
class="selWidth" class="selWidth"
@change="getList(1)" @change="getList(1)"
> >
<el-option <el-option
v-for="(item, key) in status_name" v-for="(item, key) in status_name"
:label="item" :label="item"
:value="key" :value="key"
/> />
</el-select> </el-select>
</el-select>
</el-form-item> </el-form-item>
<el-form-item label="方式:" prop="extract_type"> <el-form-item label="方式:" prop="extract_type">
<el-select <el-select
@ -47,11 +46,12 @@
class="selWidth" class="selWidth"
@change="getList(1)" @change="getList(1)"
> >
<el-option label="全部" value="" /> <!-- <el-option label="全部" value="" /> -->
<el-option label="银行卡" value="0" /> <el-option label="银行卡" value="0" />
<el-option label="支付宝" value="2" /> <el-option label="铸源星" value="5" />
<!-- <el-option label="支付宝" value="2" />
<el-option label="微信" value="1" /> <el-option label="微信" value="1" />
<el-option label="微信零钱" value="3" /> <el-option label="微信零钱" value="3" /> -->
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item label="关键字:" prop="keyword"> <el-form-item label="关键字:" prop="keyword">
@ -137,9 +137,7 @@
</el-table-column> </el-table-column>
<el-table-column label="审核状态" min-width="90"> <el-table-column label="审核状态" min-width="90">
<template slot-scope="scope"> <template slot-scope="scope">
<span class="spBlock">{{ <span class="spBlock">{{ status_name[scope.row.status] }}</span>
status_name[scope.row.status]
}}</span>
<!-- <template v-if="scope.row.status === 0"> <!-- <template v-if="scope.row.status === 0">
<el-button type="danger" icon="el-icon-close" size="mini" @click="onExamine(scope.row.extract_id)">未通过</el-button> <el-button type="danger" icon="el-icon-close" size="mini" @click="onExamine(scope.row.extract_id)">未通过</el-button>
<el-button type="primary" icon="el-icon-check" size="mini" @click="ok(scope.row.extract_id)">通过</el-button> <el-button type="primary" icon="el-icon-check" size="mini" @click="ok(scope.row.extract_id)">通过</el-button>
@ -148,9 +146,7 @@
</el-table-column> </el-table-column>
<el-table-column label="失败原因" min-width="120"> <el-table-column label="失败原因" min-width="120">
<template slot-scope="scope"> <template slot-scope="scope">
<span class="spBlock">{{ <span class="spBlock">{{ scope.row.error_msg }}</span>
scope.row.error_msg
}}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="拒绝原因" min-width="120"> <el-table-column label="拒绝原因" min-width="120">

View File

@ -46,7 +46,8 @@
<el-table v-loading="listLoading" :data="tableData.data" size="small"> <el-table v-loading="listLoading" :data="tableData.data" size="small">
<el-table-column prop="bill_id" label="ID" min-width="50" /> <el-table-column prop="bill_id" label="ID" min-width="50" />
<el-table-column prop="user.number" label="用户ID" min-width="50" /> <el-table-column prop="user.number" label="用户ID" min-width="50" />
<el-table-column label="用户昵称" prop="nickname" min-width="150" /> <el-table-column prop="order_sn" label="订单号" min-width="120" />
<el-table-column label="用户昵称" prop="nickname" min-width="100" />
<el-table-column label="手机号" prop="phone" min-width="150" /> <el-table-column label="手机号" prop="phone" min-width="150" />
<el-table-column label="铸源星标题" prop="title" min-width="120" /> <el-table-column label="铸源星标题" prop="title" min-width="120" />
<el-table-column label="铸源星变动" prop="number" min-width="90"> <el-table-column label="铸源星变动" prop="number" min-width="90">