zydx-plus 1.30.159 → 1.30.161
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
|
@@ -1132,7 +1132,6 @@ let buttonNames = {
|
|
|
1132
1132
|
}
|
|
1133
1133
|
}[this.actionId];
|
|
1134
1134
|
if (this.isTeacherReview) {
|
|
1135
|
-
console.log(actionInfo.buttonList[this.tabType].lowLevel)
|
|
1136
1135
|
delete actionInfo.buttonList[this.tabType].lowLevel.studentReview;
|
|
1137
1136
|
} else {
|
|
1138
1137
|
delete actionInfo.buttonList[this.tabType].lowLevel.teacherReview;
|
|
@@ -2192,6 +2191,7 @@ let buttonNames = {
|
|
|
2192
2191
|
headLevel: {
|
|
2193
2192
|
default: "demand",
|
|
2194
2193
|
demand: '实践要求',
|
|
2194
|
+
guideIndex: '指导意见',
|
|
2195
2195
|
resourceIndex: '实践项目',
|
|
2196
2196
|
review: '实践点评',
|
|
2197
2197
|
analyse: '实践分析',
|
|
@@ -2216,6 +2216,7 @@ let buttonNames = {
|
|
|
2216
2216
|
headLevel: {
|
|
2217
2217
|
default: "demand",
|
|
2218
2218
|
demand: '实验要求',
|
|
2219
|
+
guideIndex: '指导意见',
|
|
2219
2220
|
resourceIndex: '实验项目',
|
|
2220
2221
|
review: '实验点评',
|
|
2221
2222
|
analyse: '实验分析',
|
|
@@ -2240,6 +2241,7 @@ let buttonNames = {
|
|
|
2240
2241
|
headLevel: {
|
|
2241
2242
|
default: "demand",
|
|
2242
2243
|
demand: '项目要求',
|
|
2244
|
+
guideIndex: '指导意见',
|
|
2243
2245
|
resourceIndex: '项目主题',
|
|
2244
2246
|
review: '项目点评',
|
|
2245
2247
|
analyse: '项目分析',
|
|
@@ -2264,6 +2266,7 @@ let buttonNames = {
|
|
|
2264
2266
|
headLevel: {
|
|
2265
2267
|
default: "demand",
|
|
2266
2268
|
demand: '创新要求',
|
|
2269
|
+
guideIndex: '指导意见',
|
|
2267
2270
|
resourceIndex: '创新任务',
|
|
2268
2271
|
review: '创新点评',
|
|
2269
2272
|
analyse: '创新分析',
|
|
@@ -88,7 +88,7 @@ export default defineComponent({
|
|
|
88
88
|
setTimeout(() => {
|
|
89
89
|
this.editableShow = true
|
|
90
90
|
this.readOnlyPage()
|
|
91
|
-
},
|
|
91
|
+
},50)
|
|
92
92
|
}
|
|
93
93
|
},
|
|
94
94
|
deep: true,
|
|
@@ -100,20 +100,6 @@ export default defineComponent({
|
|
|
100
100
|
if(e) this.readOnlyPage()
|
|
101
101
|
},
|
|
102
102
|
deep: true
|
|
103
|
-
},
|
|
104
|
-
page: {
|
|
105
|
-
handler: function (e, oldVal) {
|
|
106
|
-
if(!e) {
|
|
107
|
-
setTimeout(() => {
|
|
108
|
-
const data = document.querySelectorAll('.w-e-scroll')[0].childNodes[0].childNodes
|
|
109
|
-
for (let i = 0; i < data.length; i++) {
|
|
110
|
-
this.htmlArr.push(data[i].outerHTML)
|
|
111
|
-
}
|
|
112
|
-
},10)
|
|
113
|
-
}
|
|
114
|
-
},
|
|
115
|
-
deep: true,
|
|
116
|
-
immediate: true
|
|
117
103
|
}
|
|
118
104
|
},
|
|
119
105
|
mounted() {
|
|
@@ -126,6 +112,13 @@ export default defineComponent({
|
|
|
126
112
|
let max = 1123
|
|
127
113
|
let pHeight = 0
|
|
128
114
|
let html = ''
|
|
115
|
+
if(!this.page) {
|
|
116
|
+
for (let i = 0; i < data.length; i++) {
|
|
117
|
+
html += data[i].outerHTML
|
|
118
|
+
}
|
|
119
|
+
this.htmlArr.push(html)
|
|
120
|
+
return
|
|
121
|
+
}
|
|
129
122
|
for (let i = 0; i < data.length; i++) {
|
|
130
123
|
let text = data[i].offsetHeight
|
|
131
124
|
if((pHeight + text) > max) {
|