diff --git a/src/components/growthpath/CommonHomework.vue b/src/components/growthpath/CommonHomework.vue
index 0d94b9af..ad8800dc 100644
--- a/src/components/growthpath/CommonHomework.vue
+++ b/src/components/growthpath/CommonHomework.vue
@@ -94,6 +94,7 @@ const formData = useResetRef({
});
const emit = defineEmits(["update:info", "close"]);
const dateTime = ref([]);
+// 验证
const rulesRef = ref({
workName: [
{
@@ -121,7 +122,7 @@ const rulesRef = ref({
],
});
-const { resetFields, validate } = Form.useForm(formData, rulesRef);
+const { validate } = Form.useForm(formData, rulesRef);
onMounted(() => {
formData.value = props.info;
@@ -135,7 +136,7 @@ const closeDrawer = () => {
dateTime.value = [];
emit("close");
};
-
+// 开始时间结束时间处理
function timeChange(time, timeStr) {
formData.value.submitStartTime = timeStr[0];
formData.value.submitEndTime = timeStr[1];
diff --git a/src/views/growthpath/PathManage.vue b/src/views/growthpath/PathManage.vue
index 0036548e..12e7b20b 100644
--- a/src/views/growthpath/PathManage.vue
+++ b/src/views/growthpath/PathManage.vue
@@ -403,7 +403,6 @@
diff --git a/src/views/report/Employeelearning.vue b/src/views/report/Employeelearning.vue
index 63d25a5e..5818f2e5 100644
--- a/src/views/report/Employeelearning.vue
+++ b/src/views/report/Employeelearning.vue
@@ -363,14 +363,14 @@ export default {
width: 120,
align: "center",
},
- {
- title: "专业力学习",
- dataIndex: "growthStudy",
- ellipsis: true,
- key: "growthStudy",
- width: 120,
- align: "center",
- },
+ // {
+ // title: "专业力学习",
+ // dataIndex: "growthStudy",
+ // ellipsis: true,
+ // key: "growthStudy",
+ // width: 120,
+ // align: "center",
+ // },
{
title: "学习时长",
dataIndex: "learningDuration",
diff --git a/src/views/report/Operational.vue b/src/views/report/Operational.vue
index aedf7211..6ac95365 100644
--- a/src/views/report/Operational.vue
+++ b/src/views/report/Operational.vue
@@ -106,10 +106,10 @@
label: '学习路径图',
value: 6,
},
- {
- label: '专业力必修',
- value: 7,
- },
+ // {
+ // label: '专业力必修',
+ // value: 7,
+ // },
]"
>
diff --git a/src/views/report/Overvoew.vue b/src/views/report/Overvoew.vue
index 7f9e1cb1..5061be14 100644
--- a/src/views/report/Overvoew.vue
+++ b/src/views/report/Overvoew.vue
@@ -361,7 +361,7 @@ export default {
{ text: "课程", num: res.data.result?.courseTotal },
{ text: "考试", num: res.data.result?.examTotal },
{ text: "案例", num: res.data.result?.caseTotal },
- { text: "专业力", num: 10 },
+ // { text: "专业力", num: 10 },
];
tabData.value = list;
});
@@ -899,7 +899,7 @@ export default {
{ text: "课程", num: "11" },
{ text: "考试", num: "10" },
{ text: "案例", num: "10" },
- { text: "专业力必修", num: "10" },
+ // { text: "专业力必修", num: "10" },
]);
const tabClick = (index) => {
state.selectedRowKeys = [];