zydx-plus 1.35.477 → 1.35.479
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 +1 -1
- package/src/components/data_table/src/data_table.vue +3 -3
- package/src/components/editor/src/editor.vue +12 -8
- package/src/components/editor2/src/editor.vue +1 -1
- package/src/components/flip/src/flip.vue +5 -3
- package/src/components/paint/src/paint.vue +4 -7
- package/src/components/read/src/read.vue +4 -1
- package/src/components/tree/src/tree.vue +4 -1
- package/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -300,7 +300,7 @@ export default defineComponent({
|
|
|
300
300
|
<div class="table_wrapper" style={[getHeight, getWidth]}>
|
|
301
301
|
{draggable ? (
|
|
302
302
|
<div class="table_root" aria-label="draggbale-table">
|
|
303
|
-
<VueDraggableNext tag={"table"} animation={"200"} onEnd={onDragEnd}>
|
|
303
|
+
<VueDraggableNext tag={"table"} border="0" cellpadding="0" cellspacing="0" animation={"200"} onEnd={onDragEnd}>
|
|
304
304
|
<table-head rows={rows} checked={checkbox_state[0]}></table-head>
|
|
305
305
|
{data.map((row, idx) => (
|
|
306
306
|
<table-row
|
|
@@ -315,7 +315,7 @@ export default defineComponent({
|
|
|
315
315
|
</VueDraggableNext>
|
|
316
316
|
</div>
|
|
317
317
|
) : (
|
|
318
|
-
<table class="table_root" aria-label="simple-table">
|
|
318
|
+
<table class="table_root" border="0" cellpadding="0" cellspacing="0" aria-label="simple-table">
|
|
319
319
|
<table-head rows={rows} checked={checkbox_state[0]}></table-head>
|
|
320
320
|
<tbody class="table_body">
|
|
321
321
|
{data.map((row, idx) => (
|
|
@@ -342,6 +342,7 @@ export default defineComponent({
|
|
|
342
342
|
position: relative;
|
|
343
343
|
opacity: 1;
|
|
344
344
|
overflow: scroll;
|
|
345
|
+
border-top: 1px solid #cccccc;
|
|
345
346
|
}
|
|
346
347
|
|
|
347
348
|
.table_wrapper::-webkit-scrollbar {
|
|
@@ -353,7 +354,6 @@ export default defineComponent({
|
|
|
353
354
|
table-layout: fixed;
|
|
354
355
|
display: table;
|
|
355
356
|
max-width: 100%;
|
|
356
|
-
border-top: 1px solid #cccccc;
|
|
357
357
|
border-left: 1px solid #cccccc;
|
|
358
358
|
margin: 0 auto;
|
|
359
359
|
border-spacing: 0;
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
</div>
|
|
90
90
|
</div>
|
|
91
91
|
|
|
92
|
-
<div v-if="!readOnly && toolbar.length > 0" class="complete">
|
|
92
|
+
<div v-if="!readOnly && toolbar.length > 0 && butShow" class="complete">
|
|
93
93
|
<button v-if="butShow" class="but" @click="confirm">完成</button>
|
|
94
94
|
</div>
|
|
95
95
|
|
|
@@ -4095,13 +4095,13 @@ export default {
|
|
|
4095
4095
|
background-color: #fff;
|
|
4096
4096
|
box-sizing: border-box;
|
|
4097
4097
|
position: relative;
|
|
4098
|
-
|
|
4098
|
+
border: 1px solid #CCCCCC;
|
|
4099
4099
|
margin-bottom: 10px;
|
|
4100
|
-
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5)
|
|
4100
|
+
/*box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);*/
|
|
4101
4101
|
}
|
|
4102
4102
|
|
|
4103
4103
|
.read-only-page:last-child {
|
|
4104
|
-
|
|
4104
|
+
margin-bottom: 0;
|
|
4105
4105
|
}
|
|
4106
4106
|
|
|
4107
4107
|
.read-only-p {
|
|
@@ -4130,6 +4130,8 @@ export default {
|
|
|
4130
4130
|
|
|
4131
4131
|
:deep(.title) {
|
|
4132
4132
|
/*padding: 10px 0 2px 0;*/
|
|
4133
|
+
font-weight: 900;
|
|
4134
|
+
color:#333333;
|
|
4133
4135
|
}
|
|
4134
4136
|
|
|
4135
4137
|
.read-only-a {
|
|
@@ -4143,7 +4145,7 @@ export default {
|
|
|
4143
4145
|
}
|
|
4144
4146
|
|
|
4145
4147
|
.complete {
|
|
4146
|
-
padding: 0 10px
|
|
4148
|
+
padding: 0 10px 0px 10px;
|
|
4147
4149
|
text-align: right;
|
|
4148
4150
|
}
|
|
4149
4151
|
|
|
@@ -4242,7 +4244,7 @@ label {
|
|
|
4242
4244
|
}
|
|
4243
4245
|
|
|
4244
4246
|
:deep(.custom-link) {
|
|
4245
|
-
|
|
4247
|
+
/*//margin: 10px 0;*/
|
|
4246
4248
|
}
|
|
4247
4249
|
|
|
4248
4250
|
:deep(.mu) {
|
|
@@ -4373,6 +4375,7 @@ li {
|
|
|
4373
4375
|
position: relative;
|
|
4374
4376
|
display: flex;
|
|
4375
4377
|
align-items: center;
|
|
4378
|
+
border: 1px solid #CCCCCC;
|
|
4376
4379
|
}
|
|
4377
4380
|
|
|
4378
4381
|
.editing-cont {
|
|
@@ -4502,7 +4505,8 @@ li {
|
|
|
4502
4505
|
|
|
4503
4506
|
|
|
4504
4507
|
.menu-one {
|
|
4505
|
-
|
|
4508
|
+
/*max-width: 557px; min-width: 300px; width: max-content; padding: 10px; border-radius: 7px;
|
|
4509
|
+
//margin:0 100px; box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.58); background: #FFFFFF; display: flex; flex-direction: column; justify-content: space-between; z-index: 10 !important;*/
|
|
4506
4510
|
}
|
|
4507
4511
|
|
|
4508
4512
|
.menu-one-text {
|
|
@@ -4514,7 +4518,7 @@ li {
|
|
|
4514
4518
|
font-weight: 400;
|
|
4515
4519
|
overflow-y: auto;
|
|
4516
4520
|
font-family: FangSong;
|
|
4517
|
-
|
|
4521
|
+
/*text-indent: 2em; margin-bottom: 6px;*/
|
|
4518
4522
|
}
|
|
4519
4523
|
|
|
4520
4524
|
.menu-one-title {
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
</label>
|
|
16
16
|
<button v-else class="buts" @click="toolTap(item.key)">{{ item.title }}</button>
|
|
17
17
|
</div>
|
|
18
|
-
<button v-if='isShowWhiteboarde' class="buts" @click="toolTap('paint')"
|
|
18
|
+
<button v-if='isShowWhiteboarde' class="buts" @click="toolTap('paint')">手写记录</button>
|
|
19
19
|
<button v-if="voiceShow" class="buts" @mousedown.stop="speechDown" @click="voice()"
|
|
20
20
|
:style="{color: (voiceStatus)? '#4B0C77' :'#000'}">{{ voiceStatus ? '关闭语音' : '语音输入' }}
|
|
21
21
|
</button>
|
|
@@ -1356,7 +1356,9 @@ export default {
|
|
|
1356
1356
|
display: inline-block;
|
|
1357
1357
|
margin: 0 auto;
|
|
1358
1358
|
position: relative;
|
|
1359
|
-
|
|
1359
|
+
border: 1px solid #cccccc;
|
|
1360
|
+
overflow: hidden;
|
|
1361
|
+
/*box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);*/
|
|
1360
1362
|
/*cursor: none;*/
|
|
1361
1363
|
}
|
|
1362
1364
|
|
|
@@ -1440,8 +1442,8 @@ export default {
|
|
|
1440
1442
|
.book {
|
|
1441
1443
|
width: 100%;
|
|
1442
1444
|
/*min-height: 600px;*/
|
|
1443
|
-
max-height: 1200px;
|
|
1444
|
-
overflow-y: auto
|
|
1445
|
+
/*max-height: 1200px;
|
|
1446
|
+
overflow-y: auto;*/
|
|
1445
1447
|
}
|
|
1446
1448
|
|
|
1447
1449
|
.book::-webkit-scrollbar{
|
|
@@ -1,11 +1,8 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<dragPopup @updateDrag="updateDragInit" :width="width" :height="height" :minWidth="740" :minHeight="487" @close="cancel" :minimizeCir="false" :dragTextShow="false">
|
|
2
|
+
<dragPopup title="手写记录" @updateDrag="updateDragInit" :width="width" :height="height" :minWidth="740" :minHeight="487" @close="cancel" :minimizeCir="false" :dragTextShow="false">
|
|
3
3
|
<template #content>
|
|
4
4
|
<div class="paint" :id="ids">
|
|
5
|
-
<div class="paint-title">
|
|
6
|
-
<span>插入白板</span>
|
|
7
|
-
<div></div>
|
|
8
|
-
</div>
|
|
5
|
+
<div class="paint-title"></div>
|
|
9
6
|
<div class="paint-cont">
|
|
10
7
|
<Sketchpad ref="sketchpad" :top="false"></Sketchpad>
|
|
11
8
|
</div>
|
|
@@ -847,7 +844,7 @@ export default {
|
|
|
847
844
|
.paint-cont {
|
|
848
845
|
border: 1px solid rgba(204, 204, 204, 1);
|
|
849
846
|
width: 100%;
|
|
850
|
-
height: calc(100% -
|
|
847
|
+
height: calc(100% - 14px);
|
|
851
848
|
}
|
|
852
849
|
|
|
853
850
|
.paint {
|
|
@@ -863,7 +860,7 @@ export default {
|
|
|
863
860
|
}
|
|
864
861
|
.paint-title {
|
|
865
862
|
font-size: 14px;
|
|
866
|
-
height:
|
|
863
|
+
height: 10px;
|
|
867
864
|
line-height: 34px;
|
|
868
865
|
display: flex;
|
|
869
866
|
justify-content: space-between;
|
|
@@ -280,10 +280,13 @@ export default {
|
|
|
280
280
|
}
|
|
281
281
|
.pageContainer{
|
|
282
282
|
width: 100%;
|
|
283
|
-
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5)
|
|
283
|
+
/*box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);*/
|
|
284
284
|
margin-bottom: 10px;
|
|
285
285
|
display: inline-block;
|
|
286
286
|
position: relative;
|
|
287
|
+
box-sizing: border-box;
|
|
288
|
+
overflow: hidden;
|
|
289
|
+
border: 1px solid #cccccc;
|
|
287
290
|
}
|
|
288
291
|
.mp4,.mp3{
|
|
289
292
|
max-width: 100%;
|
|
@@ -150,7 +150,7 @@ export default {
|
|
|
150
150
|
<i :class="`iconfont tree_icon ${tree.icon.value}`"></i>
|
|
151
151
|
</template>
|
|
152
152
|
</template>
|
|
153
|
-
<span class="tree_text"
|
|
153
|
+
<span class="tree_text" :class="tree.level==0&&!tree.isOpen ? 'color333' : ''"
|
|
154
154
|
:style="textStyle(tree)">
|
|
155
155
|
{{ tree.name }}
|
|
156
156
|
</span>
|
|
@@ -265,4 +265,7 @@ export default {
|
|
|
265
265
|
align-items: center;
|
|
266
266
|
justify-content: flex-start;
|
|
267
267
|
}
|
|
268
|
+
.color333 {
|
|
269
|
+
color: #333333;
|
|
270
|
+
}
|
|
268
271
|
</style>
|