|
|
@@ -28,7 +28,7 @@
|
|
|
|
|
|
<!-- 操作按钮区域 -->
|
|
|
<div class="table-operator">
|
|
|
- <a-button @click="handleChargeBack" type="primary" icon="rollback">退单处理</a-button>
|
|
|
+ <a-button @click="handleChargeBack" type="primary" icon="rollback" v-if="paymentLane === 1">退单处理</a-button>
|
|
|
</div>
|
|
|
|
|
|
<!-- table区域-begin -->
|
|
|
@@ -88,6 +88,7 @@
|
|
|
data () {
|
|
|
return {
|
|
|
description: '付款明细表管理页面',
|
|
|
+ paymentLane: 0,
|
|
|
// 表头
|
|
|
columns: [
|
|
|
{
|
|
|
@@ -189,6 +190,7 @@
|
|
|
this.ipagination.current = 1;
|
|
|
}
|
|
|
this.paymentId = this.$route.query.paymentId;
|
|
|
+ this.paymentLane = this.$route.query.paymentLane;
|
|
|
var params = this.getQueryParams()//查询条件
|
|
|
params.paymentId = this.paymentId;
|
|
|
this.loading = true
|