fengchang 1 년 전
부모
커밋
3c996ab9f2
2개의 변경된 파일12개의 추가작업 그리고 3개의 파일을 삭제
  1. 2 1
      hichina-admin-front/src/components/DestinationCreateDialog.vue
  2. 10 2
      hichina-admin-front/src/components/ProductEditorDialog.vue

+ 2 - 1
hichina-admin-front/src/components/DestinationCreateDialog.vue

@@ -121,9 +121,10 @@
                 </template>
               </q-input>
             </div>
-            <div class="col-8">
+            <div class="col-8" style="height: 50vh">
               <QuillEditor
                 theme="snow"
+                style="height: 100%"
                 v-model:content="description"
                 contentType="html"
                 toolbar="full"

+ 10 - 2
hichina-admin-front/src/components/ProductEditorDialog.vue

@@ -128,9 +128,10 @@
                 </template>
               </q-input>
             </div>
-            <div row justify-center>
+            <div row justify-center style="height: 50vh">
               <QuillEditor
                 theme="snow"
+                style="height: 100%"
                 @update:content="editing"
                 v-model:content="editSkuDialogDescription"
                 contentType="html"
@@ -140,7 +141,7 @@
             </div>
           </div>
         </q-card-section>
-        <q-separator inset class="col" />
+        <q-separator inset class="col" style="margin-top: 50px" />
         <div class="row justify-center">
           <div class="col-1">自定义属性</div>
         </div>
@@ -964,3 +965,10 @@ export default {
   },
 };
 </script>
+<style lang="sass" scoped>
+.ql-clipboard
+  position: fixed !important
+  opacity: 0 !important
+  left: 50% !important
+  top: 50% !important
+</style>