mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-15 05:46:45 +08:00
feat:增加批量标注完成等
This commit is contained in:
@@ -3309,6 +3309,7 @@ export default defineComponent({
|
||||
addhomeworkvisible: false,
|
||||
addtestvisible: false,
|
||||
codevisible: false, //二维码弹窗
|
||||
codeIndex: null,
|
||||
codeInfo: null, //二维码内容
|
||||
codeUrl: codeUrl,
|
||||
|
||||
@@ -5414,18 +5415,18 @@ export default defineComponent({
|
||||
|
||||
//二维码
|
||||
const qrcodeVisible = (record, type) => {
|
||||
console.log(
|
||||
"record",
|
||||
record,
|
||||
process.env.VUE_APP_IFRAME_STUDENT_URL,
|
||||
process.env.COURSE_STUDY
|
||||
);
|
||||
state.codevisible = true;
|
||||
state.codeInfo = {
|
||||
title: type == 1 ? "【课程】二维码" : "【签到】二维码",
|
||||
name: record.name ? record.name : "",
|
||||
url: process.env.COURSE_STUDY + record.offcourseId,
|
||||
url:
|
||||
type == 1
|
||||
? process.env.VUE_APP_COURSE_STUDY + record.offcourseId
|
||||
:process.env.VUE_APP_BOE_API_URL + `/admin/student/studentSign?taskId=${
|
||||
record.offcoursePlanId
|
||||
}&type=${3}`,
|
||||
};
|
||||
console.log("codeInfo", state.codeInfo);
|
||||
state.codeIndex = type;
|
||||
state.codeType = type;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user