mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-18 07:16:46 +08:00
时间
This commit is contained in:
@@ -715,7 +715,7 @@
|
|||||||
<div class="btn btn6" @click="handlePush">
|
<div class="btn btn6" @click="handlePush">
|
||||||
<div class="btnText">保存</div>
|
<div class="btnText">保存</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
class="btn btn6"
|
class="btn btn6"
|
||||||
v-if="statusTingQi == 1"
|
v-if="statusTingQi == 1"
|
||||||
@@ -3454,7 +3454,8 @@ const columns6 = [
|
|||||||
ellipsis: true,
|
ellipsis: true,
|
||||||
align: "center",
|
align: "center",
|
||||||
customRender: ({ text }) => {
|
customRender: ({ text }) => {
|
||||||
return text ? getdateToTime(text * 1000) : "-";
|
// return text ? getdateToTime(text * 1000) : "-";
|
||||||
|
return text ? text : "-";
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -3465,7 +3466,8 @@ const columns6 = [
|
|||||||
ellipsis: true,
|
ellipsis: true,
|
||||||
align: "center",
|
align: "center",
|
||||||
customRender: ({ text }) => {
|
customRender: ({ text }) => {
|
||||||
return text ? getdateToTime(text * 1000) : "-";
|
// return text ? getdateToTime(text * 1000) : "-";
|
||||||
|
return text ? text : "-";
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -4717,7 +4719,7 @@ export default defineComponent({
|
|||||||
// ft_exit_1();
|
// ft_exit_1();
|
||||||
rest();
|
rest();
|
||||||
state.addLoading = false;
|
state.addLoading = false;
|
||||||
|
|
||||||
state.statusTingQi = 1;
|
state.statusTingQi = 1;
|
||||||
// console.log("res.data", res.data);
|
// console.log("res.data", res.data);
|
||||||
if (param === "review") {
|
if (param === "review") {
|
||||||
@@ -4817,8 +4819,7 @@ export default defineComponent({
|
|||||||
//编辑开课
|
//编辑开课
|
||||||
const handelEditStu = async (itm) => {
|
const handelEditStu = async (itm) => {
|
||||||
console.log(itm);
|
console.log(itm);
|
||||||
|
|
||||||
|
|
||||||
state.offcourseId = itm.offcourseId;
|
state.offcourseId = itm.offcourseId;
|
||||||
state.offcoursePlanId = itm.offcoursePlanId;
|
state.offcoursePlanId = itm.offcoursePlanId;
|
||||||
|
|
||||||
@@ -4828,13 +4829,16 @@ export default defineComponent({
|
|||||||
if (res.data.code === 200) return res.data.data;
|
if (res.data.code === 200) return res.data.data;
|
||||||
});
|
});
|
||||||
|
|
||||||
let obj={
|
let obj = {
|
||||||
assessmentId:item.evaluateId,
|
assessmentId: item.evaluateId,
|
||||||
}
|
};
|
||||||
api.queryAppraiseDetailById(obj).then((res) => {
|
api
|
||||||
state.assessmentName= res.data.data.assessmentName;
|
.queryAppraiseDetailById(obj)
|
||||||
}).catch();
|
.then((res) => {
|
||||||
|
state.assessmentName = res.data.data.assessmentName;
|
||||||
|
})
|
||||||
|
.catch();
|
||||||
|
|
||||||
console.log("res");
|
console.log("res");
|
||||||
console.log(item);
|
console.log(item);
|
||||||
|
|
||||||
@@ -5247,10 +5251,6 @@ export default defineComponent({
|
|||||||
};
|
};
|
||||||
//编辑面授课
|
//编辑面授课
|
||||||
const handleEdit = async (itm, type) => {
|
const handleEdit = async (itm, type) => {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
console.log(45555);
|
console.log(45555);
|
||||||
console.log(itm);
|
console.log(itm);
|
||||||
if (type === "1") {
|
if (type === "1") {
|
||||||
@@ -5322,7 +5322,6 @@ export default defineComponent({
|
|||||||
state.lookCourseModal = false;
|
state.lookCourseModal = false;
|
||||||
};
|
};
|
||||||
const handleLook = async (itm, type) => {
|
const handleLook = async (itm, type) => {
|
||||||
|
|
||||||
if (type === "1") {
|
if (type === "1") {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user