Commit 0eafe7a4 by LJM

bug

parent 593eb4c8
Showing with 9 additions and 0 deletions
......@@ -745,6 +745,15 @@ export default {
}).then(res => {
if (res.code === 0) {
if (res.data.quote_list.length > 0) {
if(res.data.quote_list[0].quote_status != 1 || res.data.quote_list[0].quote_status != 7){
this.$message({
showClose: true,
message: '请勾选报价单状态为确认中和待确认',
type: 'warning'
});
return;
}
var data = res.data.quote_list[0];
this.title = '修改报价';
this.dialogVisible = true;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment