hd před 1 týdnem
rodič
revize
86b49a8d6a

+ 1 - 10
component/statistics/BedCheck/index.js

@ -34,15 +34,7 @@ Vue.component('bed-check', {
        { label: '服务内容', prop: 'diseaseCondition' }
      ],
      dialogShow: false,
      info: {
        name: '黄小蕾',
        sex: '1',
        age: '60岁',
        zhuyuan: '38593246',
        phone: '12223456789',
        checkTime: '2024-04-09 10:00:00',
        serviceContent: '上门服务'
      },
      info: {},
      page: 1,
      size: 10,
      total: 0,
@ -140,7 +132,6 @@ Vue.component('bed-check', {
          if (res.data.signWay) {
            vm.info.signMethod = res.data.signWay == 1 ? '定位签到' : '拍照签到'
          }
          console.log(vm.info,"info");
          
        }
      })

+ 3 - 1
component/statistics/BuildBed/index.js

@ -40,7 +40,9 @@ Vue.component('build-bed', {
      ],
      page: 1,
      size: 10,
      total: 0
      total: 0,
      loading: false,
      exportLoading: false
    }
  },
  methods: {

+ 7 - 3
component/statistics/PatientSituation/index.js

@ -21,7 +21,9 @@ Vue.component('patient-situation', {
      chooseYear: null,
      chooseTime: null,
      turnOverOptions: [],
      form: {},
      form: {
        turnOver: ""
      },
      loading: false,
      exportLoading: false,
      tableData: [],
@ -134,7 +136,9 @@ Vue.component('patient-situation', {
      })
    },
    eliminateClick() {
      this.form = {}
      this.form = {
        turnOver: ""
      }
      this.yearType = '1'
      this.chooseYear = new Date().getFullYear()
      this.chooseTime = null
@ -167,7 +171,7 @@ Vue.component('patient-situation', {
    getDictData() {
      var vm = this
      statisticAPI.getDictByDictName({ name: 'jkcopd_disease_conversion' }).then(function (res) {
        vm.turnOverOptions = [{ value: '全部' }]
        vm.turnOverOptions = [{ value: '全部', code:'' }]
        vm.turnOverOptions = vm.turnOverOptions.concat(res.list)
      })
    },

+ 8 - 4
component/statistics/Referral/index.js

@ -21,7 +21,9 @@ Vue.component('referral', {
      chooseYear: null,
      chooseTime: null,
      turnOverOptions: [],
      form: {},
      form: {
        turnOver: ""
      },
      tableData: [],
      tableHeader: [
        { label: '住院号', prop: 'visitNo' },
@ -107,13 +109,15 @@ Vue.component('referral', {
        }
      }
      this.exportLoading = true
      var fileName = `患者情况${new Date().getTime()}.xls`
      var fileName = `转诊与撤床情况分析${new Date().getTime()}.xls`
      httpRequest.downLoadFileForAjax('statistics/bed/exportGetFamilyBedWithdrawalStatistics', fileName, params).then(function () {
        vm.exportLoading = false
      })
    },
    eliminateClick() {
      this.form = {}
      this.form = {
        turnOver: ""
      }
      this.yearType = '1'
      this.chooseYear = new Date().getFullYear()
      this.chooseTime = null
@ -131,7 +135,7 @@ Vue.component('referral', {
    getDictData() {
      var vm = this
      statisticAPI.getDictByDictName({ name: 'jkcopd_disease_conversion' }).then(function (res) {
        vm.turnOverOptions = [{ value: '全部' }]
        vm.turnOverOptions = [{ value: '全部', code:"" }]
        vm.turnOverOptions = vm.turnOverOptions.concat(res.list)
        for (var item of res.list) {
          vm.turnOverObj[item.code] = item.value