1
xuxueyang
2024-07-15 e4bb10264e289d376ed5d938c59b0fdbb1d41d6b
sub_pages/supplier/flower-manage/flower-add.vue
@@ -525,10 +525,12 @@
               this.$message.showToast('商品价格格式错误,精确到分')
               return
            }
            if (tmp.toFixed(2) != tmp.toFixed(3)) {
               this.$message.showToast('商品价格至多精确到分')
               console.log('tmp.toFixed(2)',tmp.toFixed(2),tmp.toFixed(3))
            if ((tmp.toFixed(2) + '' + '0') !== tmp.toFixed(3)) {
               this.$message.showToast('商品价格至多精确到分')
               // console.log('tmp.toFixed(2)',tmp.toFixed(2),tmp.toFixed(3))
               return
            } else {
               this.dto.price = this.dto.price.toFixed(2)
            }
            if (this.dto.price <= 0) {
               this.$message.showToast('商品价格不能小于等于0')