| | |
| | | :visible.sync="isShowModal" |
| | | :confirm-working="isWorking" |
| | | @confirm="confirm" |
| | | @close="close" |
| | | > |
| | | <el-form :model="param" ref="paramRef" :rules="rules"> |
| | | <div class="title_tip">访客预约</div> |
| | |
| | | <el-form-item label="手机号" prop="phone"> |
| | | <el-input |
| | | v-model="param.phone" |
| | | maxlength="11" |
| | | placeholder="请输入联系人的手机号" |
| | | ></el-input> |
| | | </el-form-item> |
| | |
| | | <el-form-item label="随车人数" prop="memberNum"> |
| | | <el-input |
| | | v-model="param.memberNum" |
| | | oninput="value=value.replace(/^(0+)|[^\d]+/g, '').slice(0, 6)" |
| | | placeholder="请输入随车人员总数" |
| | | ></el-input> |
| | | </el-form-item> |
| | |
| | | this.$set(this.param, 'faceImg', file.imgurl) |
| | | this.$set(this.param, 'faceImgUrl', file.imgurlfull) |
| | | }, |
| | | close () { |
| | | this.isShowModal = false |
| | | this.$emit('close') |
| | | }, |
| | | // 同步信息 |
| | | confirm () { |
| | | this.$refs.paramRef.validate((valid) => { |