1.

 this.$http.post('/proxy/eventMonitorLog/cancelEventMonitorByCode', {
        "wardCode": this.$store.getters.env().wardCode
      }).then(response=>{       
      }).catch(error=>{
        console.log(error)       
      })

2.

try {
        let response = await this.$http
        .post('/proxy/eventMonitorLog/getEventMonitorListByCode', { wardCode: this.$store.getters.env().wardCode })
        this.outBedsData = response.data.body
        loadingInstance.close()
      } catch (error) {
        console.log(error)
      }

  

相关文章:

  • 2021-11-22
  • 2022-01-24
  • 2021-09-15
  • 2021-07-24
  • 2021-09-27
  • 2021-09-04
猜你喜欢
  • 2021-05-02
  • 2021-12-06
  • 2022-02-14
  • 2022-12-23
相关资源
相似解决方案