songshankun
2023-09-25 36df175693c8224f2987f9e6e54e12c0c010db2f
src/views/sales/quotation/index.vue
@@ -146,7 +146,7 @@
          // { label: "合计", prop: "total" }, // 合计
          { label: "产品名称", prop: "productName", isProductName: true },
          { label: "数量", prop: "productNumber", isProductAmount: true },
          { label: "价税合计", prop: "priceTax", isProductCommon: true }
          { label: "价税合计", prop: "priceTax", isProductTotal: true }
        ]
      }
      this.searchOptions = []
@@ -252,13 +252,18 @@
    selClientClick(row) {
      console.log(row)
      this.clientDeail.visible = true
      this.clientDeail.infomation = { ...row, client_name: row.name }
      this.clientDeail.infomation = {
        ...row.client,
        client_name: row.name,
        client_level: row.client.client_level.name,
        client_status: row.client.client_status.name
      }
    },
    // 联系人详情
    selContactsClick(row) {
      console.log(row)
      this.contactsDeail.visible = true
      this.contactsDeail.infomation = { ...row }
      this.contactsDeail.infomation = { ...row.contact, Client: row.client }
    },
    // 机会名称详情
    selCommonClick(row) {