| | |
| | | width="160" |
| | | > |
| | | <template slot-scope="scope"> |
| | | <span>{{ parseTime(scope.row.createTime) }}</span> |
| | | <span>{{ parseTime(scope.row.archivetime) }}</span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column |
| | |
| | | }, |
| | | ], |
| | | |
| | | cardlist: [ |
| | | { |
| | | name: "患者总数", |
| | | value: 123, |
| | | }, |
| | | { |
| | | name: "在院患者", |
| | | value: 23, |
| | | }, |
| | | { |
| | | name: "离院患者", |
| | | value: 41, |
| | | }, |
| | | { |
| | | name: "诊疗患者", |
| | | value: 56, |
| | | }, |
| | | { |
| | | name: "离世患者", |
| | | value: 0, |
| | | }, |
| | | ], |
| | | |
| | | // 表单参数 |
| | | form: { |
| | | name: "", |
| | |
| | | // 查询参数 |
| | | queryParams: { |
| | | pageNum: 1, |
| | | allhosp: "1", |
| | | allhosp: "0", |
| | | pageSize: 10, |
| | | idcardno: undefined, |
| | | name: undefined, |
| | |
| | | //修改/新增患者 |
| | | submitForm() { |
| | | if (this.amendtag) { |
| | | alterpatient(this.form) |
| | | .then((response) => { |
| | | console.log(response); |
| | | }) |
| | | .then(() => { |
| | | this.getList(); |
| | | this.$modal.msgSuccess("修改成功"); |
| | | }); |
| | | console.log(22); |
| | | this.form.isoperation = 2; |
| | | } else { |
| | | addpatient(this.form) |
| | | .then((response) => { |
| | | console.log(response); |
| | | }) |
| | | .then(() => { |
| | | this.getList(); |
| | | this.$modal.msgSuccess("添加成功"); |
| | | }); |
| | | this.form.isoperation = 1; |
| | | } |
| | | alterpatient(this.form) |
| | | .then((response) => { |
| | | console.log(response); |
| | | }) |
| | | .then(() => { |
| | | this.getList(); |
| | | this.$modal.msgSuccess("保存成功"); |
| | | }); |
| | | this.reset(); |
| | | // this.idds = ""; |
| | | this.Labelchange = false; |