| | |
| | | <el-table-column type="selection" width="55" align="center" /> |
| | | <el-table-column label="序号" type="index" width="60" align="center" /> |
| | | |
| | | <el-table-column |
| | | label="编号" |
| | | align="center" |
| | | prop="caseNo" |
| | | width="140" |
| | | /> |
| | | <el-table-column label="编号" align="center" prop="caseNo" width="140" /> |
| | | <el-table-column label="患者信息" align="center" width="260"> |
| | | <template slot-scope="scope"> |
| | | <div class="donor-info"> |
| | |
| | | append-to-body |
| | | > |
| | | <div class="action-confirm"> |
| | | <p>确定要{{ actionText }}转运单 "{{ currentTransport.patName }}" 吗?</p> |
| | | <p> |
| | | 确定要{{ actionText }}转运单 "{{ currentTransport.patName }}" 吗? |
| | | </p> |
| | | </div> |
| | | <div slot="footer" class="dialog-footer"> |
| | | <el-button @click="actionOpen = false">取 消</el-button> |
| | |
| | | transportEdit, |
| | | transportDel, |
| | | transportInfo, |
| | | donateList |
| | | donateInfo, |
| | | donateList, |
| | | donateEdit |
| | | } from "@/api/businessApi/index"; |
| | | import TransportDetail from "./transportDetail"; |
| | | import TransportEdit from "./TransportEdit"; |
| | |
| | | |
| | | const response = await transportEdit(requestData); |
| | | |
| | | if (response.code === 200) { |
| | | if (response.code == 200) { |
| | | this.$modal.msgSuccess(`${this.actionText}转运成功`); |
| | | if (requestData.transitStatus==3) { |
| | | const resappear = await donateInfo(requestData.reportId); |
| | | if (resappear.code) { |
| | | let obj = resappear.data; |
| | | obj.isDonate = 1; |
| | | await donateEdit(obj); |
| | | this.$modal.msgSuccess(`对应上报案例已进入正式案例流程`); |
| | | } |
| | | } |
| | | this.getList(); |
| | | } else { |
| | | this.$modal.msgError(response.msg || `${this.actionText}转运失败`); |