1
xuxueyang
2024-07-15 473a017e42a80136c307d48f9ba17112560c9da9
sub_pages/supplier/flower-manage/flower-add.vue
@@ -521,11 +521,14 @@
               return
            }
            var tmp = parseFloat(this.dto.price)
            if (isNaN(tmp) || ('' + tmp.toFixed(2)) !== ('' + this.dto.price)) {
            if (isNaN(tmp) || ('' + tmp) !== ('' + this.dto.price)) {
               this.$message.showToast('商品价格格式错误,精确到分')
               return
            }
            if (tmp.toFixed(2) !== tmp.toFixed(3)) {
               this.$message.showToast('商品价格至多精确到分')
               return
            }
            if (this.dto.price <= 0) {
               this.$message.showToast('商品价格不能小于等于0')
               return