|
@@ -352,7 +352,7 @@
|
|
|
size="small"
|
|
size="small"
|
|
|
>
|
|
>
|
|
|
<el-table-column type="selection" width="40" />
|
|
<el-table-column type="selection" width="40" />
|
|
|
- <el-table-column prop="createTime" label="创建时间" width="140" />
|
|
|
|
|
|
|
+ <el-table-column prop="operateTime" label="操作时间" width="140" />
|
|
|
<el-table-column prop="teamName" label="团队名称" width="110" show-overflow-tooltip />
|
|
<el-table-column prop="teamName" label="团队名称" width="110" show-overflow-tooltip />
|
|
|
<el-table-column label="交易类型" width="120">
|
|
<el-table-column label="交易类型" width="120">
|
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
@@ -372,8 +372,18 @@
|
|
|
<el-table-column prop="ticketCancelCheckNum" label="退票人数" width="80" />
|
|
<el-table-column prop="ticketCancelCheckNum" label="退票人数" width="80" />
|
|
|
<el-table-column prop="cancelPrice" label="退票总额" width="100" />
|
|
<el-table-column prop="cancelPrice" label="退票总额" width="100" />
|
|
|
<el-table-column prop="operatorName" label="操作员" width="90" />
|
|
<el-table-column prop="operatorName" label="操作员" width="90" />
|
|
|
- <el-table-column prop="operateTime" label="操作时间" width="140" />
|
|
|
|
|
- <el-table-column prop="linkOrderId" label="关联订单" width="80" />
|
|
|
|
|
|
|
+ <el-table-column prop="linkOrderId" label="关联订单" width="80">
|
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
|
+ <el-link
|
|
|
|
|
+ v-if="scope.row.linkOrderId"
|
|
|
|
|
+ type="primary"
|
|
|
|
|
+ @click="showOrderDetail(scope.row.linkOrderId)"
|
|
|
|
|
+ >
|
|
|
|
|
+ 查看
|
|
|
|
|
+ </el-link>
|
|
|
|
|
+ <span v-else>-</span>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
<el-table-column prop="remark" label="备注" min-width="120" show-overflow-tooltip />
|
|
<el-table-column prop="remark" label="备注" min-width="120" show-overflow-tooltip />
|
|
|
</el-table>
|
|
</el-table>
|
|
|
<el-pagination
|
|
<el-pagination
|
|
@@ -427,7 +437,18 @@
|
|
|
<el-table-column prop="cancelPrice" label="退票总额" width="100" />
|
|
<el-table-column prop="cancelPrice" label="退票总额" width="100" />
|
|
|
<el-table-column prop="operatorName" label="操作员" width="90" />
|
|
<el-table-column prop="operatorName" label="操作员" width="90" />
|
|
|
<el-table-column prop="operateTime" label="操作时间" width="140" />
|
|
<el-table-column prop="operateTime" label="操作时间" width="140" />
|
|
|
- <el-table-column prop="linkOrderId" label="关联订单" width="80" />
|
|
|
|
|
|
|
+ <el-table-column prop="linkOrderId" label="关联订单" width="80">
|
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
|
+ <el-link
|
|
|
|
|
+ v-if="scope.row.linkOrderId"
|
|
|
|
|
+ type="primary"
|
|
|
|
|
+ @click="showOrderDetail(scope.row.linkOrderId)"
|
|
|
|
|
+ >
|
|
|
|
|
+ 查看
|
|
|
|
|
+ </el-link>
|
|
|
|
|
+ <span v-else>-</span>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
<el-table-column prop="remark" label="备注" min-width="120" show-overflow-tooltip />
|
|
<el-table-column prop="remark" label="备注" min-width="120" show-overflow-tooltip />
|
|
|
<el-table-column label="操作" width="60" fixed="right">
|
|
<el-table-column label="操作" width="60" fixed="right">
|
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
@@ -453,6 +474,8 @@
|
|
|
<el-button type="primary" :disabled="!rightSelectedList.length" @click="confirmRepayment">确定还款</el-button>
|
|
<el-button type="primary" :disabled="!rightSelectedList.length" @click="confirmRepayment">确定还款</el-button>
|
|
|
</div>
|
|
</div>
|
|
|
</ElDialog>
|
|
</ElDialog>
|
|
|
|
|
+
|
|
|
|
|
+ <OrderDetail ref="orderDetail"></OrderDetail>
|
|
|
</div>
|
|
</div>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
@@ -716,6 +739,11 @@ export default {
|
|
|
this.$refs.debtTableRef && this.$refs.debtTableRef.clearSelection()
|
|
this.$refs.debtTableRef && this.$refs.debtTableRef.clearSelection()
|
|
|
this.leftCheckedList = []
|
|
this.leftCheckedList = []
|
|
|
},
|
|
},
|
|
|
|
|
+ async showOrderDetail (orderId) {
|
|
|
|
|
+ const { getSingleOrder } = await import('@/api/order')
|
|
|
|
|
+ const res = await getSingleOrder(orderId)
|
|
|
|
|
+ this.$refs.orderDetail.show(res.data)
|
|
|
|
|
+ },
|
|
|
confirmRepayment () {
|
|
confirmRepayment () {
|
|
|
if (!this.rightSelectedList.length) {
|
|
if (!this.rightSelectedList.length) {
|
|
|
this.$message.warning('请先选择欠款记录')
|
|
this.$message.warning('请先选择欠款记录')
|