Dung Diego

up

...@@ -68,7 +68,11 @@ ...@@ -68,7 +68,11 @@
68 </style> 68 </style>
69 <script src="https://cdnjs.cloudflare.com/ajax/libs/axios/1.6.8/axios.min.js"></script> 69 <script src="https://cdnjs.cloudflare.com/ajax/libs/axios/1.6.8/axios.min.js"></script>
70 <script src="{{ asset("assets/js/vue.min.js") }}"></script> 70 <script src="{{ asset("assets/js/vue.min.js") }}"></script>
71 -<div id="app" > 71 +<div class="wrapper">
72 + <div class="content-wrapper position-relative">
73 + <section class="contents">
74 + <div id="app" >
75 + <div class="loading text-center"><div class="spinner-container"><div role="status" class="spinner-border text-primary"><span class="sr-only">Loading...</span></div></div></div>
72 <div class="pdf-container" :style="{width: this.ocr.mst_template.image.width*0.3155 + 'px',height: this.ocr.mst_template.image.height*0.3155 + 'px'}"> 76 <div class="pdf-container" :style="{width: this.ocr.mst_template.image.width*0.3155 + 'px',height: this.ocr.mst_template.image.height*0.3155 + 'px'}">
73 <div class="text-center" @mousedown="ocr_start_select" @mousemove="ocr_move_select" @mouseup="ocr_end_select" > 77 <div class="text-center" @mousedown="ocr_start_select" @mousemove="ocr_move_select" @mouseup="ocr_end_select" >
74 <img :src="`{{route('order.show_pdf')}}?file_path=`+ocr.image_path" class="img-fluid border" draggable="false" /> 78 <img :src="`{{route('order.show_pdf')}}?file_path=`+ocr.image_path" class="img-fluid border" draggable="false" />
...@@ -129,6 +133,11 @@ ...@@ -129,6 +133,11 @@
129 <img :src="`{{ route('order.show_pdf') }}?file_path=` + ocr.image_path.replace(/\.jpg$/, `_${page_num}.jpg`)" class="img-fluid border" draggable="false" /> 133 <img :src="`{{ route('order.show_pdf') }}?file_path=` + ocr.image_path.replace(/\.jpg$/, `_${page_num}.jpg`)" class="img-fluid border" draggable="false" />
130 </div> 134 </div>
131 </div> 135 </div>
136 + </section>
137 +</div>
138 +</div>
139 +
140 +
132 141
133 142
134 <script> 143 <script>
......