| | |
| | | type="index" |
| | | width="60" |
| | | /> |
| | | <el-table-column label="付款日期" prop="paymentDate" /> |
| | | <el-table-column label="付款日期" prop="paymentDate"> |
| | | <template #default="scope"> |
| | | <el-date-picker |
| | | v-model="scope.row.paymentDate" |
| | | value-format="YYYY-MM-DD" |
| | | format="YYYY-MM-DD" |
| | | type="date" |
| | | placeholder="请选择" |
| | | clearable |
| | | style="width: 100%" |
| | | :disabled="!scope.row.editType" |
| | | /> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="付款金额" prop="currentPaymentAmount"> |
| | | <template #default="scope"> |
| | | <el-input-number :step="0.01" :min="0" style="width: 100%" |
| | |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="登记人" prop="registrant" /> |
| | | <el-table-column label="登记日期" prop="registrationtDate" /> |
| | | <!-- <el-table-column label="登记日期" prop="registrationtDate" /> --> |
| | | <el-table-column label="操作" width="150"> |
| | | <template #default="scope"> |
| | | <el-button |
| | |
| | | id: row.id, |
| | | currentPaymentAmount: row.currentPaymentAmount, |
| | | paymentMethod: row.paymentMethod, |
| | | paymentDate: row.paymentDate, |
| | | }; |
| | | updatePaymentRegistration(updateData).then((res) => { |
| | | row.editType = !row.editType; |