zydx-plus 1.33.358 → 1.33.359
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -119,7 +119,7 @@
|
|
|
119
119
|
<!-- ,width: wit + 'px'-->
|
|
120
120
|
<div v-for="(item,index) in htmlArr" :key="index" :style="{height: wit * 1.6 + 'px'}"
|
|
121
121
|
class="read-only-page" @click="menusTap">
|
|
122
|
-
<div class="read-only-p" v-html="item"></div>
|
|
122
|
+
<div class="read-only-p" :style="{width: wit + 'px',margin:'0 auto'}" v-html="item"></div>
|
|
123
123
|
<div class="read-only-a">{{ index + 1 }}/{{ htmlArr.length }}</div>
|
|
124
124
|
</div>
|
|
125
125
|
</div>
|
|
@@ -3411,11 +3411,13 @@ export default {
|
|
|
3411
3411
|
.read-only-p {
|
|
3412
3412
|
width: 100%;
|
|
3413
3413
|
height: 100%;
|
|
3414
|
+
white-space:pre-wrap;
|
|
3414
3415
|
}
|
|
3415
3416
|
|
|
3416
3417
|
:deep(.read-only-p p) {
|
|
3417
3418
|
line-height: 24px;
|
|
3418
3419
|
text-align: justify;
|
|
3420
|
+
white-space:pre-wrap;
|
|
3419
3421
|
}
|
|
3420
3422
|
|
|
3421
3423
|
:deep(p[data-signid="subject"]) {
|