zhouwx
2024-07-15 6459f8bff3e568e65e6dc617f22c686cf5a8db44
src/views/onlineEducation/classHourBatch/index.vue
@@ -74,7 +74,8 @@
  dataList: [],
  isAdmin: false,
  companyName: '',
  remainPeriod: null
  remainPeriod: null,
  companyId: null
});
@@ -89,6 +90,7 @@
    data.remainPeriod = userInfo.remainPeriod ? (userInfo.remainPeriod /60).toFixed(2).replace(/\.00$/, ''):''
    data.isAdmin = false;
    data.companyName = userInfo.companyName
    data.companyId = userInfo.companyId
  }
  await getList()
})
@@ -146,6 +148,6 @@
}
const openDetail = () => {
  classHourRef.value.openDialog()
  classHourRef.value.openDialog(data.companyId)
}
</script>