sf
jiangping
2025-04-30 dcdb0231034810232f2542f3865666ebf72daf11
company_admin/src/components/business/OperaCategoryWindow.vue
@@ -225,6 +225,12 @@
          // 调用新建接口
          this.isWorking = true
          if (!this.form.id) {
            let arr = []
            this.form.budgetList.forEach(item => {
              if (item.maxamount || item.minamount) {
                arr.push(item)
              }
            })
            companyCreate({
              paramList: this.form.tableData,
              type: this.form.type,
@@ -232,7 +238,7 @@
              platCateId: this.form.platCateId,
              name: this.form.name,
              imgurl: this.form.imgurl,
              budgetList: this.form.budgetList
              budgetList: arr
            })
              .then(() => {
                this.visible = false
@@ -246,6 +252,12 @@
                this.isWorking = false
              })
          } else {
            let arr = []
            this.form.budgetList.forEach(item => {
              if (item.maxamount || item.minamount) {
                arr.push(item)
              }
            })
            companyUpdateById({
              id: this.form.id,
              paramList: this.form.tableData,
@@ -254,7 +266,7 @@
              platCateId: this.form.platCateId,
              name: this.form.name,
              imgurl: this.form.imgurl,
              budgetList: this.form.budgetList
              budgetList: arr
            })
              .then(() => {
                this.visible = false