| | |
| | | v-model="queryParams.tjNumber" |
| | | style="width: 240px" |
| | | placeholder="请输入体检号" |
| | | @blur="submitForm" |
| | | @blur="hb" |
| | | @keyup.enter.native="submitForm" |
| | | ></el-input> |
| | | </el-form-item> |
| | |
| | | import Public from "@/components/public"; |
| | | import { getInfo } from "@/api/login"; |
| | | import { |
| | | huaYangetProList, |
| | | yingXiangGetProList, |
| | | getPhotoList, |
| | | getaddRemark, |
| | | getParentList, |
| | |
| | | queryParams: { |
| | | page: 1, |
| | | pageSize: 10, |
| | | pageNum:1, |
| | | tjNumber: "", |
| | | type: "", |
| | | name: null, |
| | |
| | | getList() { |
| | | this.loading = true; |
| | | this.queryParams.type = this.tjStatus; |
| | | huaYangetProList(this.queryParams).then((response) => { |
| | | yingXiangGetProList(this.queryParams).then((response) => { |
| | | if (response.code == 200) { |
| | | this.loading = false; |
| | | if (response.data) { |
| | |
| | | radioChange(val) { |
| | | this.loading = true; |
| | | this.queryParams.type = val; |
| | | huaYangetProList(this.queryParams).then((response) => { |
| | | yingXiangGetProList(this.queryParams).then((response) => { |
| | | if (response.code == 200) { |
| | | this.loading = false; |
| | | if (response.data) { |
| | |
| | | } |
| | | }); |
| | | }, |
| | | hb(){ |
| | | console.log(this.queryParams.tjNumber); |
| | | if (this.queryParams.tjNumber != "") { |
| | | this.submitForm(); |
| | | } |
| | | }, |
| | | |
| | | // 搜索 |
| | | submitForm() { |