|
@@ -53,8 +53,8 @@
|
|
|
clearable
|
|
|
placeholder="付款状态"
|
|
|
>
|
|
|
- <el-option label="已缴费" value="PAID_COMPLETED"></el-option>
|
|
|
- <el-option label="未缴费" value="NON_PAYMENT"></el-option>
|
|
|
+ <el-option label="已付款" value="PAID_COMPLETED"></el-option>
|
|
|
+ <el-option label="未付款" value="NON_PAYMENT"></el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
<el-form-item>
|
|
@@ -116,7 +116,7 @@
|
|
|
<el-table-column align="center" prop="studentId" label="付款状态">
|
|
|
<template slot-scope="scope">
|
|
|
<div>
|
|
|
- {{ scope.row.paymentStatus | paymentStatusDetall }}
|
|
|
+ {{ scope.row.paymentStatus | paymentStatusGet }}
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -145,7 +145,7 @@
|
|
|
<template slot-scope="scope">
|
|
|
<div>
|
|
|
<auth auths="cooperationShareProfit/addCredentials">
|
|
|
- <el-button type="text" @click="addPayCode(scope.row)"
|
|
|
+ <el-button :disabled="scope.row.paymentStatus=='PAID_COMPLETED'" type="text" @click="addPayCode(scope.row)"
|
|
|
>添加付款记录</el-button
|
|
|
>
|
|
|
</auth>
|