zydx-plus 1.35.477 → 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zydx-plus",
3
- "version": "1.35.477",
3
+ "version": "1.35.478",
4
4
  "description": "Vue.js",
5
5
  "main": "src/index.js",
6
6
  "files": [
@@ -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')">插入白板</button>
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% - 34px);
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: 34px;
863
+ height: 10px;
867
864
  line-height: 34px;
868
865
  display: flex;
869
866
  justify-content: space-between;
@@ -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>
package/src/index.js CHANGED
@@ -87,7 +87,7 @@ function install(app) {
87
87
  }
88
88
 
89
89
  export default {
90
- version: '1.35.477',
90
+ version: '1.35.478',
91
91
  install,
92
92
  Calendar,
93
93
  Message,