|
@@ -105,6 +105,12 @@
|
|
|
:cJson="cJson" @setJson="setJson">
|
|
|
</evaDialog>
|
|
|
</div>
|
|
|
+ <div v-if="item3.type == 8">
|
|
|
+ <timeX :cJson="item3.json"></timeX>
|
|
|
+ <timeDialog v-if="item3.type == 8 && checkC === `x${index1}-${index2}-${index3}`"
|
|
|
+ :cJson="cJson" @setJson="setJson">
|
|
|
+ </timeDialog>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -135,6 +141,11 @@
|
|
|
<evaDialog v-if="item2.type == 7 && checkC === `x${index1}-${index2}`" :cJson="cJson"
|
|
|
@setJson="setJson"></evaDialog>
|
|
|
</div>
|
|
|
+ <div v-else-if="item2.type == 8">
|
|
|
+ <timeX :cJson="item2.json"></timeX>
|
|
|
+ <timeDialog v-if="item2.type == 8 && checkC === `x${index1}-${index2}`" :cJson="cJson"
|
|
|
+ @setJson="setJson"></timeDialog>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -164,6 +175,11 @@
|
|
|
<evaDialog v-if="item1.type == 7 && checkC === `x${index1}`" :cJson="cJson" @setJson="setJson">
|
|
|
</evaDialog>
|
|
|
</div>
|
|
|
+ <div v-else-if="item1.type == 8">
|
|
|
+ <timeX :cJson="item1.json"></timeX>
|
|
|
+ <timeDialog v-if="item1.type == 8 && checkC === `x${index1}`" :cJson="cJson" @setJson="setJson">
|
|
|
+ </timeDialog>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<el-dialog title="修改名称" :visible.sync="groupDaliog" :append-to-body="true" width="500px"
|
|
@@ -199,6 +215,8 @@ import courseDialog from './course/index.vue'
|
|
|
import courseX from './course/course.vue'
|
|
|
import evaDialog from './evaBox/index.vue'
|
|
|
import evaX from './evaBox/eva.vue'
|
|
|
+import timeDialog from './timeBox/index.vue'
|
|
|
+import timeX from './timeBox/time.vue'
|
|
|
export default {
|
|
|
mixins: [minxinVue],
|
|
|
components: {
|
|
@@ -212,6 +230,8 @@ export default {
|
|
|
courseX,
|
|
|
evaDialog,
|
|
|
evaX,
|
|
|
+ timeDialog,
|
|
|
+ timeX
|
|
|
},
|
|
|
props: {
|
|
|
checkJson: {
|
|
@@ -232,7 +252,7 @@ export default {
|
|
|
return {
|
|
|
manualJson: [],
|
|
|
isdrag: "",
|
|
|
- canEdit: [1, 3, 5, 6, 7],
|
|
|
+ canEdit: [1, 3, 5, 6, 7, 8],
|
|
|
ctype: "",
|
|
|
dragType: "",
|
|
|
oldIndex: "",
|
|
@@ -265,6 +285,8 @@ export default {
|
|
|
className += " test_course_file"
|
|
|
} else if (item.type == 7) {
|
|
|
className += " test_eva_file"
|
|
|
+ } else if (item.type == 8) {
|
|
|
+ className += " test_icon_time"
|
|
|
}
|
|
|
return index + 1 + "、" + (item.json && this.etype != 'edit' ? `<span class='${className}'></span>` : `<span class='${className}'></span>` + this.options2[item.type]) + (item.json && this.etype != 'edit' ? `${item.json.title}` : "");
|
|
|
} else if (item.ttype == 2) {
|