Browse Source

no message

linwenxin 5 months ago
parent
commit
63e94a7a31
1 changed files with 5 additions and 2 deletions
  1. 5 2
      src/views/userManagement/masterGroup/index.vue

+ 5 - 2
src/views/userManagement/masterGroup/index.vue

@@ -255,12 +255,15 @@ export default {
     },
     // 打开详情弹窗
     openDetailForm(row) {
-      Promise.all([getWebsit({ type: 'C', status: true })]).then(([res1]) => {
+      Promise.all([
+        getWebsit({ type: 'C', status: true }),
+        workerTeamQueryWebsitWorker({ websitId: row.websitId })
+      ]).then(([res1, res2]) => {
         this.websitList = res1.data
+        this.workerTeamQueryWebsitWorkerList = res2.data
         this.formData = { ...row }
         this.formDialog = true
       })
-      // workerTeamQueryWebsitWorker
     },
     handleClose() {
       this.$refs?.formRef?.resetFields()