| | |
| | | placeholder="选择装机时间" |
| | | /> |
| | | </el-form-item> |
| | | |
| | | </el-col> |
| | | <el-col :span="12"> |
| | | <el-form-item label="检查项目" prop=""> |
| | |
| | | <el-input v-model="formData.remark" placeholder="请输入备注" /> |
| | | </el-form-item> |
| | | <el-form-item label="是否多耐" prop="tolerance"> |
| | | <el-tag type="info" v-if="formData.tolerance == 0">否</el-tag> |
| | | <el-tag type="danger" v-else>是</el-tag> |
| | | <el-tag type="info" v-if="formData.tolerance == 0">否</el-tag> |
| | | <el-tag type="danger" v-else>是</el-tag> |
| | | </el-form-item> |
| | | </el-col> |
| | | </el-row> |
| | |
| | | <el-button @click="submitForm" type="primary" :disabled="formLoading">检查完成</el-button> |
| | | <el-button @click="cancelInstall" :disabled="formLoading">放弃检查</el-button> |
| | | <el-button @click="resetForm()">重 置</el-button> |
| | | <el-button @click="yddownload()">平板运动心电图知情同意书</el-button> |
| | | <el-button @click="sgdownload()">食管心脏电生理诊疗知情同意书</el-button> |
| | | <el-button |
| | | v-if="needAutoFeeConfirm(formData.checkType)" |
| | | @click="feeConfirm" |
| | |
| | | import { isStringEmpty } from '@/utils/stringUtil' |
| | | import { curDayEnd, curDayStart } from '@/utils/dateUtil' |
| | | import { QueueVO } from '@/api/ecg/queue' |
| | | import { RoomBedVO } from '@/api/ecg/doctor' |
| | | import { RoomBedVO, DoctorApi } from '@/api/ecg/doctor' |
| | | import { Barcode } from '@/components/Barcode' |
| | | import { useCheckTypeStore } from '@/store/modules/checkType' |
| | | import { getCheckTypeName, needAutoFeeConfirm } from '../../../../utils/checkTypeFormatter' |
| | |
| | | room: { |
| | | type: Object as PropType<RoomBedVO>, |
| | | required: true |
| | | }, |
| | | setappointmentId: { |
| | | type: [String, Number], |
| | | required: false, |
| | | default: null |
| | | } |
| | | }) |
| | | |
| | |
| | | } |
| | | formRef.value?.resetFields() |
| | | } |
| | | |
| | | const yddownload = async () => { |
| | | await DoctorApi.yddownload(props.setappointmentId) |
| | | } |
| | | const sgdownload = async () => { |
| | | await DoctorApi.sgdownload(props.setappointmentId) |
| | | } |
| | | const getRentInfoByPatId = () => { |
| | | const tempPatId = formData.value.patId |
| | | resetForm() |