buhuazhen
2026-05-29 fd20b340153df3282b87dc631b7f72437ee06c07
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
                        >
@@ -143,8 +140,8 @@
        size="small"
      >
        <el-table-column type="index" label="序号" width="50" align="center"/>
        <el-table-column label="采购合同号" prop="purchaseContractNumber" show-overflow-tooltip />
        <el-table-column label="销售合同号" prop="salesContractNo" show-overflow-tooltip />
        <el-table-column label="采购单号" prop="purchaseContractNumber" show-overflow-tooltip />
        <el-table-column label="销售单号" prop="salesContractNo" show-overflow-tooltip />
        <el-table-column label="供应商名称" prop="supplierName" show-overflow-tooltip />
        <el-table-column
          label="产品大类"
@@ -249,19 +246,18 @@
      slot: "expand",
   },
  {
    label: "采购合同号",
    label: "采购单号",
    prop: "purchaseContractNumber",
    width:160
  },
  {
    label: "销售合同号",
    label: "销售单号",
    prop: "salesContractNo",
    width:160
  },
  {
    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 {