|
@ -71,11 +71,11 @@ Vue.component('Copd-service-record-patient', {
|
|
|
{ label: '辅助检查-乳腺钼靶', value: 4 },
|
|
|
{ label: '乳腺病理学检查', value: 5 },
|
|
|
{ label: '乳腺外科门诊', value: 6 },
|
|
|
{ label: '乳腺癌治疗信息', value: 7 }
|
|
|
{ label: '乳腺癌治疗信息', value: 7 },
|
|
|
{ label: '社区随访', value: 8 },
|
|
|
{ label: '妇科检查', value: 9 }
|
|
|
],
|
|
|
nodeList2: [
|
|
|
{ label: '社区随访', value: 8 },
|
|
|
{ label: '妇科检查', value: 9 },
|
|
|
{ label: 'HPV', value: 10 },
|
|
|
{ label: '宫颈细胞学检查', value: 11 },
|
|
|
{ label: '初筛结果临床评估', value: 12 },
|
|
@ -136,7 +136,7 @@ Vue.component('Copd-service-record-patient', {
|
|
|
getMore() {
|
|
|
this.moreFlag = !this.moreFlag
|
|
|
if (this.moreFlag) {
|
|
|
this.nodeList.splice(8, 10)
|
|
|
this.nodeList.splice(10, 8)
|
|
|
} else {
|
|
|
this.nodeList = [...this.nodeList, ...this.nodeList2]
|
|
|
}
|
|
@ -176,13 +176,12 @@ Vue.component('Copd-service-record-patient', {
|
|
|
type: vm.serviceNode
|
|
|
}
|
|
|
httpRequest.get('doctor/twoCancers/count/serviceRecord', { data: params }).then(function (res) {
|
|
|
if(res.status==200){
|
|
|
if (res.status == 200) {
|
|
|
vm.events = res.obj.records
|
|
|
if(!vm.serviceNode){
|
|
|
if (!vm.serviceNode) {
|
|
|
vm.detailInfo = res.obj
|
|
|
}
|
|
|
|
|
|
}else{
|
|
|
} else {
|
|
|
alert(vm.message)
|
|
|
}
|
|
|
vm.loading = false
|