Commit bb770d62b5d455a6104eac1f909aab46a840b763

Authored by sanmu
1 parent b14da0a6

chore: 优化比重计算显示

src/views/project/order/RateModal.vue
... ... @@ -55,7 +55,7 @@
55 55 ...searchData.value,
56 56 designer: activeUser.value,
57 57 });
58   - info.value = res?.rate || 0;
  58 + info.value = (res?.rate || 0).toFixed(2);
59 59 }
60 60 return {
61 61 register,
... ...