parantid
This commit is contained in:
parent
f09400ffca
commit
ec9e2ba18a
@ -611,6 +611,7 @@
|
||||
@click="ydbb(scope.row)"
|
||||
>写诊断</el-button
|
||||
>
|
||||
<!-- -->
|
||||
<!-- scope.row.screeningType == 1 只有等于居民预约的时候才会显示该按钮 1 == 居民预约 2 == 医生推送 -->
|
||||
|
||||
<!-- <el-button size="mini" type="text"
|
||||
@ -1884,6 +1885,7 @@ export default {
|
||||
// 部门列表
|
||||
deptOptions: [],
|
||||
activeNames: ["0"],
|
||||
patientId:'',
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 15,
|
||||
@ -2193,7 +2195,8 @@ export default {
|
||||
screeningId: this.screeningId,
|
||||
// recordId: this.idyd,
|
||||
registerId: this.registerId,
|
||||
diagnosticResult: this.ruleForm.descyd
|
||||
diagnosticResult: this.ruleForm.descyd,
|
||||
patientId:this.patientId
|
||||
}).then(res => {
|
||||
console.log(res)
|
||||
this.$modal.msgError(res.msg);
|
||||
@ -2209,7 +2212,8 @@ export default {
|
||||
// recordId: this.idxs,
|
||||
registerId: this.registerId,
|
||||
diagnosticResult: this.ruleForm.descdxxb,
|
||||
screeningId: this.screeningId
|
||||
screeningId: this.screeningId,
|
||||
patientId:this.patientId
|
||||
}).then(res => {
|
||||
console.log(res)
|
||||
this.$modal.msgSuccess("保存成功");
|
||||
@ -2223,7 +2227,9 @@ export default {
|
||||
attachment: this.attachmentamz,
|
||||
registerId: this.registerId,
|
||||
diagnosticResult: this.ruleForm.descdxxb,
|
||||
screeningId: this.screeningId
|
||||
screeningId: this.screeningId,
|
||||
patientId:this.patientId
|
||||
|
||||
}).then(res => {
|
||||
this.$modal.msgSuccess("保存成功");
|
||||
this.ydbbopen = false;
|
||||
@ -2256,11 +2262,22 @@ export default {
|
||||
})
|
||||
.then(() => {
|
||||
receivescreening(item.screeningId).then(res => {
|
||||
this.$message({
|
||||
if(res.code==500){
|
||||
this.$message({
|
||||
type: "error",
|
||||
message: res.data
|
||||
});
|
||||
|
||||
}else if(res.code==200){
|
||||
this.$message({
|
||||
type: "success",
|
||||
message: res.data
|
||||
});
|
||||
this.getList();
|
||||
|
||||
|
||||
}
|
||||
|
||||
});
|
||||
})
|
||||
.catch(() => {
|
||||
@ -2334,6 +2351,8 @@ export default {
|
||||
this.title = "血小板筛查";
|
||||
},
|
||||
ydbb(item) {
|
||||
console.log(item)
|
||||
this.patientId=item.patientId
|
||||
this.isflas = true;
|
||||
if (item.projectName == "糖尿病-眼底病变筛查") {
|
||||
this.attachment = "";
|
||||
|
||||
Loading…
Reference in New Issue
Block a user