|
|
@@ -104,11 +104,15 @@
|
|
|
<el-table-column prop="extra" label="系统备注"></el-table-column>
|
|
|
<el-table-column label="操作">
|
|
|
<template slot-scope="scope">
|
|
|
- <span v-if="scope.row.status==1" @click="confirmPay">确认付款</span>
|
|
|
+ <span v-if="scope.row.status==1" @click="confirmPay(scope.row)">
|
|
|
+ <el-button type="primary">确认付款</el-button>
|
|
|
+ </span>
|
|
|
<span v-else-if="scope.row.status==2">已确认</span>
|
|
|
<span v-else-if="scope.row.status==4">支付中</span>
|
|
|
<span v-else-if="scope.row.status==8">支付成功</span>
|
|
|
- <span v-else-if="scope.row.status==16" @click="confirmPay">失败重试</span>
|
|
|
+ <span v-else-if="scope.row.status==16" @click="confirmPay">
|
|
|
+ <el-button type="primary">失败重试</el-button>
|
|
|
+ </span>
|
|
|
<span v-else>--</span>
|
|
|
</template>
|
|
|
</el-table-column>
|