Przeglądaj źródła

fix(财务模块): 修正付款计划相关文本显示问题

liujt 4 miesięcy temu
rodzic
commit
d6f0d95f39

+ 1 - 1
src/BIZComponents/paymentCollectionPlan/Index.vue

@@ -24,7 +24,7 @@
 
             <div class="pricebox">
                 <span class="amount">比例合计:{{ allRatio }}%</span>
-                <span class="amount">计划{{ menu === 'purchase' ? '收款' : '付款' }}金额合计:{{ allPrice }}元</span>
+                <span class="amount">计划{{ menu === 'purchase' ? '付款' : '收款' }}金额合计:{{ allPrice }}元</span>
 
                 <!-- <el-form-item
                     style="width: 300px"

+ 4 - 1
src/views/financialManage/invoiceManage/components/addOrEditDialogNew.vue

@@ -598,7 +598,10 @@
             width: 150,
             prop: 'paymentRatio',
             label: '比例',
-            align: 'center'
+            align: 'center',
+            formatter: (row) => {
+              return row.paymentRatio ? row.paymentRatio + '%' : ''
+            }
           },
           {
             width: 170,

+ 4 - 1
src/views/financialManage/invoiceManage/components/detailDialog.vue

@@ -360,7 +360,10 @@
             width: 150,
             prop: 'paymentRatio',
             label: '比例',
-            align: 'center'
+            align: 'center',
+            formatter: (row) => {
+              return row.paymentRatio ? row.paymentRatio + '%' : ''
+            }
           },
           {
             width: 170,

+ 1 - 1
src/views/purchasingManage/purchaseOrder/components/detailDialog.vue

@@ -469,7 +469,7 @@
         </el-tab-pane>
       </el-tabs>
       <headerTitle
-        title="款计划"
+        title="款计划"
         style="margin-top: 30px"
       ></headerTitle>
       <PaymentCollectionPlan