|
@ -6,6 +6,7 @@ new Vue({
|
|
|
height: '',
|
|
|
isloading: false, //加载中
|
|
|
start: '',
|
|
|
StatusData:[],
|
|
|
health_bank_service_type: [],
|
|
|
serviceType: '',
|
|
|
searchStr: 1,
|
|
@ -699,6 +700,7 @@ new Vue({
|
|
|
initData(vm)
|
|
|
vm.getQuotaStr()
|
|
|
vm.getfwDictName()
|
|
|
vm.getStatus()
|
|
|
vm.getDiseaseTypeList()
|
|
|
vm.height = document.body.offsetHeight - 85
|
|
|
window.onresize = function () {
|
|
@ -753,6 +755,12 @@ new Vue({
|
|
|
EventBus.$off('preview-person-info')
|
|
|
},
|
|
|
methods: {
|
|
|
getStatus() {
|
|
|
var vm = this
|
|
|
statisticAPI.getDictByDictName({ name: 'followup_status' }).then(function (res) {
|
|
|
vm.StatusData = res.list
|
|
|
})
|
|
|
},
|
|
|
getfwDictName() {
|
|
|
var vm = this
|
|
|
statisticAPI.getDictByDictName({ name: 'health_bank_service_type' }).then(function (res) {
|
|
@ -1116,6 +1124,7 @@ new Vue({
|
|
|
}),
|
|
|
(this.form10 = {
|
|
|
resident: '',
|
|
|
status: '',
|
|
|
doctorTwo: ''
|
|
|
}),
|
|
|
(this.form8 = {
|
|
@ -1360,6 +1369,7 @@ new Vue({
|
|
|
}),
|
|
|
(this.form10 = {
|
|
|
resident: '',
|
|
|
status: '',
|
|
|
doctorTwo: ''
|
|
|
}),
|
|
|
(this.form8 = {
|
|
@ -1926,7 +1936,8 @@ new Vue({
|
|
|
pageSize: vm.currentSize,
|
|
|
page: vm.currentPage,
|
|
|
patientName: vm.form10.resident || '',
|
|
|
doctorName: vm.form10.doctorTwo || ''
|
|
|
doctorName: vm.form10.doctorTwo || '',
|
|
|
status: vm.form10.status || ''
|
|
|
}
|
|
|
return parameter
|
|
|
},
|