面授 审核

This commit is contained in:
宋文超
2022-11-23 14:47:44 +08:00
parent ce3d807f2f
commit 006097a63e
13 changed files with 534 additions and 64 deletions

View File

@@ -53,7 +53,7 @@
<script>
import { toRefs, reactive } from "vue";
import { studentScoreList } from "../../api/indexProjStu";
import { toDate } from "@/api/method";
// import { toDate } from "@/api/method";
export default {
name: "StuScoreDetail",
props: {
@@ -151,10 +151,10 @@ export default {
let array = [];
data.map((item) => {
let obj = {
time: toDate(item.createTime / 1000, "Y-M-D h-m"),
time: item.createTime,
score: item.score,
type: "完成任务",
from: item.source,
from: item.source == "" ? "-" : item.source,
};
array.push(obj);
});