|
|
|
@ -41,7 +41,7 @@ |
|
|
|
|| dragCol[index].prop == 'qztlIsGt' |
|
|
|
|| dragCol[index].prop == 'qztlIsWh' |
|
|
|
|| dragCol[index].prop == 'qztlIsFj' |
|
|
|
"> |
|
|
|
"> |
|
|
|
{{ scope.row[dragCol[index].prop] == "Y" ? "是" : "否" }} |
|
|
|
</div> |
|
|
|
|
|
|
|
@ -209,8 +209,8 @@ |
|
|
|
</el-dialog> |
|
|
|
|
|
|
|
<!-- 导入企业数据 --> |
|
|
|
<el-dialog title="导入企业数据" :visible.sync="dialogWin.ImportOrgData" width="800px" |
|
|
|
:append-to-body="true" :close-on-click-modal="false"> |
|
|
|
<el-dialog title="导入企业数据" :visible.sync="dialogWin.ImportOrgData" width="800px" :append-to-body="true" |
|
|
|
:close-on-click-modal="false"> |
|
|
|
<ImportOrgData /> |
|
|
|
</el-dialog> |
|
|
|
|
|
|
|
@ -247,8 +247,8 @@ |
|
|
|
</el-dialog> |
|
|
|
|
|
|
|
<!--通用本地参数设置--> |
|
|
|
<el-dialog title="本地参数设置" :visible.sync="dialogWin.LocalConfig" :close-on-click-modal="false" :append-to-body="true" |
|
|
|
width="800px" height="600px"> |
|
|
|
<el-dialog title="本地参数设置" :visible.sync="dialogWin.LocalConfig" :close-on-click-modal="false" |
|
|
|
:append-to-body="true" width="800px" height="600px"> |
|
|
|
<LocalConfig /> |
|
|
|
</el-dialog> |
|
|
|
|
|
|
|
@ -645,8 +645,8 @@ export default { |
|
|
|
}, |
|
|
|
|
|
|
|
// 导入企业(青藏公司)数据 |
|
|
|
btnImportOrgData(){ |
|
|
|
|
|
|
|
btnImportOrgData() { |
|
|
|
|
|
|
|
// |
|
|
|
this.dataTransOpts.plus.ImportOrgData++ |
|
|
|
this.dialogWin.ImportOrgData = true |
|
|
|
@ -1313,18 +1313,28 @@ export default { |
|
|
|
switch (checkType) { |
|
|
|
case 'pacs': |
|
|
|
url = '/api/app/ImportPacsResult/ImportResultByPatientRegisterId' |
|
|
|
postapi(url, { patientRegisterId: row.id }) |
|
|
|
.then(res => { |
|
|
|
if (res.code > -1) { |
|
|
|
return postapi('/api/app/ImportElectrocardiogramResult/ImportElectrocardiogramResultByPatientRegisterId', { patientRegisterId: row.id }) |
|
|
|
} |
|
|
|
}) |
|
|
|
.then(res => { |
|
|
|
if (res && res.code > -1) { |
|
|
|
this.$message.success({ showClose: true, message: '导入成功!' }) |
|
|
|
this.rowClick(row) |
|
|
|
} |
|
|
|
}) |
|
|
|
break; |
|
|
|
default: |
|
|
|
postapi(url, { patientRegisterId: row.id }).then(res => { |
|
|
|
if (res.code > -1) { |
|
|
|
this.$message.success({ showClose: true, message: '导入成功!' }) |
|
|
|
this.rowClick(row) |
|
|
|
} |
|
|
|
}) |
|
|
|
break; |
|
|
|
} |
|
|
|
postapi(url, { patientRegisterId: row.id }).then(res => { |
|
|
|
if (res.code > -1) { |
|
|
|
this.$message.success({ showClose: true, message: '导入成功!' }) |
|
|
|
this.rowClick(row) |
|
|
|
} else { |
|
|
|
this.$message.error({ showClose: true, message: res.message }) |
|
|
|
} |
|
|
|
}) |
|
|
|
}, |
|
|
|
|
|
|
|
//通用导出 |
|
|
|
|