|
@@ -267,7 +267,7 @@
|
|
|
<div class="whiteBg" style="border-radius: 0; margin-top: 15px">
|
|
|
<div class="right_title">
|
|
|
<span>上传课程内容</span>
|
|
|
- <el-button type="primary" @click="pasteTask" size="small"
|
|
|
+ <el-button type="primary" @click="pasteTask" size="mini" style="margin-left:10px"
|
|
|
>智能粘贴</el-button
|
|
|
>
|
|
|
</div>
|
|
@@ -1765,9 +1765,7 @@
|
|
|
<div class="tool">
|
|
|
<div
|
|
|
class="whiteBIcon"
|
|
|
- @click="
|
|
|
- addTools(57, itemTaskIndex, toolIndex)
|
|
|
- "
|
|
|
+ @click="openTools(itemTaskIndex, 57, toolIndex)"
|
|
|
>
|
|
|
<img
|
|
|
src="../../../assets/icon/fourthToolList/cocopi.png"
|
|
@@ -4198,7 +4196,7 @@
|
|
|
<div class="tool">
|
|
|
<div
|
|
|
class="whiteBIcon"
|
|
|
- @click="addTools(57, itemTaskIndex, toolIndex)"
|
|
|
+ @click="openTools(itemTaskIndex, 57, toolIndex)"
|
|
|
>
|
|
|
<img
|
|
|
src="../../../assets/icon/fourthToolList/cocopi.png"
|
|
@@ -8712,17 +8710,18 @@ export default {
|
|
|
.post(this.$store.state.api + "addWorkNew2E", params)
|
|
|
.then((res) => {
|
|
|
console.log(this.steps);
|
|
|
- if (this.steps != 1 && this.steps != 2 && this.steps != 3) {
|
|
|
+ // if (this.steps != 1 && this.steps != 2 && this.steps != 3) {
|
|
|
this.$message({
|
|
|
message: "新增成功",
|
|
|
type: "success",
|
|
|
});
|
|
|
- }
|
|
|
+ // }
|
|
|
this.number = res.data.ordernumber;
|
|
|
this.courseId = res.data.courseId;
|
|
|
this.cid = res.data.courseId;
|
|
|
this.courseUserid = this.userid;
|
|
|
this.islogin = true;
|
|
|
+ this.steps = 4;
|
|
|
})
|
|
|
.catch((err) => {
|
|
|
this.$message.error("网络不佳");
|
|
@@ -8858,7 +8857,7 @@ export default {
|
|
|
this.ajax
|
|
|
.post(this.$store.state.api + "updateWorkNew2", params)
|
|
|
.then((res) => {
|
|
|
- if (this.steps != 1 && this.steps != 2 && this.steps != 3) {
|
|
|
+ // if (this.steps != 1 && this.steps != 2 && this.steps != 3) {
|
|
|
if (this.cidType == 1) {
|
|
|
this.$message({
|
|
|
message: "修改成功",
|
|
@@ -8870,7 +8869,7 @@ export default {
|
|
|
type: "success",
|
|
|
});
|
|
|
}
|
|
|
- }
|
|
|
+ // }
|
|
|
this.number = this.nbOrder;
|
|
|
this.courseId = this.cid;
|
|
|
this.steps = 4;
|
|
@@ -9505,7 +9504,7 @@ export default {
|
|
|
} else if (i == 3) {
|
|
|
if (!this.cid) {
|
|
|
this.$message.error(
|
|
|
- "如果您需要在内容中添加模板,请在修改模式下进行添加。"
|
|
|
+ "任务模式添加时不能添加模板,请添加课程后在修改添加模板"
|
|
|
);
|
|
|
return;
|
|
|
}
|
|
@@ -9522,7 +9521,7 @@ export default {
|
|
|
} else if (i == 1) {
|
|
|
if (!this.cid) {
|
|
|
this.$message.error(
|
|
|
- "如果您需要在内容中添加模板,请在修改模式下进行添加。"
|
|
|
+ "任务模式添加时不能添加模板,请添加课程后在修改添加模板"
|
|
|
);
|
|
|
return;
|
|
|
}
|
|
@@ -9536,6 +9535,23 @@ export default {
|
|
|
},
|
|
|
"*"
|
|
|
);
|
|
|
+ } else if (i == 57) {
|
|
|
+ if (!this.cid) {
|
|
|
+ this.$message.error(
|
|
|
+ "任务模式添加时不能添加模板,请添加课程后在修改添加模板"
|
|
|
+ );
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ window.parent.postMessage(
|
|
|
+ {
|
|
|
+ tools: "57y",
|
|
|
+ cid: this.cid,
|
|
|
+ stage: this.unitIndex,
|
|
|
+ task: itemTaskIndex,
|
|
|
+ tool: toolIndex,
|
|
|
+ },
|
|
|
+ "*"
|
|
|
+ );
|
|
|
}
|
|
|
},
|
|
|
chapAddTools(i) {
|
|
@@ -12003,7 +12019,8 @@ export default {
|
|
|
color: #0f7eff;
|
|
|
margin: 0 auto;
|
|
|
display: flex;
|
|
|
- justify-content: space-between;
|
|
|
+ /* justify-content: space-between; */
|
|
|
+ align-items: flex-end;
|
|
|
}
|
|
|
|
|
|
.people {
|