7 changed files with 130 additions and 24 deletions
-
12src/components/doctorCheck/CheckSumSug.vue
-
7src/components/doctorCheck/PatientRegisterBase.vue
-
16src/components/doctorCheck/RegisterCheckList.vue
-
4src/components/patientRegister/PatientRegisterItem.vue
-
72src/components/sumDoctorCheck/SumPREdit.vue
-
30src/store/index.js
-
13src/views/doctorCheck/sumDoctorCheck.vue
@ -0,0 +1,72 @@ |
|||
<template> |
|||
<div style="display: flex"> |
|||
<div style="display: flex; flex-wrap: wrap; width: 100%"> |
|||
<div class="query"> |
|||
<span>总检医生</span> |
|||
<el-input v-model="sumDoctorCheck.sumPREdit.summaryDoctor" size="small" style="width: 110px" /> |
|||
</div> |
|||
<div class="query"> |
|||
<span>总检日期</span> |
|||
<el-date-picker v-model="sumDoctorCheck.sumPREdit.summaryDate" type="date" style="width: 130px" size="small" /> |
|||
</div> |
|||
<div class="query"> |
|||
<span>审核医生</span> |
|||
<el-input v-model="sumDoctorCheck.sumPREdit.auditDoctor" size="small" style="width: 110px" disabled/> |
|||
</div> |
|||
<div class="query"> |
|||
<span>审核日期</span> |
|||
<el-input :value="sumDoctorCheck.sumPREdit.auditDate ? lmoment(sumDoctorCheck.sumPREdit.auditDate, 'yyyy-MM-DD') :''" style="width: 120px" size="small" disabled></el-input> |
|||
</div> |
|||
<div class="query"> |
|||
<span>审核</span> |
|||
<el-checkbox v-model="sumDoctorCheck.sumPREdit.isAudit" disabled></el-checkbox> |
|||
</div> |
|||
</div> |
|||
|
|||
</div> |
|||
</template> |
|||
<script> |
|||
import moment from "moment"; |
|||
import { mapState } from "vuex"; |
|||
import { getapi, postapi, putapi, deletapi } from "@/api/api"; |
|||
|
|||
export default { |
|||
components: {}, |
|||
data() { |
|||
return { |
|||
|
|||
|
|||
}; |
|||
}, |
|||
|
|||
created() {}, |
|||
|
|||
//挂载完成 |
|||
mounted() {}, |
|||
|
|||
computed: { |
|||
...mapState(["dict", "doctorCheck","sumDoctorCheck", ]), |
|||
lmoment(date, forMat) { |
|||
return moment(new Date(date)).format(forMat); |
|||
}, |
|||
}, |
|||
methods: { |
|||
//查询 |
|||
btnQuery() { |
|||
this.sumDoctorCheck.sumPREdit.times++; |
|||
console.log("this.sumDoctorCheck.sumPREdit", this.sumDoctorCheck.sumPREdit); |
|||
}, |
|||
|
|||
//读身份证 |
|||
readIdCard() { |
|||
alert("读身份证"); |
|||
}, |
|||
}, |
|||
}; |
|||
</script> |
|||
<style scoped> |
|||
.query { |
|||
margin-left: 10px; |
|||
margin-top: 5px; |
|||
} |
|||
</style> |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue