Browse Source

Merge remote-tracking branch 'origin/hotfix-yc-0611' into dev

dongbw 7 years ago
parent
commit
f0f615255d
1 changed files with 2 additions and 2 deletions
  1. 2 2
      components/mobile/applyPurchase/SayPriceInfo.vue

+ 2 - 2
components/mobile/applyPurchase/SayPriceInfo.vue

@@ -288,7 +288,7 @@
           }, err => {
             console.log(err)
 //              this.$message.success('系统错误')
-            this.onRemind('系统错误')
+            this.onRemind(err.response.data.message || '系统错误')
           })
       },
       onRemind: function (str) {
@@ -302,7 +302,7 @@
             item.agreed = 0
             this.onRemind('拒绝报价成功')
           }, err => {
-            this.onRemind('拒绝报价失败,系统错误')
+            this.onRemind(err.response.data.message || '拒绝报价失败,系统错误')
             console.log(err)
           })
       },