Commit abf6c801 authored by gengchunlei's avatar gengchunlei

Merge branch 'chronic-dev' of http://gitlab.yiboshi.com/nightkis1995/frontend-h5 into chronic-dev

parents 66fe08b1 01e70541
...@@ -40,7 +40,12 @@ export function getBeSecondScreenByPage(params) { ...@@ -40,7 +40,12 @@ export function getBeSecondScreenByPage(params) {
return fetchBase({ url: `/chronic-admin/v1/chronic-workbench/be-second-page`, body: params }) return fetchBase({ url: `/chronic-admin/v1/chronic-workbench/be-second-page`, body: params })
} }
// 筛查高危记录表 初筛高危待复筛1 复筛高危待诊断2
export function getDiagnoseByPage(params) {
return fetchBase({ url: `/chronic-admin/v1/chronic-workbench/be-diagnose-page`, body: params })
}
// 待复筛和高危待诊断忽略 // 待复筛和高危待诊断忽略
export function addIgnoreRecord(params) { export function addIgnoreRecord(params) {
return fetchBase({ url: `/chronic-admin/v1/chronic-ignore-record/save`, body: params }) return fetchBase({ url: `/chronic-admin/v1/chronic-ignore-record/save`, body: params })
} }
\ No newline at end of file
...@@ -103,7 +103,7 @@ ...@@ -103,7 +103,7 @@
<script> <script>
import { useStore } from '@/doctor/store' import { useStore } from '@/doctor/store'
import { getBeSecondScreenByPage, addIgnoreRecord } from '@/api/doctor/workbench.js' import { getDiagnoseByPage, addIgnoreRecord } from '@/api/doctor/workbench.js'
import CheckBtn from '@/doctor/components/checkBtn/CheckBtn.vue' import CheckBtn from '@/doctor/components/checkBtn/CheckBtn.vue'
import IdCardScan from '@/doctor/components/idCardScan/IdCardScan.vue' import IdCardScan from '@/doctor/components/idCardScan/IdCardScan.vue'
import { showToast } from 'vant' import { showToast } from 'vant'
...@@ -202,7 +202,7 @@ export default { ...@@ -202,7 +202,7 @@ export default {
diseaseType: this.activeTabItem.value, diseaseType: this.activeTabItem.value,
...this.form ...this.form
} }
getBeSecondScreenByPage(query, loading).then(res => { getDiagnoseByPage(query, loading).then(res => {
if (this.pagination.pageIndex === 1) { if (this.pagination.pageIndex === 1) {
this.list = [] this.list = []
} }
......
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