فهرست منبع

二期项目/前端语言修改

xiewd 22 ساعت پیش
والد
کامیت
37e9dcb47e
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      ruoyi-ui-vue2/src/views/crmManagement/project/view.vue

+ 2 - 2
ruoyi-ui-vue2/src/views/crmManagement/project/view.vue

@@ -520,7 +520,7 @@
                   <!--报价者-->
                   <Column :label="$t('quotation.quoter')" prop="nickName"/>
                   <!--价格-->
-                  <Column :label="$t('quotation.finalPrice')" prop="finalPrice">
+                  <Column :label="$t('quotation.price')" prop="finalPrice">
                     <template #default="{ row }">
                       {{ Number(row.quotationStatus) >= 6 ? numFormat(row.finalCurrencyPrice ? row.finalCurrencyPrice : row.price) : '-' }}
                     </template>
@@ -532,7 +532,7 @@
                     </template>
                   </Column>
                   <!--总价-->
-                  <Column :label="$t('quotation.additionalCost')" prop="additionalFees">
+                  <Column :label="$t('quotation.totalPriceLabel')" prop="additionalFees">
                     <template #default="{ row }">
                       {{ Number(row.quotationStatus) >= 6 ? numFormat(row.finalCurrencyPrice ? row.finalCurrencyPrice + row.additionalFees : row.price + row.additionalFees): '-' }}
                     </template>