|
@@ -3916,7 +3916,7 @@
|
|
|
<div
|
|
<div
|
|
|
v-for="(s, sIndex) in noWorksS[toolIndex]"
|
|
v-for="(s, sIndex) in noWorksS[toolIndex]"
|
|
|
:key="sIndex"
|
|
:key="sIndex"
|
|
|
- class="noWorksName"
|
|
|
|
|
|
|
+ class="noWorksName2"
|
|
|
@click="teacherWorkSubmit(72, toolIndex, taskCount, s)"
|
|
@click="teacherWorkSubmit(72, toolIndex, taskCount, s)"
|
|
|
>
|
|
>
|
|
|
<el-tooltip
|
|
<el-tooltip
|
|
@@ -19666,6 +19666,8 @@ export default {
|
|
|
this.insertMemorandum(`点击工作区<span class="variable">工具${index+1}:${this.toolsList[t]}</span>`)
|
|
this.insertMemorandum(`点击工作区<span class="variable">工具${index+1}:${this.toolsList[t]}</span>`)
|
|
|
},
|
|
},
|
|
|
teacherWorkSubmit(t, i, index, s) {
|
|
teacherWorkSubmit(t, i, index, s) {
|
|
|
|
|
+ console.log('t',t);
|
|
|
|
|
+ if(t == 72) return
|
|
|
this.sStudent = s;
|
|
this.sStudent = s;
|
|
|
this.toolindex = i;
|
|
this.toolindex = i;
|
|
|
this.sTool = t;
|
|
this.sTool = t;
|
|
@@ -23738,6 +23740,30 @@ export default {
|
|
|
text-overflow: ellipsis;
|
|
text-overflow: ellipsis;
|
|
|
white-space: nowrap;
|
|
white-space: nowrap;
|
|
|
}
|
|
}
|
|
|
|
|
+.noWorksName2 {
|
|
|
|
|
+ background: #fff;
|
|
|
|
|
+ color: #0061ff;
|
|
|
|
|
+ width: 90px;
|
|
|
|
|
+ height: 25px;
|
|
|
|
|
+ text-align: center;
|
|
|
|
|
+ line-height: 25px;
|
|
|
|
|
+ border-radius: 4px;
|
|
|
|
|
+ margin: 10px 15px 10px 0;
|
|
|
|
|
+ white-space: nowrap;
|
|
|
|
|
+ overflow: hidden;
|
|
|
|
|
+ padding: 5px;
|
|
|
|
|
+ text-overflow: ellipsis;
|
|
|
|
|
+ cursor: pointer;
|
|
|
|
|
+ border: 1px solid #0061ff;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.noWorksName2 > span {
|
|
|
|
|
+ max-width: 100%;
|
|
|
|
|
+ display: block;
|
|
|
|
|
+ overflow: hidden;
|
|
|
|
|
+ text-overflow: ellipsis;
|
|
|
|
|
+ white-space: nowrap;
|
|
|
|
|
+}
|
|
|
|
|
|
|
|
.isWorksName2 {
|
|
.isWorksName2 {
|
|
|
width: 100px;
|
|
width: 100px;
|