yangfeng
2023-11-23 4d6d23e986f1cc9fed61f3161c46b4f2be069fb7
src/views/sales/salesOpportunity/AddSalesOpportunityDialog.vue
@@ -31,7 +31,20 @@
              <!--              </el-col>-->
              <el-col :span="12">
                <el-form-item label="销售机会编号" prop="number">
                  <WordInput
                  <el-input
                    v-if="
                      editConfig.title == '编辑' ||
                      (editConfig.title == '新建' && codenumer && (explain != '' || isIdDisabled))
                    "
                    :disabled="editConfig.title == '编辑'"
                    v-model="editConfig.infomation.number"
                    placeholder="请输入编码"
                  >
                  </el-input>
                  <span v-else-if="editConfig.title == '新建'" style="color: #f56c6c"
                    >请优先配置编码规范 <el-button type="text" @click="numberClick"> 配置规范 </el-button></span
                  >
                  <!-- <WordInput
                    v-if="codenumer && (explain != '' || isIdDisabled) && method == 0"
                    :codenumer="codenumer"
                    :sum="sum"
@@ -42,7 +55,7 @@
                  <span v-else-if="method == 0" style="color: #f56c6c"
                    >请优先配置编码规范 <el-button type="text" @click="numberClick"> 配置规范 </el-button></span
                  >
                  <span v-else>{{ editConfig.title === "新建" ? "自动生成" : editConfig.infomation.number }}</span>
                  <span v-else>{{ editConfig.title === "新建" ? "自动生成" : editConfig.infomation.number }}</span> -->
                </el-form-item>
              </el-col>
              <el-col :span="12">
@@ -313,13 +326,13 @@
          </div>
          <div class="product-view">
            <CommonFormTableView
                :show-summary="showSummary"
                :product-table-list="productTableList"
                @inputContent="inputContent"
                @addProductClick="addProductClick"
                @emptyProductClick="emptyProductClick"
                @recalculateProductClick="recalculateProductClick"
                @clearupProduct="clearupProduct"
              :show-summary="showSummary"
              :product-table-list="productTableList"
              @inputContent="inputContent"
              @addProductClick="addProductClick"
              @emptyProductClick="emptyProductClick"
              @recalculateProductClick="recalculateProductClick"
              @clearupProduct="clearupProduct"
            />
          </div>
@@ -600,10 +613,9 @@
import SelectClientDialog from "@/views/other/commonDialog/SelectClientDialog"
import SelectContactDialog from "@/views/other/commonDialog/SelectContactDialog"
import { getCityList } from "@/api/common/address"
import WordInput from "@/components/wordInput.vue"
import codeMixin from "@/views/client/followupRecords/mixin/codeMixin"
import codeMixin from "@/components/makepager/mixin/codeMixin"
import { getContactList } from "@/api/client/contacts"
import CommonFormTableView from "@/components/makepager/CommonFormTableView.vue";
import CommonFormTableView from "@/components/makepager/CommonFormTableView.vue"
export default {
  name: "AddSalesOpportunityDialog",
  mixins: [codeMixin],
@@ -619,7 +631,7 @@
      }
    }
  },
  components: {CommonFormTableView, WordInput, SelectClientDialog, SelectContactDialog },
  components: { CommonFormTableView, SelectClientDialog, SelectContactDialog },
  computed: {
    searchCommonHeight() {
      return this.$refs.searchCommonView.offsetHeight
@@ -634,7 +646,7 @@
      dialogWidth: "50%",
      editConfig: this.editCommonConfig,
      rules: {
        number: [{ required: true, message: "请输入销售机会编号", trigger: "blur" }],
        number: [{ required: true, validator: this.validateCheckCode, trigger: ["blur", "change"] }],
        name: [{ required: true, message: "请输入机会名称", trigger: "blur" }],
        member_id: [{ required: true, message: "请选择销售负责人", trigger: "change" }],
@@ -680,7 +692,7 @@
        sumProp: ["Amount", "total"],
        mergeNumber: 2
      },
      productId:1,
      productId: 1
    }
  },
  created() {
@@ -701,9 +713,6 @@
      if (val) {
        this.formInfo()
      }
    },
    "editConfig.infomation.codeStandID"() {
      this.formInfo()
    }
  },
  methods: {
@@ -747,10 +756,9 @@
    // 保存
    saveClick(formName) {
      this.$refs[formName].validate((valid) => {
        this.validateFormNumber()
        if (valid) {
          const hasProduct = this.tableData.every(ele=>!!ele.name)
          if (!hasProduct){
          const hasProduct = this.tableData.every((ele) => !!ele.name)
          if (!hasProduct) {
            this.$message.error("产品名称不能为空")
            return
          }
@@ -762,9 +770,14 @@
              console.log(res)
              this.editConfig.visible = false
              if (res.code === 200) {
                this.$message.success("添加成功")
                this.$parent.getData()
                // }
                this.$message.success("添加成功!")
                if (this.editConfig.title === "新建" && this.editConfig.infomation?.sourceTitle === "推进") {
                  this.$parent.handleClose()
                } else {
                  this.$parent.getData()
                }
              } else {
                this.$message.error(res.msg ? res.msg : "添加失败!")
              }
            })
          } else {
@@ -772,8 +785,10 @@
              console.log(res)
              this.editConfig.visible = false
              if (res.code === 200) {
                this.$message.success("编辑成功")
                this.$parent.getData()
                this.$message.success("编辑成功!")
                this.$parent?.getData()
              } else {
                this.$message.error(res.msg ? res.msg : "编辑失败!")
              }
            })
          }
@@ -822,8 +837,7 @@
        detail_address: data.detail_address || "",
        codeStandID: data.ID,
        codeRule: this.codeRule,
        products: this.tableData,
        products: this.tableData
      }
      return params
    },