zjf
2023-03-08 92b359a6458fb985b78431e0a2f54b548e01b1ca
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import {
  Loading
} from 'element-ui'
 
export default {
  data () {
    return {
      loading: false,
      tab_loading: null // 放在 tabs-content 里客户的
    }
  },
 
  watch: {
    loading: function (val) {
      if (val) {
        this.tab_loading = Loading.service({
          target: document.querySelector('.t-loading-content')
        })
      } else {
        this.tab_loading.close()
      }
    }
  },
 
  mounted () {},
 
  deactivated: function () {}
 
}