mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-21 16:56:46 +08:00
面授 审核
This commit is contained in:
@@ -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);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user