yangfeng
2023-07-19 23d80c1b64f23ede237ab8e89ebc2ee2aaf43f26
src/views/client/contacts/AddContactsDialog.vue
@@ -162,12 +162,12 @@
          <div v-if="isUnflod" class="basic-info-view">
            <el-row>
              <el-col :span="24">
                <el-form-item label="备注" prop="notes">
                <el-form-item label="备注" prop="desc">
                  <el-input
                    type="textarea"
                    :autosize="{ minRows: 2, maxRows: 4 }"
                    placeholder="请输入内容"
                    v-model="editConfig.infomation.notes"
                    v-model="editConfig.infomation.desc"
                  ></el-input>
                </el-form-item>
              </el-col>
@@ -230,7 +230,7 @@
          title: "新建",
          infomation: {
            name: "",
            number: "LEA50",
            number: "",
            client_id: "",
            phone: "",
            position: "",
@@ -245,7 +245,7 @@
            city_id: "",
            region_id: "",
            postalCode: "",
            notes: ""
            desc: ""
          }
        }
      }
@@ -351,6 +351,7 @@
    saveParams() {
      let data = this.editConfig.infomation
      let params = {
        id: this.editConfig.title === "新建" ? 0 : data.id,
        birthday: data.birthday || "",
        city_id: data.city_id || 0,
        client_id: 0,