src/views/procurementManagement/paymentEntry/index.vue
@@ -69,7 +69,20 @@
                     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%"
@@ -95,7 +108,7 @@
                     </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
@@ -488,6 +501,7 @@
      id: row.id,
      currentPaymentAmount: row.currentPaymentAmount,
      paymentMethod: row.paymentMethod,
      paymentDate: row.paymentDate,
   };
   updatePaymentRegistration(updateData).then((res) => {
      row.editType = !row.editType;