|
@@ -83,7 +83,8 @@ export default {
|
|
|
showDialog: true,
|
|
|
loading: false,
|
|
|
submitting: false,
|
|
|
- companyData: ""
|
|
|
+ companyData: "",
|
|
|
+ companyUserData: ""
|
|
|
};
|
|
|
},
|
|
|
methods: {
|
|
@@ -118,6 +119,17 @@ export default {
|
|
|
.catch(error => {
|
|
|
self.$message.error(error + "");
|
|
|
});
|
|
|
+
|
|
|
+ var formData = new FormData();
|
|
|
+ formData.append("companyId", self.companyId);
|
|
|
+
|
|
|
+ companyApi.companyUserDetail(formData).then(function(response) {
|
|
|
+ var jsonData = response.data;
|
|
|
+
|
|
|
+ if (jsonData.result) {
|
|
|
+ self.companyUserData = jsonData.data;
|
|
|
+ }
|
|
|
+ });
|
|
|
}
|
|
|
};
|
|
|
</script>
|