Commit 32115911 authored by gengchunlei's avatar gengchunlei

医生端 v1.2 1、his详情在PC端查看

parent 63ef7beb
......@@ -66,7 +66,7 @@ export default {
if (!token) {
token = sessionStorage.getItem('token')
if (process.env.NODE_ENV !== 'production') {
token = '2f3d10c8-d036-4a64-82e1-08d122359e94'
token = '929d931e-faa5-46e3-a9ad-19ced88b18dc'
}
}
if (token) {
......
......@@ -69,8 +69,9 @@
</template>
<script>
import { getVisitManageList } from '@/api/doctor/disease.js'
import { delDiagnose, getVisitManageList } from '@/api/doctor/disease.js'
import { useStore } from '@/doctor/store'
import { showConfirmDialog } from 'vant'
export default {
inject: ['residentInfo'],
......@@ -143,8 +144,14 @@ export default {
if (record.id == null) {
this.$message.info('暂时无法查看 详情信息')
return
}
// 通用随访
} else if (record.source == 7) {
//数据来源为his时展示 `请在医生PC端查看详情`
showConfirmDialog({
message: '请在医生PC端查看详情'
}).then(() => {}).catch((err) => {})
} else {
//随访详情
this.$router.push({
path: '/doctor/followUp/detail',
query: {
......@@ -153,6 +160,7 @@ export default {
diseaseType: this.diseaseType,
}
})
}
},
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