소스 검색

Merge branch '01/19NavMenu' into online

wolyshaw 4 년 전
부모
커밋
2d29a580ab

+ 1 - 1
src/views/resetTeaming/components/resetPayList.vue

@@ -91,7 +91,7 @@
                          label="现价">
                          label="现价">
           <template slot-scope="scope">
           <template slot-scope="scope">
             <div>
             <div>
-              {{ scope.row.courseCurrentPrice | moneyFormat }}
+              {{ (scope.row.paymentType === 'SPAN_GROUP_CLASS_ADJUST' ? scope.row.courseOriginalPrice : scope.row.courseCurrentPrice) | moneyFormat }}
             </div>
             </div>
           </template>
           </template>
         </el-table-column>
         </el-table-column>

+ 1 - 1
src/views/resetTeaming/components/resetPayListSchool.vue

@@ -91,7 +91,7 @@
                          label="现价">
                          label="现价">
           <template slot-scope="scope">
           <template slot-scope="scope">
             <div>
             <div>
-              {{ scope.row.courseCurrentPrice | moneyFormat }}
+              {{ (scope.row.paymentType === 'SPAN_GROUP_CLASS_ADJUST' ? scope.row.courseOriginalPrice : scope.row.courseCurrentPrice) | moneyFormat }}
             </div>
             </div>
           </template>
           </template>
         </el-table-column>
         </el-table-column>

+ 11 - 0
src/views/resetTeaming/modals/review-detail.vue

@@ -114,9 +114,20 @@
             </el-tooltip>
             </el-tooltip>
           </p>
           </p>
         </template>
         </template>
+        <template slot-scope="scope">
+          <div>
+            {{ (scope.row.courseCurrentPrice) | moneyFormat }}
+          </div>
+        </template>
       </el-table-column>
       </el-table-column>
       <el-table-column prop="courseOriginalPrice"
       <el-table-column prop="courseOriginalPrice"
                        label="原价(元)">
                        label="原价(元)">
+
+        <template slot-scope="scope">
+          <div>
+            {{ (musicGroupPaymentCalenders[0].paymentType === 'SPAN_GROUP_CLASS_ADJUST' ? musicGroupPaymentCalenders[0].paymentAmount : scope.row.courseOriginalPrice) | moneyFormat }}
+          </div>
+        </template>
       </el-table-column>
       </el-table-column>
     </el-table>
     </el-table>
     <el-alert title="缴费周期"
     <el-alert title="缴费周期"