Commit bee2daa1 authored by 芮自成's avatar 芮自成

代码合并

parents 689a394f 32115911
...@@ -47,7 +47,6 @@ export default { ...@@ -47,7 +47,6 @@ export default {
// this.openIframe(res.data.treeCode, menuId); // this.openIframe(res.data.treeCode, menuId);
// }); // });
// }else { // }else {
debugger
this.iframeSrc = `${this.src}` this.iframeSrc = `${this.src}`
// } // }
}, },
......
...@@ -69,8 +69,9 @@ ...@@ -69,8 +69,9 @@
</template> </template>
<script> <script>
import { getVisitManageList } from '@/api/doctor/disease.js' import { delDiagnose, getVisitManageList } from '@/api/doctor/disease.js'
import { useStore } from '@/doctor/store' import { useStore } from '@/doctor/store'
import { showConfirmDialog } from 'vant'
export default { export default {
inject: ['residentInfo'], inject: ['residentInfo'],
...@@ -143,8 +144,14 @@ export default { ...@@ -143,8 +144,14 @@ export default {
if (record.id == null) { if (record.id == null) {
this.$message.info('暂时无法查看 详情信息') this.$message.info('暂时无法查看 详情信息')
return return
} } else if (record.source == 7) {
// 通用随访 //数据来源为his时展示 `请在医生PC端查看详情`
showConfirmDialog({
message: '请在医生PC端查看详情'
}).then(() => {}).catch((err) => {})
} else {
//随访详情
this.$router.push({ this.$router.push({
path: '/doctor/followUp/detail', path: '/doctor/followUp/detail',
query: { query: {
...@@ -153,6 +160,7 @@ export default { ...@@ -153,6 +160,7 @@ export default {
diseaseType: this.diseaseType, diseaseType: this.diseaseType,
} }
}) })
}
}, },
editBtn() { editBtn() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment