Browse Source

2025.03.20 待报价清单 - 转报价优化

java8
jiayang yue 10 months ago
parent
commit
53c87d0b6a
  1. 11
      src/views/modules/quote/quotes.vue

11
src/views/modules/quote/quotes.vue

@ -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)

Loading…
Cancel
Save