mo 4 년 전
부모
커밋
353da3ed94

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/static/js/chunk-c8916fba.111f63d1.js


+ 3 - 0
src/views/businessManager/orderManager/financeManager.vue

@@ -501,6 +501,9 @@ export default {
             this.$message.error('请输入销售收入或服务收入')
             return
           }
+          if (!this.form.goodsAmount) {
+            this.form.goodsList = null
+          }
           this.form.goodies = {}
           for (let i in this.form.goodsList) {
             this.form.goodies[this.form.goodsList[i]['id']] = this.form.goodsList[i]['number']

+ 4 - 7
src/views/teamBuild/components/teamSoundMoney.vue

@@ -1264,12 +1264,7 @@ export default {
       let isMusic = true;
       this.activeSoundList.forEach(item => {
         if (!item.jihua) {
-          if (item.jihua === 0) {
-          } else {
-            isJihua = false;
-          }
-
-
+          isJihua = false;
         }
         if (!item.yuji) {
           if (item.yuji === 0) {
@@ -1773,7 +1768,9 @@ export default {
     },
     setChioseMusic (row) {
       // 多个乐器得比较乐器费用
-
+      if (row.fangshi.length <= 0) {
+        return
+      }
       let flag = true;
       row.fangshi.sort((a, b) => {
         return b.mode.price - a.mode.price

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.