gaoluyang
6 天以前 8e9bc97e709f7e49586dffb9cc3d2dac4cfef4ca
src/views/procurementManagement/paymentEntry/index.vue
@@ -101,7 +101,6 @@
                        <el-button
                           link
                           type="primary"
                           size="small"
                           @click="changeEditType(scope.row)"
                           v-if="!scope.row.editType"
                        >编辑</el-button
@@ -109,7 +108,6 @@
                        <el-button
                           link
                           type="primary"
                           size="small"
                           @click="saveReceiptPayment(scope.row)"
                           v-if="scope.row.editType"
                        >保存</el-button
@@ -117,7 +115,6 @@
                        <el-button
                           link
                           type="primary"
                           size="small"
                           @click="handleDelete(scope.row)"
                        >删除</el-button
                        >
@@ -261,7 +258,6 @@
  {
    label: "供应商名称",
    prop: "supplierName",
    width:240
  },
   {
      label: "付款状态",
@@ -282,7 +278,6 @@
      label: "产品大类",
      prop: "productCategory",
      showOverflowTooltip: true,
      width: 100
   },
   {
      label: "规格型号",
@@ -293,7 +288,6 @@
  {
    label: "已付款金额(元)",
    prop: "ticketsTotal",
    width: 120,
    formatData: (params) => {
      return params ? parseFloat(params).toFixed(2) : 0;
    },
@@ -301,7 +295,6 @@
  {
    label: "待付款金额(元)",
    prop: "pendingTicketsTotal",
    width: 120,
    formatData: (params) => {
      return params ? parseFloat(params).toFixed(2) : 0;
    },
@@ -327,6 +320,8 @@
  searchForm: {
    supplierNameOrContractNo: "",
    status: false,
    // 只查询审批状态为 3 的记录
    approvalStatus: 3,
  },
  form: {
    purchaseContractNumber: "",
@@ -574,7 +569,7 @@
.table_list {
  margin-top: unset;
}
::v-deep(.el-checkbox__label) {
:deep(.el-checkbox__label) {
  font-weight: bold;
}
.empty-tip {