Browse Source

订单详情-权益信息权益件单价更换字段

@dongkboy 1 month ago
parent
commit
0ec808bfb0

+ 1 - 1
src/views/finance/modules/auditDetail.vue

@@ -1048,7 +1048,7 @@
           <el-table-column prop="rightsCount" label="发放数量" align="center"></el-table-column>
           <el-table-column prop="packagePrice" label="总价" align="center">
             <template #default="scope">
-              <div>{{ scope.row.packagePrice * scope.row.rightsCount || scope.row.settlePrice * scope.row.rightsCount }}
+              <div>{{ scope.row.packagePrice * scope.row.rightsCount || scope.row.contractRate * scope.row.rightsCount }}
               </div>
             </template>
           </el-table-column>

+ 1 - 1
src/views/insurancePolicy/orderDetail.vue

@@ -1097,7 +1097,7 @@
           <el-table-column prop="rightsCount" label="发放数量" align="center"></el-table-column>
           <el-table-column prop="packagePrice" label="总价" align="center">
             <template #default="scope">
-              <div>{{ scope.row.packagePrice * scope.row.rightsCount || scope.row.settlePrice * scope.row.rightsCount }}
+              <div>{{ scope.row.packagePrice * scope.row.rightsCount || scope.row.contractRate * scope.row.rightsCount }}
               </div>
             </template>
           </el-table-column>