From b02cd77eb78d973c1eb11ebf03d7d5d71b02aa65 Mon Sep 17 00:00:00 2001
From: gaoluyang <2820782392@qq.com>
Date: 星期二, 09 十二月 2025 10:26:53 +0800
Subject: [PATCH] 1.南洋电缆小数点修改
---
src/views/salesManagement/salesQuotation/index.vue | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/views/salesManagement/salesQuotation/index.vue b/src/views/salesManagement/salesQuotation/index.vue
index cefc769..1146386 100644
--- a/src/views/salesManagement/salesQuotation/index.vue
+++ b/src/views/salesManagement/salesQuotation/index.vue
@@ -209,7 +209,7 @@
</el-table-column>
<el-table-column prop="quantity" label="鏁伴噺">
<template #default="scope">
- <el-input-number v-model="scope.row.quantity" :min="1" :precision="0" style="width: 100%" />
+ <el-input-number v-model="scope.row.quantity" :min="1" style="width: 100%" />
</template>
</el-table-column>
<el-table-column prop="unit" label="鍗曚綅">
@@ -219,7 +219,7 @@
</el-table-column>
<el-table-column prop="unitPrice" label="鍗曚环">
<template #default="scope">
- <el-input-number v-model="scope.row.unitPrice" :min="0" :precision="2" style="width: 100%" @change="calculateAmount(scope.row)" />
+ <el-input-number v-model="scope.row.unitPrice" :min="0" style="width: 100%" @change="calculateAmount(scope.row)" />
</template>
</el-table-column>
<el-table-column prop="amount" label="閲戦" width="120">
--
Gitblit v1.9.3