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

部分文件因文件數量過多而無法顯示