唐耀东
2022-05-12 2546d2a6251176b0214c2d23ac93ccde5dd008f5
src/views/components/organization/index.vue
@@ -44,6 +44,17 @@
      name: ''
    }
  },
  watch: {
    'value': function (v) {
      if (v) {
        getOrganization(v).then(response => {
          this.name = response.data.name;
        });
      }else {
        this.name = '';
      }
    }
  },
  created() {
    if (this.value) {
      getOrganization(this.value).then(response => {