zydx-plus 1.35.476 → 1.35.478
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 +2 -2
- package/src/components/editor2/src/editor.vue +1 -1
- package/src/components/paint/src/paint.vue +4 -7
- package/src/components/tab/src/tab.vue +1 -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) => (
|
|
@@ -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>
|
|
@@ -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;
|
|
@@ -67,7 +67,7 @@ export default {
|
|
|
67
67
|
this.id = this.randomId()
|
|
68
68
|
},
|
|
69
69
|
methods: {
|
|
70
|
-
isOtherModule (item) { //
|
|
70
|
+
isOtherModule (item) { // 笔记、提问求解、生问生答、讲给他人
|
|
71
71
|
let bol = ['action_notes', 'action_lesson013', 'action_lesson055', 'action_lesson056'].includes(item.actionId)
|
|
72
72
|
return bol
|
|
73
73
|
},
|
|
@@ -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>
|