fix:修改参数值价格单位
Build and Deploy Vue3 / build (push) Successful in 9m19s
Build and Deploy Vue3 / deploy (push) Failing after 21s

This commit is contained in:
2026-01-08 11:35:21 +08:00
parent 98cb0e1c8e
commit d3479fb0bb
+1 -1
View File
@@ -941,7 +941,7 @@ const handleEditParamValue = (row) => {
attr_id: row.id,
attr_name: row.name,
attr_value: row.value || '',
attr_price: row.price || 0,
attr_price: (row.price / 100).toFixed(2) || 0,
index: row.index || 0,
attr_range: row.range || 0,
range_type: row.rangeType || 'equal'