zhouwx
2024-07-17 246f7b6fd81cf2ba620b8f9bf7cf24b61d7cf521
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>