lsc 1 年之前
父節點
當前提交
6551addd03

+ 1 - 1
dist/index.html

@@ -25,7 +25,7 @@
       height: 100%;
       width: 100%;
       background: #e6eaf0;
-    }</style><link href=./static/css/app.b3996c45b4691a518ea501f737c594f4.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.571c38d63f24b1ae9e16.js></script><script type=text/javascript src=./static/js/vendor.e51d5125d19cac079824.js></script><script type=text/javascript src=./static/js/app.87862cc3bb44d66f725e.js></script></body></html><script>function stopSafari() {
+    }</style><link href=./static/css/app.ebfadc5c3b71fde76edc447439ffb269.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.571c38d63f24b1ae9e16.js></script><script type=text/javascript src=./static/js/vendor.e51d5125d19cac079824.js></script><script type=text/javascript src=./static/js/app.a8f448641170e01d881b.js></script></body></html><script>function stopSafari() {
     //阻止safari浏览器双击放大功能
     let lastTouchEnd = 0  //更新手指弹起的时间
     document.documentElement.addEventListener("touchstart", function (event) {

File diff suppressed because it is too large
+ 0 - 0
dist/static/css/app.ebfadc5c3b71fde76edc447439ffb269.css


File diff suppressed because it is too large
+ 0 - 0
dist/static/css/app.ebfadc5c3b71fde76edc447439ffb269.css.map


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/app.a8f448641170e01d881b.js


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/app.a8f448641170e01d881b.js.map


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/manifest.571c38d63f24b1ae9e16.js.map


+ 78 - 2
src/components/pages/test/add/components/checkOrder.vue

@@ -17,6 +17,7 @@
                 <!-- {{ selectType(item1, index1) }} -->
                 <div class="btnBox">
                     <!-- <div class="edit" @click.stop="editCheck(`${index1}`,item1)" v-if="item1.ttype == 1 && canEdit.indexOf(item1.type) !== -1 && etype == 'edit'"></div> -->
+                    <div class="edit" @click.stop="editGroupName(`${index1}`)" v-if="item1.ttype == 2 && etype == 'edit'"></div>
                     <div :class="{ deleteX: etype != 'edit', delete: etype == 'edit' }"
                         @click.stop="deleteCheck(`${index1}`)">
                     </div>
@@ -42,6 +43,7 @@
                         </el-tooltip>
                         <div class="btnBox">
                             <!-- <div class="edit" @click.stop="editCheck(`${index1}-${index2}`,item2)" v-if="item2.ttype == 1 && canEdit.indexOf(item2.type) !== -1 && etype == 'edit'"></div> -->
+                            <div class="edit" @click.stop="editGroupName(`${index1}-${index2}`)" v-if="item2.ttype == 2 && etype == 'edit'"></div>
                             <div :class="{ deleteX: etype != 'edit', delete: etype == 'edit' }"
                                 @click.stop="deleteCheck(`${index1}-${index2}`)"></div>
                             <div class="open" v-if="item2.array && item2.array.length" :class="{ isopen: item2.isopen }"
@@ -132,6 +134,24 @@
                 </div>
             </div>
         </div>
+        <el-dialog title="修改名称" :visible.sync="groupDaliog" :append-to-body="true" width="500px"
+            :before-close="handleClose" class="dialog_diy">
+            <div style="
+                width: 100%;
+                display: flex;
+                flex-direction: row;
+                flex-wrap: nowrap;
+                align-items: center;
+                justify-content: center;
+                ">
+                <div style="min-width: fit-content;">分组名称:</div>
+                <el-input v-model="groupName" placeholder="请输入要修改的名称"></el-input>
+            </div>
+            <span slot="footer" class="dialog-footer">
+                <el-button @click="groupDaliog = false">取 消</el-button>
+                <el-button type="primary" @click="updateGroupName">确 定</el-button>
+            </span>
+        </el-dialog>
     </div>
 </template>
 
@@ -183,6 +203,9 @@ export default {
             oldIndex3: "",
             newIndex3: "",
             oldData: "",
+            groupDaliog: false,
+            groupName: '',
+            groupIndex: ''
             // cJson: {}
         }
     },
@@ -202,7 +225,7 @@ export default {
                     }
                     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) {
-                    return `第${index + 1}组 (共${item.array.length}题)`;
+                    return `${item.name ? item.name : `第${index + 1}组`}(共${item.array.length}题)`;
                 } else if (item.ttype == 3) {
                     return `分页${index + 1}`;
                 }
@@ -213,7 +236,7 @@ export default {
                 if (item.ttype == 1) {
                     return (item.json && this.etype != 'edit' ? '' : this.options2[item.type]) + (item.json && this.etype != 'edit' ? `${item.json.title}` : "");
                 } else if (item.ttype == 2) {
-                    return `第${index + 1}组 (共${item.array.length}题)`;
+                    return `${item.name ? item.name : `第${index + 1}组`} (共${item.array.length}题)`;
                 } else if (item.ttype == 3) {
                     return `分页${index + 1}`;
                 }
@@ -229,6 +252,9 @@ export default {
         }
     },
     methods: {
+        handleClose(done) {
+            done();
+        },
         setDrag(index) {
             console.log(index);
             this.isdrag = index
@@ -319,6 +345,34 @@ export default {
                 })
                 .catch(() => { });
         },
+        editGroupName(index){
+            let _check = index.split("-")
+            let name  = ''
+            if (_check.length == 1) {
+                name = this.manualJson[_check[0]].name ? this.manualJson[_check[0]].name : ''
+            } else if (_check.length == 2) {
+                name = this.manualJson[_check[0]].array[_check[1]].name ? this.manualJson[_check[0]].array[_check[1]].name : ''
+            }
+            this.groupName = name
+            this.groupDaliog = true 
+            this.groupIndex = index
+        },
+        updateGroupName(){
+            let _check = this.groupIndex.split("-")
+            let name  = this.groupName
+            if(!name){
+                this.$message.error("请输入分组名称");
+                return;
+            }
+            if (_check.length == 1) {
+                this.manualJson[_check[0]].name = name
+            } else if (_check.length == 2) {
+                this.manualJson[_check[0]].array[_check[1]].name = name
+            }
+            this.$forceUpdate();
+            this.$emit("changeJson", this.manualJson);
+            this.groupDaliog = false 
+        },
         editCheck(index, item) {
 
         },
@@ -688,4 +742,26 @@ export default {
     border-radius: 0 !important;
     margin-top: 10px;
 }
+
+
+.dialog_diy>>>.el-dialog__header {
+  background: #3d67bc !important;
+  padding: 15px 20px;
+}
+
+.dialog_diy>>>.el-dialog__title {
+  color: #fff;
+}
+
+.dialog_diy>>>.el-dialog__headerbtn {
+  top: 19px;
+}
+
+.dialog_diy>>>.el-dialog__headerbtn .el-dialog__close {
+  color: #fff;
+}
+
+.dialog_diy>>>.el-dialog__headerbtn .el-dialog__close:hover {
+  color: #fff;
+}
 </style>

+ 1 - 1
src/components/pages/test/add/edit/check/index.vue

@@ -93,7 +93,7 @@ export default {
         if (item.ttype == 1) {
           return index + 1 + "、" + this.options2[item.type];
         } else if (item.ttype == 2) {
-          return `第${index + 1}组 (共${item.array.length}题)`;
+          return `${item.name ? item.name : `第${index + 1}组`}(共${item.array.length}题)`;
         } else if (item.ttype == 3) {
           return `分页${index + 1}`;
         }

+ 1 - 1
src/components/pages/testStudent/view/component/topic.vue

@@ -118,7 +118,7 @@ export default {
         if (item.ttype == 1) {
           return index + 1 + "、" + this.options2[item.type];
         } else if (item.ttype == 2) {
-          return `第${index + 1}组 (共${item.array.length}题)`;
+          return `${item.name ? item.name : `第${index + 1}组`}(共${item.array.length}题)`;
         } else if (item.ttype == 3) {
           return `分页${index + 1}`;
         }

Some files were not shown because too many files changed in this diff