| | |
| | | <el-option v-for="item in clientStatusOptions" :key="item.id" :label="item.name" :value="item.id"> |
| | | </el-option> |
| | | </el-select> |
| | | <div class="common-select-btn"><i class="el-icon-setting"></i></div> |
| | | <!-- <div class="common-select-btn"><i class="el-icon-setting"></i></div> --> |
| | | </div> |
| | | </el-form-item> |
| | | </el-col> |
| | |
| | | </el-form-item> |
| | | </el-col> |
| | | <el-col :span="12"> |
| | | <el-form-item label="联系方式" prop="phoneNumber"> |
| | | <el-input |
| | | <el-form-item label="联系方式" prop="contactInfo"> |
| | | <!-- <el-input |
| | | v-model="editConfig.infomation.phoneNumber" |
| | | maxlength="11" |
| | | show-word-limit |
| | | oninput="value=value.replace(/[^\d]/g,'')" |
| | | ></el-input> |
| | | ></el-input> --> |
| | | <el-select v-model="editConfig.infomation.contactInfo" placeholder="请选择" size="mini"> |
| | | <el-option |
| | | v-for="item in contactInfoOptions" |
| | | :key="item.id" |
| | | :label="item.username" |
| | | :value="item.id" |
| | | > |
| | | </el-option> |
| | | </el-select> |
| | | </el-form-item> |
| | | </el-col> |
| | | <el-col v-if="isUnflod" :span="12"> |
| | |
| | | </el-col> |
| | | <el-col :span="12"> |
| | | <el-form-item label="联系日期" prop="follow_time"> |
| | | <el-date-picker v-model="editConfig.infomation.follow_time" type="date" placeholder="选择日期"> |
| | | <el-date-picker |
| | | v-model="editConfig.infomation.follow_time" |
| | | value-format="yyyy-MM-dd" |
| | | type="date" |
| | | placeholder="选择日期" |
| | | > |
| | | </el-date-picker> |
| | | </el-form-item> |
| | | </el-col> |
| | | <el-col :span="12"> |
| | | <el-form-item label="下次回访日期" prop="next_follow_time"> |
| | | <el-date-picker v-model="editConfig.infomation.next_follow_time" type="date" placeholder="选择日期"> |
| | | <el-date-picker |
| | | v-model="editConfig.infomation.next_follow_time" |
| | | value-format="yyyy-MM-dd" |
| | | type="date" |
| | | placeholder="选择日期" |
| | | > |
| | | </el-date-picker> |
| | | </el-form-item> |
| | | </el-col> |
| | |
| | | ] |
| | | }, |
| | | clientStatusOptions: [], // 客户状态 |
| | | contactInfoOptions: [], // 联系方式 |
| | | memberOptions: [], |
| | | unflodCollapseStr: "收起", |
| | | isUnflod: true, |