Compare commits
2 Commits
d33e18ff52
...
5775bab1ab
Author | SHA1 | Date |
---|---|---|
tangyi | 5775bab1ab | |
tangyi | 236a7394ab |
|
@ -288,8 +288,8 @@ export default {
|
||||||
"删除后将无法继续扫码访问,且正在参与答题的用户将会被终止答题测试",
|
"删除后将无法继续扫码访问,且正在参与答题的用户将会被终止答题测试",
|
||||||
"确定要删除该测试吗?",
|
"确定要删除该测试吗?",
|
||||||
{
|
{
|
||||||
confirmButtonText: "取消",
|
confirmButtonText: "确定",
|
||||||
cancelButtonText: "确定",
|
cancelButtonText: "取消",
|
||||||
type: "提示",
|
type: "提示",
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
@ -297,7 +297,7 @@ export default {
|
||||||
that.deletgenerateTest(obj);
|
that.deletgenerateTest(obj);
|
||||||
ElMessage({
|
ElMessage({
|
||||||
type: "delet",
|
type: "delet",
|
||||||
message: "已停用",
|
message: "已删除",
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
.catch(() => {
|
.catch(() => {
|
||||||
|
|
|
@ -610,7 +610,9 @@ export default {
|
||||||
this.generateTestIf = true;
|
this.generateTestIf = true;
|
||||||
},
|
},
|
||||||
// 确定新增测试
|
// 确定新增测试
|
||||||
determineGenerateTest() {
|
determineGenerateTest() {
|
||||||
|
let that=this
|
||||||
|
this.generateTestData.projectId=this.projectData.id
|
||||||
this.generateTestData.coverImg = this.imgData;
|
this.generateTestData.coverImg = this.imgData;
|
||||||
if (this.generateTestData.isAllowWhiteList) {
|
if (this.generateTestData.isAllowWhiteList) {
|
||||||
this.generateTestData.isAllowWhiteList = "1";
|
this.generateTestData.isAllowWhiteList = "1";
|
||||||
|
@ -620,9 +622,18 @@ export default {
|
||||||
this.generateTestIf=false
|
this.generateTestIf=false
|
||||||
this.axios
|
this.axios
|
||||||
.post("hysc/test/addTest", this.generateTestData)
|
.post("hysc/test/addTest", this.generateTestData)
|
||||||
|
.then(function (data) {
|
||||||
|
console.log(data,"12q3123");
|
||||||
|
that.axios
|
||||||
|
.post("/hysc/test/addTestTopic", {
|
||||||
|
projectId:that.projectData.id,
|
||||||
|
testId: data.data.data.id
|
||||||
|
})
|
||||||
.then(function (data) {
|
.then(function (data) {
|
||||||
console.log(data);
|
console.log(data);
|
||||||
})
|
})
|
||||||
|
|
||||||
|
})
|
||||||
.catch(function (error) {
|
.catch(function (error) {
|
||||||
console.log(error);
|
console.log(error);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue