| | |
| | | }, |
| | | tableColumn: [ |
| | | { label: "报价单号", prop: "number", min: 90, isCommonClick: true, default: true }, // 报价单号 |
| | | { label: "客户名称", prop: "client_name", min: 120, isClientClick: true }, // 客户名称 |
| | | { label: "联系人姓名", prop: "contact_name", min: 90, isContactClick: true }, // 联系人姓名 |
| | | { label: "报价单名称", prop: "quotationName", min: 120, isClientClick: true }, // 报价单名称 |
| | | // { label: "联系人姓名", prop: "contact_name", min: 90, isContactClick: true }, // 联系人姓名 |
| | | { label: "销售负责人", prop: "member_name" }, // 销售负责人 |
| | | { label: "有效期", prop: "validity_date", min: 100 }, // 修改时间 |
| | | // { label: "小计", prop: "subTotal" }, // 小计 |
| | |
| | | { label: "数量", prop: "productNumber", isProductAmount: true }, |
| | | { label: "价税合计", prop: "priceTax", isProductTotal: true } |
| | | ], |
| | | showCol: ["报价单号", "客户名称", "联系人姓名", "销售负责人", "有效期", "产品名称", "数量", "价税合计"] |
| | | showCol: ["报价单号", "报价单名称", "联系人姓名", "销售负责人", "有效期", "产品名称", "数量", "价税合计"] |
| | | } |
| | | }, |
| | | created() { |
| | |
| | | }, |
| | | // 新建 |
| | | addBtnClick() { |
| | | this.editConfig.visible = true |
| | | this.editConfig.title = "新建" |
| | | this.editConfig.infomation = { ...this.addConfig, currency: "人民币" } |
| | | this.editConfig.visible = true |
| | | }, |
| | | // 编辑 |
| | | handleClick(row) { |
| | | console.log(row) |
| | | this.editConfig.visible = true |
| | | this.editConfig.title = "编辑" |
| | | console.log("dddddddd") |
| | | console.log(row) |
| | | this.editConfig.infomation = { ...row, currency: "人民币" } |
| | | }, |
| | | // 批量删除 |