|
@@ -57,11 +57,6 @@
|
|
|
highlight-current-row
|
|
|
:header-cell-style="{background:'#eef1f6',color:'#606266'}"
|
|
|
>
|
|
|
- <el-table-column align="center" label="序号" width="50">
|
|
|
- <template slot-scope="scope">
|
|
|
- {{ ((pageNum-1)*listQuery.pageSize)+scope.$index+1 }}
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
<el-table-column label="退款编号" align="center" prop="returnedNo" />
|
|
|
<el-table-column label="退款审核状态" align="center" prop="status">
|
|
|
<template slot-scope="{row}">
|
|
@@ -124,7 +119,6 @@ export default {
|
|
|
data() {
|
|
|
return {
|
|
|
list: null,
|
|
|
- pageNum: 0,
|
|
|
listLoading: true,
|
|
|
total: 0,
|
|
|
searchTimeVal: '',
|
|
@@ -156,7 +150,6 @@ export default {
|
|
|
getRefundList(this.listQuery).then(response => {
|
|
|
this.list = response.data.results
|
|
|
this.total = response.data.totalRecord
|
|
|
- this.pageNum = response.data.index
|
|
|
this.listLoading = false
|
|
|
}).catch(() => {
|
|
|
this.listLoading = false
|