|
@ -350,7 +350,7 @@ |
|
|
label="操作" |
|
|
label="操作" |
|
|
align="center" |
|
|
align="center" |
|
|
class-name="small-padding fixed-width" |
|
|
class-name="small-padding fixed-width" |
|
|
width="200" |
|
|
width="250" |
|
|
> |
|
|
> |
|
|
<template slot-scope="scope"> |
|
|
<template slot-scope="scope"> |
|
|
<el-button |
|
|
<el-button |
|
@ -387,6 +387,14 @@ |
|
|
v-hasPermi="['medicalFile:index:ecorde']" |
|
|
v-hasPermi="['medicalFile:index:ecorde']" |
|
|
>随访记录</el-button |
|
|
>随访记录</el-button |
|
|
> |
|
|
> |
|
|
|
|
|
<el-button |
|
|
|
|
|
size="mini" |
|
|
|
|
|
type="text" |
|
|
|
|
|
icon="el-icon-notebook-2" |
|
|
|
|
|
@click="handleReport(scope.row)" |
|
|
|
|
|
v-hasPermi="['medicalFile:index:report']" |
|
|
|
|
|
>评估报告单</el-button |
|
|
|
|
|
> |
|
|
<el-button |
|
|
<el-button |
|
|
:disabled="scope.row.status != 0 && scope.row.status != 3" |
|
|
:disabled="scope.row.status != 0 && scope.row.status != 3" |
|
|
size="mini" |
|
|
size="mini" |
|
@ -601,6 +609,7 @@ import { |
|
|
queryRecord, |
|
|
queryRecord, |
|
|
saveAidRecord, |
|
|
saveAidRecord, |
|
|
queueAdd, |
|
|
queueAdd, |
|
|
|
|
|
exportTreatmentPg, |
|
|
} from "@/api/medicalFile"; |
|
|
} from "@/api/medicalFile"; |
|
|
import { getToken } from "@/utils/auth"; |
|
|
import { getToken } from "@/utils/auth"; |
|
|
import { followupQuery } from "@/api/followupFile"; |
|
|
import { followupQuery } from "@/api/followupFile"; |
|
@ -609,6 +618,7 @@ export default { |
|
|
dicts: ["sys_normal_disable", "sys_user_sex"], |
|
|
dicts: ["sys_normal_disable", "sys_user_sex"], |
|
|
data() { |
|
|
data() { |
|
|
return { |
|
|
return { |
|
|
|
|
|
qzUrl: process.env.VUE_APP_API_QZURL, // 二维码路径 |
|
|
// 民族列表 |
|
|
// 民族列表 |
|
|
ethnicityList: [ |
|
|
ethnicityList: [ |
|
|
{ label: "汉族", value: "01" }, |
|
|
{ label: "汉族", value: "01" }, |
|
@ -1422,6 +1432,12 @@ export default { |
|
|
this.title = "修改诊疗档案"; |
|
|
this.title = "修改诊疗档案"; |
|
|
this.form = JSON.parse(JSON.stringify(row)); |
|
|
this.form = JSON.parse(JSON.stringify(row)); |
|
|
}, |
|
|
}, |
|
|
|
|
|
// 评估报告单 |
|
|
|
|
|
handleReport(row) { |
|
|
|
|
|
exportTreatmentPg({ treatmentId: row.id }).then((res) => { |
|
|
|
|
|
window.open(`${process.env.VUE_APP_API_QZURL}acupuncture${res.data}`); |
|
|
|
|
|
}); |
|
|
|
|
|
}, |
|
|
/** 提交审核 */ |
|
|
/** 提交审核 */ |
|
|
handleExamine(row, _status) { |
|
|
handleExamine(row, _status) { |
|
|
let form = JSON.parse(JSON.stringify(row)); |
|
|
let form = JSON.parse(JSON.stringify(row)); |
|
|