添加评估

This commit is contained in:
zhangyc
2022-12-09 14:24:03 +08:00
parent 6b6fce5ebf
commit ed067d7c75
10 changed files with 432 additions and 48 deletions

View File

@@ -2675,7 +2675,7 @@ import addOnlineCourse from "../../components/Modals/addOnlineCourse.vue";
import ProjOwnerShip from "../../components/drawers/ProjectOwn";
import ProjPowerList from "../../components/drawers/ProjPowerList";
import ProjCheckShip from "../../components/drawers/ProjCheckPower";
import AssessmentList from "../../components/drawers/ AssessmentList.vue";
import AssessmentList from "../../components/drawers/AssessmentList.vue";
import {
list,
edit,
@@ -2867,7 +2867,7 @@ const columns1 = [
key: "10",
align: "center",
customRender: ({ text }) => {
return text ? getdateToTime(text * 1000) : "-";
return text ? text : "-";
},
},
{
@@ -3280,6 +3280,7 @@ export default defineComponent({
],
//在线面授管理学习记录
tableData3: [
{
key: 1,
projectName: "刘莉",
@@ -3415,7 +3416,7 @@ export default defineComponent({
value4: "",
//选择线上还是面授
xzinputV1: "",
valueE1: 2,
valueE1:2,
valueE2: "",
//确定面授
ft_eidt: false,
@@ -4236,19 +4237,15 @@ export default defineComponent({
state.valueE1 = "";
}
};
//新建面授课
const createft = () => {
if (!state.valueE1 || !state.xzinputV1) {
if (!state.xzinputV1) {
message.destroy();
return message.warning("请输入必填项");
}
console.log(
" state.valueE1",
state.valueE1,
!state.bs_hs && state.valueE1 == 2,
state.bs_hs,
state.valueE1 == 2
);
if (state.bs_hs && state.valueE1 == 2) {
console.log("state.bs_hs && state.valueE1 == 2",state.bs_hs , state.valueE1 == 2);
if (state.valueE1 === 2) {
state.of_hs = false;
// state.ft_hs = true;
CourseModalRef.value.visibleOpen(null, state.xzinputV1);