Browse Source

Merge remote-tracking branch 'origin/master'

zhaohongpeng 7 years ago
parent
commit
1deb06014a
2 changed files with 4 additions and 3 deletions
  1. 2 2
      components/applyPurchase/SayPrice.vue
  2. 2 1
      nuxt.config.js

+ 2 - 2
components/applyPurchase/SayPrice.vue

@@ -219,8 +219,8 @@
         }
       },
       onReplyLapQtyBlur: function (index) {
-        let lapQty = this.sayPriceObj.replies[index].lapQty
-        let limitDownObj = this.getLimitDownQty()
+        let lapQty = Number(this.sayPriceObj.replies[index].lapQty)
+        let limitDownObj = Number(this.getLimitDownQty())
         if (!lapQty || lapQty < 1) {
           this.sayPriceObj.replies[index].lapQty = ''
           this.$message.error('输入值必须为正整数')

+ 2 - 1
nuxt.config.js

@@ -157,6 +157,7 @@ module.exports = {
     '/UASBatchPutOnProperty**': baseUrl,
     '/UASBatchPutOnProperty/**': baseUrl,
     '/seek/**': baseUrl,
-    '/inquiry/**': commonUrl
+    '/inquiry/**': commonUrl,
+    '/b2b/**': baseUrl
   }
 }