gaoluyang
2 天以前 3a07f2ca675bbd3c55893f7731b8f49d854b0e07
src/views/procurementManagement/paymentEntry/index.vue
@@ -153,7 +153,7 @@
          width="100"
        />
        <el-table-column
          label="规格型号"
          label="图纸编号"
          prop="specificationModel"
          show-overflow-tooltip
          width="150"
@@ -261,7 +261,6 @@
  {
    label: "供应商名称",
    prop: "supplierName",
    width:240
  },
   {
      label: "付款状态",
@@ -282,10 +281,9 @@
      label: "产品大类",
      prop: "productCategory",
      showOverflowTooltip: true,
      width: 100
   },
   {
      label: "规格型号",
      label: "图纸编号",
      prop: "specificationModel",
      showOverflowTooltip: true,
      width: 150
@@ -293,7 +291,6 @@
  {
    label: "已付款金额(元)",
    prop: "ticketsTotal",
    width: 120,
    formatData: (params) => {
      return params ? parseFloat(params).toFixed(2) : 0;
    },
@@ -301,7 +298,6 @@
  {
    label: "待付款金额(元)",
    prop: "pendingTicketsTotal",
    width: 120,
    formatData: (params) => {
      return params ? parseFloat(params).toFixed(2) : 0;
    },
@@ -327,6 +323,8 @@
  searchForm: {
    supplierNameOrContractNo: "",
    status: false,
    // 只查询审批状态为 3 的记录
    approvalStatus: 3,
  },
  form: {
    purchaseContractNumber: "",
@@ -537,7 +535,7 @@
  })
    .then(() => {
      tableLoading.value = true;
         delPaymentRegistration(row.id)
         delPaymentRegistration([row.id])
        .then((res) => {
          proxy.$modal.msgSuccess("删除成功");
          getList();
@@ -574,7 +572,7 @@
.table_list {
  margin-top: unset;
}
::v-deep(.el-checkbox__label) {
:deep(.el-checkbox__label) {
  font-weight: bold;
}
.empty-tip {