| | |
| | | v-model="queryParams.name" |
| | | placeholder="请输入姓名" |
| | | @keyup.enter.native="handleQuery" |
| | | @input="queryParams.name = $event.replace(/\s/g, '')" |
| | | /> |
| | | </el-form-item> |
| | | <el-form-item label="体检号" prop="tjNum"> |
| | |
| | | @blur="hb" |
| | | style="width: 170px" |
| | | clearable |
| | | @input="queryParams.tjNum = $event.replace(/\s/g, '')" |
| | | /> |
| | | </el-form-item> |
| | | <el-form-item label="登记时间" prop="createTimeList"> |
| | |
| | | <!-- 弃检2,延期3 --> |
| | | <div slot="footer" class="dialog-footer"> |
| | | <!-- <el-button @click="cancel">延期</el-button> --> |
| | | <el-button @click="canaffirm">确认签离</el-button> |
| | | <el-button :loading = isLoading @click="canaffirm">确认签离</el-button> |
| | | </div> |
| | | </el-dialog> |
| | | </div> |
| | |
| | | leave: false, |
| | | checked: false, |
| | | radioId1: false, |
| | | isLoading:false, |
| | | createTimeList: [], |
| | | cusId: "", |
| | | payType: "0", |
| | |
| | | domainVos: this.DataList, |
| | | tjNumber: this.tjNumber, |
| | | }; |
| | | this.isLoading = true |
| | | gettjGoOut(data).then((res) => { |
| | | if (res.code === 200) { |
| | | this.$modal.msgSuccess("操作成功"); |
| | | this.open = false; |
| | | this.multiple = true; |
| | | this.isLoading = false |
| | | this.getList(); |
| | | } |
| | | }); |