wolyshaw 4 年 前
コミット
ef5df131e5

ファイルの差分が大きいため隠しています
+ 0 - 0
dist/index.html


ファイルの差分が大きいため隠しています
+ 0 - 0
dist/static/css/chunk-81a74e0a.938483ae.css


ファイルの差分が大きいため隠しています
+ 0 - 0
dist/static/js/app.532d1864.js


ファイルの差分が大きいため隠しています
+ 0 - 0
dist/static/js/chunk-2242a7be.7daa1ca8.js


ファイルの差分が大きいため隠しています
+ 0 - 0
dist/static/js/chunk-81a74e0a.4946e7cc.js


+ 4 - 4
src/views/teamBuild/modals/change-voice.vue

@@ -166,8 +166,8 @@ const formatAllGoods = (data, kitGroupPurchaseType) => {
           if (json[kitGroupPurchaseType] !== undefined) {
             const _item = {
               ...item,
-              kitGroupPurchaseTypePrice: json[kitGroupPurchaseType],
-              coursePurchaseTypeJsonTypePrice: courseJson[kitGroupPurchaseType],
+              kitGroupPurchaseTypePrice: json[kitGroupPurchaseType] || 0,
+              coursePurchaseTypeJsonTypePrice: courseJson[kitGroupPurchaseType] || 0,
               _calculated_price: (kitGroupPurchaseType === 'FREE' ? 0 : (kitGroupPurchaseType === 'LEASE' ? item.depositFee : item.price))
             }
             musicalGoods.push(_item)
@@ -291,8 +291,8 @@ export default {
         this.originalAccessoriesPrice -
         this.originalMusicalPrice -
         this.originalCourseFee -
-        this.coursePurchaseTypeJsonTypePrice -
-        this.kitGroupPurchaseTypePrice
+        (this.coursePurchaseTypeJsonTypePrice || 0) -
+        (this.kitGroupPurchaseTypePrice || 0)
       )
       // console.log(
       //   this.item.kitGroupPurchaseType,

この差分においてかなりの量のファイルが変更されているため、一部のファイルを表示していません