|
@@ -38,10 +38,18 @@
|
|
|
<el-table style="width: 100%"
|
|
|
:header-cell-style="{ background: '#EDEEF0', color: '#444' }"
|
|
|
:data="tableList">
|
|
|
- <el-table-column align="center"
|
|
|
- prop="batchNo"
|
|
|
- width="200"
|
|
|
- label="缴费批次"></el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ align="center"
|
|
|
+ prop="batchNo"
|
|
|
+ width="200"
|
|
|
+ label="缴费批次"
|
|
|
+ >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div>
|
|
|
+ <copy-text>{{ scope.row.batchNo }}</copy-text>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column align="center"
|
|
|
prop="paymentType"
|
|
|
label="缴费类型">
|
|
@@ -108,7 +116,7 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column label="操作"
|
|
|
fixed="right"
|
|
|
- min-width="160px">
|
|
|
+ min-width="200px">
|
|
|
<template slot-scope="scope">
|
|
|
<div>
|
|
|
<el-button type="text"
|
|
@@ -117,10 +125,10 @@
|
|
|
<!-- <el-button type="text"
|
|
|
@click="lookDetail(scope.row)"
|
|
|
v-permission="'musicGroupPaymentCalender/auditListDetail'">查看</el-button> -->
|
|
|
- <!-- <el-button type="text"
|
|
|
+ <el-button type="text"
|
|
|
@click="openChioseStudent(scope.row)"
|
|
|
v-if="scope.row.status != 'REJECT' && scope.row.status != 'AUDITING'&&teamStatus && scope.row.paymentType != 'MUSIC_APPLY' && scope.row.paymentType != 'ADD_STUDENT'"
|
|
|
- v-permission="'musicGroupPaymentCalenderDetail/batchAdd'">添加学员</el-button> -->
|
|
|
+ v-permission="'musicGroupPaymentCalenderDetail/batchAdd'">添加学员</el-button>
|
|
|
<el-button type="text"
|
|
|
v-if="teamStatus && scope.row.auditStatus === 'REJECT'"
|
|
|
v-permission="'musicGroupPaymentCalender/update'"
|
|
@@ -652,7 +660,7 @@ export default {
|
|
|
this.$refs.setStudentFee.clearTable();
|
|
|
this.payVisible = false;
|
|
|
this.chioseStudentVisible = false;
|
|
|
- this.$refs.payItems?.getList()
|
|
|
+ // this.$refs.payItems?.getList()
|
|
|
this.getList();
|
|
|
|
|
|
}
|