|
@@ -173,6 +173,7 @@ import DeathText from './components/DeathText.vue'
|
|
|
import CreateControlResultDialogVue from './components/CreateControlResultDialog.vue'
|
|
|
import { getBlMenuList, getCaseQuality, getCasePlatform, getAllCase, getLong, getTemporary, getPacsData, getBcData, getHomeData, getSurgeryData, getBlInfo } from '@/api/qc'
|
|
|
import { getCaseExamineAppeal } from '@/api/admin'
|
|
|
+import { getToken, removeToken } from '@/utils/auth'
|
|
|
|
|
|
export default {
|
|
|
components: {
|
|
@@ -387,12 +388,23 @@ export default {
|
|
|
},
|
|
|
// 获取新病案指控结果
|
|
|
getCaseQualityResults() {
|
|
|
- const params = {
|
|
|
- ZYH: Number(this.valData)
|
|
|
- }
|
|
|
- getCaseQuality(params).then(res => {
|
|
|
- const { p } = res
|
|
|
- this.results = p
|
|
|
+ let that = this;
|
|
|
+ // const params = {
|
|
|
+ // ZYH: Number(this.valData)
|
|
|
+ // }
|
|
|
+ // getCaseQuality(params).then(res => {
|
|
|
+ // const { p } = res
|
|
|
+ // this.results = p
|
|
|
+ // })
|
|
|
+ that.axios({
|
|
|
+ url:'http://10.10.11.65:8081/bazb/get_case_quality_v2',
|
|
|
+ method: 'post',
|
|
|
+ headers: { 'content-type': 'application/json', 'token': getToken() },
|
|
|
+ data: {
|
|
|
+ ZYH: Number(that.valData)
|
|
|
+ }
|
|
|
+ }).then(res => {
|
|
|
+ this.results = res.data
|
|
|
})
|
|
|
},
|
|
|
reload() {
|