mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-17 23:06:47 +08:00
时间
This commit is contained in:
@@ -3454,7 +3454,8 @@ const columns6 = [
|
||||
ellipsis: true,
|
||||
align: "center",
|
||||
customRender: ({ text }) => {
|
||||
return text ? getdateToTime(text * 1000) : "-";
|
||||
// return text ? getdateToTime(text * 1000) : "-";
|
||||
return text ? text : "-";
|
||||
},
|
||||
},
|
||||
{
|
||||
@@ -3465,7 +3466,8 @@ const columns6 = [
|
||||
ellipsis: true,
|
||||
align: "center",
|
||||
customRender: ({ text }) => {
|
||||
return text ? getdateToTime(text * 1000) : "-";
|
||||
// return text ? getdateToTime(text * 1000) : "-";
|
||||
return text ? text : "-";
|
||||
},
|
||||
},
|
||||
{
|
||||
@@ -4818,7 +4820,6 @@ export default defineComponent({
|
||||
const handelEditStu = async (itm) => {
|
||||
console.log(itm);
|
||||
|
||||
|
||||
state.offcourseId = itm.offcourseId;
|
||||
state.offcoursePlanId = itm.offcoursePlanId;
|
||||
|
||||
@@ -4830,10 +4831,13 @@ export default defineComponent({
|
||||
|
||||
let obj = {
|
||||
assessmentId: item.evaluateId,
|
||||
}
|
||||
api.queryAppraiseDetailById(obj).then((res) => {
|
||||
};
|
||||
api
|
||||
.queryAppraiseDetailById(obj)
|
||||
.then((res) => {
|
||||
state.assessmentName = res.data.data.assessmentName;
|
||||
}).catch();
|
||||
})
|
||||
.catch();
|
||||
|
||||
console.log("res");
|
||||
console.log(item);
|
||||
@@ -5247,10 +5251,6 @@ export default defineComponent({
|
||||
};
|
||||
//编辑面授课
|
||||
const handleEdit = async (itm, type) => {
|
||||
|
||||
|
||||
|
||||
|
||||
console.log(45555);
|
||||
console.log(itm);
|
||||
if (type === "1") {
|
||||
@@ -5322,7 +5322,6 @@ export default defineComponent({
|
||||
state.lookCourseModal = false;
|
||||
};
|
||||
const handleLook = async (itm, type) => {
|
||||
|
||||
if (type === "1") {
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user