Chensc 17 tuntia sitten
vanhempi
commit
74c19f3dba

+ 1 - 1
component/statistics/LascCervical/index.js

@ -515,7 +515,7 @@ Vue.component('lasc-cervical', {
    caseDataList() {
      var vm = this
      vm.dialogLoading = true
      this.query.type = this.query.type.substring(0, this.query.type.length - 1) + this.query.status
      // this.query.type = this.query.type.substring(0, this.query.type.length - 1) + this.query.status
      var params = {
        ...this.query,
        range: (this.form && this.form.range) || '',

+ 1 - 1
component/statistics/LascProgress/index.js

@ -390,7 +390,7 @@ Vue.component('lasc-progress', {
    caseDataList() {
      var vm = this
      vm.dialogLoading = true
      this.query.type = this.query.type.substring(0, this.query.type.length - 1) + this.query.status
      // this.query.type = this.query.type.substring(0, this.query.type.length - 1) + this.query.status
      var params = {
        ...this.query,
        range: (this.form && this.form.range) || '',

+ 4 - 3
component/statistics/breastCancerPatient/index.js

@ -131,7 +131,7 @@ Vue.component('breast-cancer-patient', {
            { prop: 'cduBiRads4a', label: '4a级' },
            { prop: 'cduBiRads4b', label: '4b级' },
            { prop: 'cduBiRads4c', label: '4c级' },
            { prop: 'cduBiRads05', label: '5级' },
            { prop: 'cduBiRads5', label: '5级' },
            { prop: 'cduHeji', label: '合计' }
          ]
        },
@ -427,7 +427,8 @@ Vue.component('breast-cancer-patient', {
    caseDataList() {
      var vm = this
      vm.dialogLoading = true
      this.query.type = this.query.type.substring(0, this.query.type.length - 1) + this.query.status
      // console.log('statusstatus', this.query)
      // this.query.type = this.query.type.substring(0, this.query.type.length - 1) + this.query.status
      var params = {
        ...this.query,
        range: (this.form && this.form.range) || '',
@ -442,7 +443,7 @@ Vue.component('breast-cancer-patient', {
      delete params.total
      httpRequest.get('doctor/twoCancers/count/caseDataList', { data: params }).then(function (res) {
        vm.dialogTableData = res.detailModelList
        vm.query.total = res.totalCount
        // vm.query.total = res.totalCount
        vm.dialogLoading = false
      })
    },