zhangjie 2 年 前
コミット
61aed33dbe

+ 1 - 1
src/modules/card/assets/styles/card-preview.scss

@@ -462,7 +462,7 @@
     position: absolute;
     width: 100%;
     text-align: center;
-    bottom: -20px;
+    bottom: -30px;
   }
 }
 

+ 1 - 1
src/modules/card/assets/styles/card-temp.css

@@ -445,7 +445,7 @@
   position: absolute;
   width: 100%;
   text-align: center;
-  bottom: -20px;
+  bottom: -30px;
 }
 
 .page-locator {

ファイルの差分が大きいため隠しています
+ 0 - 0
src/modules/card/previewTemp.js


+ 7 - 0
src/modules/paper-export/assets/styles/paper-temp-preview.scss

@@ -126,4 +126,11 @@
   .element-item-paper-struct {
     height: auto !important;
   }
+
+  .page-column-body {
+    font-size: 0px;
+  }
+  .elem-rich-text {
+    font-size: 14px;
+  }
 }

+ 4 - 1
src/modules/paper-export/elements/rich-text/ElemRichText.vue

@@ -1,6 +1,9 @@
 <template>
   <div class="elem-rich-text" :style="data.styles">
-    <rich-text :text-json="data.content"></rich-text>
+    <rich-text
+      v-if="data.contType !== 'gap'"
+      :text-json="data.content"
+    ></rich-text>
   </div>
 </template>
 

ファイルの差分が大きいため隠しています
+ 0 - 1
src/modules/paper-export/previewTemp.js


+ 1 - 1
src/modules/paper-export/views/PaperTemplateBuild.vue

@@ -435,7 +435,7 @@ export default {
     parseLineGap() {
       return getRichTextModel({
         contType: "gap",
-        styles: { width: "100%", height: "20px" },
+        styles: { width: "100%", height: "10px" },
         content: this.getRichStruct([{ type: "text", value: "" }]),
       });
     },

+ 3 - 3
src/modules/paper/components/QuestionGroupStruct.vue

@@ -512,11 +512,11 @@ export default {
             selectCount: item.selectCount,
           };
         });
-        structInfo.propertyDistributeInfo = dataList;
+        structInfo.questionDistributeInfo = dataList;
         return structInfo;
       } else if (this.useClassify && !this.useProperty) {
         dataList = deepCopy(this.tableData);
-        structInfo.propertyDistributeInfo = dataList;
+        structInfo.questionDistributeInfo = dataList;
         return structInfo;
       } else if (!this.useClassify && this.useProperty) {
         dataList[0].propertyDistributeInfo = this.tableData;
@@ -536,7 +536,7 @@ export default {
         return item;
       });
 
-      structInfo.propertyDistributeInfo = dataList;
+      structInfo.questionDistributeInfo = dataList;
       return structInfo;
     },
     // source relate

+ 0 - 1
src/modules/paper/views/EditPaper.vue

@@ -184,7 +184,6 @@
             ></rich-text>
             <div class="edit-cont-action">
               <el-button
-                v-show="parentView === 'gen_paper'"
                 size="small"
                 type="primary"
                 plain

+ 1 - 0
src/modules/questions/views/PropertyInfo.vue

@@ -498,6 +498,7 @@ export default {
         type: "success",
       });
 
+      this.multipleSelection = [];
       this.searchProperty();
       this.showButton = true;
       this.showSonButtton = true;

この差分においてかなりの量のファイルが変更されているため、一部のファイルを表示していません