|
|
@ -663,6 +663,11 @@ export default { |
|
|
this.handleQuery(); |
|
|
this.handleQuery(); |
|
|
}, |
|
|
}, |
|
|
handleQuote(row){ |
|
|
handleQuote(row){ |
|
|
|
|
|
this.$alert('是否确认报价?', '提示', { |
|
|
|
|
|
confirmButtonText: '确定', |
|
|
|
|
|
cancelButtonText: '取消', |
|
|
|
|
|
type: 'warning' |
|
|
|
|
|
}).then(() => { |
|
|
let params = { |
|
|
let params = { |
|
|
inquiryPartDataList: this.inquiryPartDataList, |
|
|
inquiryPartDataList: this.inquiryPartDataList, |
|
|
createBy: this.$store.state.user.name, |
|
|
createBy: this.$store.state.user.name, |
|
|
@ -688,6 +693,12 @@ export default { |
|
|
this.quoteLoading = false |
|
|
this.quoteLoading = false |
|
|
this.$message.error(error); |
|
|
this.$message.error(error); |
|
|
}) |
|
|
}) |
|
|
|
|
|
}).catch(() => { |
|
|
|
|
|
this.$message({ |
|
|
|
|
|
type: 'info', |
|
|
|
|
|
message: '已取消报价' |
|
|
|
|
|
}); |
|
|
|
|
|
}); |
|
|
}, |
|
|
}, |
|
|
handleDblClick(row){ |
|
|
handleDblClick(row){ |
|
|
this.$emit('dblclick',row) |
|
|
this.$emit('dblclick',row) |
|
|
|