zydx-plus 1.33.389 → 1.33.391
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.33.
|
|
3
|
+
"version": "1.33.391",
|
|
4
4
|
"description": "Vue.js",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"files": [
|
|
@@ -48,7 +48,8 @@
|
|
|
48
48
|
"js-audio-recorder": "^1.0.7",
|
|
49
49
|
"react": "^18.2.0",
|
|
50
50
|
"react-dom": "^18.2.0",
|
|
51
|
-
"tldraw": "^2.0.2"
|
|
51
|
+
"tldraw": "^2.0.2",
|
|
52
|
+
"@tldraw/editor": "^2.0.2"
|
|
52
53
|
},
|
|
53
54
|
"peerDependencies": {
|
|
54
55
|
"vue": "^3.2.13"
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
let buttonNames = {
|
|
2
2
|
methods: {
|
|
3
|
+
// 获取类别
|
|
4
|
+
getJobType () {
|
|
5
|
+
let jobType = sessionStorage.getItem('job_type')
|
|
6
|
+
return jobType
|
|
7
|
+
},
|
|
3
8
|
initConfig (item) {
|
|
4
9
|
if (this.headerType === 0) { // 互动资源 教师
|
|
5
10
|
return this.interactResourceButtonList(item);
|
|
@@ -2053,6 +2058,124 @@ let buttonNames = {
|
|
|
2053
2058
|
},
|
|
2054
2059
|
interactResourceButtonList (item) {
|
|
2055
2060
|
return {
|
|
2061
|
+
resource_lesson_wushu: {
|
|
2062
|
+
actionName: '武术资源',
|
|
2063
|
+
buttonList: {
|
|
2064
|
+
0: {
|
|
2065
|
+
headLevel: {
|
|
2066
|
+
default: "demand",
|
|
2067
|
+
demand: '武术要求',
|
|
2068
|
+
resourceIndex: '任务题目',
|
|
2069
|
+
review: '武术点评',
|
|
2070
|
+
guideIndex: '指导意见',
|
|
2071
|
+
analyse: '武术分析',
|
|
2072
|
+
countermeasure: this.getJobType() === 'resource_guidance' ? '指导对策' : '教学对策',
|
|
2073
|
+
assessment: '素养评估',
|
|
2074
|
+
analysis: '素养分析',
|
|
2075
|
+
proposal: '成长建议'
|
|
2076
|
+
},
|
|
2077
|
+
otherLevel: {
|
|
2078
|
+
default: "singletonClass",
|
|
2079
|
+
singletonClass: this.getCurrentPrefix(item) + '题目',
|
|
2080
|
+
allClass: this.getPrefix(item) + '题目'
|
|
2081
|
+
},
|
|
2082
|
+
lowLevel: {
|
|
2083
|
+
default: "viewResource",
|
|
2084
|
+
createResource: '创建题目',
|
|
2085
|
+
viewResource: '题目列表',
|
|
2086
|
+
selectResource: '查找资源',
|
|
2087
|
+
}
|
|
2088
|
+
}
|
|
2089
|
+
}
|
|
2090
|
+
},
|
|
2091
|
+
resource_lesson_biographical: {
|
|
2092
|
+
actionName: '简历资源',
|
|
2093
|
+
buttonList: {
|
|
2094
|
+
0: {
|
|
2095
|
+
headLevel: {
|
|
2096
|
+
default: "demand",
|
|
2097
|
+
demand: '简历要求',
|
|
2098
|
+
review: '简历点评',
|
|
2099
|
+
analyse: '简历分析',
|
|
2100
|
+
countermeasure: this.getJobType() === 'resource_guidance' ? '指导对策' : '教学对策',
|
|
2101
|
+
assessment: '素养评估',
|
|
2102
|
+
analysis: '素养分析',
|
|
2103
|
+
proposal: '成长建议'
|
|
2104
|
+
}
|
|
2105
|
+
}
|
|
2106
|
+
}
|
|
2107
|
+
},
|
|
2108
|
+
resource_lesson_facew: {
|
|
2109
|
+
actionName: '面试资源',
|
|
2110
|
+
buttonList: {
|
|
2111
|
+
0: {
|
|
2112
|
+
headLevel: {
|
|
2113
|
+
default: "demand",
|
|
2114
|
+
demand: '面试要求',
|
|
2115
|
+
review: '面试点评',
|
|
2116
|
+
analyse: '面试分析',
|
|
2117
|
+
countermeasure: this.getJobType() === 'resource_guidance' ? '指导对策' : '教学对策',
|
|
2118
|
+
assessment: '素养评估',
|
|
2119
|
+
analysis: '素养分析',
|
|
2120
|
+
proposal: '成长建议'
|
|
2121
|
+
}
|
|
2122
|
+
}
|
|
2123
|
+
}
|
|
2124
|
+
},
|
|
2125
|
+
resource_lesson_dissertation1: { // 毕业论文指导-开题报告配置项
|
|
2126
|
+
actionName: '开题报告',
|
|
2127
|
+
buttonList: {
|
|
2128
|
+
0: {
|
|
2129
|
+
headLevel: {
|
|
2130
|
+
default: "demand",
|
|
2131
|
+
demand: '报告要求',
|
|
2132
|
+
review: '报告点评',
|
|
2133
|
+
analyse: '报告分析',
|
|
2134
|
+
countermeasure: this.getJobType() === 'resource_guidance' ? '指导对策' : '教学对策',
|
|
2135
|
+
assessment: '素养评估',
|
|
2136
|
+
analysis: '素养分析',
|
|
2137
|
+
proposal: '成长建议'
|
|
2138
|
+
}
|
|
2139
|
+
}
|
|
2140
|
+
}
|
|
2141
|
+
},
|
|
2142
|
+
resource_lesson_dissertation2: { // 毕业论文指导-论文写作配置项
|
|
2143
|
+
actionName: '论文写作',
|
|
2144
|
+
buttonList: {
|
|
2145
|
+
0: {
|
|
2146
|
+
headLevel: {
|
|
2147
|
+
default: "demand",
|
|
2148
|
+
demand: '写作要求',
|
|
2149
|
+
review: '写作点评',
|
|
2150
|
+
analyse: '写作分析',
|
|
2151
|
+
countermeasure: this.getJobType() === 'resource_guidance' ? '指导对策' : '教学对策',
|
|
2152
|
+
assessment: '素养评估',
|
|
2153
|
+
analysis: '素养分析',
|
|
2154
|
+
proposal: '成长建议'
|
|
2155
|
+
}
|
|
2156
|
+
}
|
|
2157
|
+
}
|
|
2158
|
+
},
|
|
2159
|
+
resource_lesson_dissertation3: { // 毕业论文指导-论文答辩配置项
|
|
2160
|
+
actionName: '论文答辩',
|
|
2161
|
+
buttonList: {
|
|
2162
|
+
0: {
|
|
2163
|
+
headLevel: {
|
|
2164
|
+
default: "demand",
|
|
2165
|
+
demand: '答辩要求',
|
|
2166
|
+
review: '答辩点评',
|
|
2167
|
+
analyse: '答辩分析',
|
|
2168
|
+
countermeasure: this.getJobType() === 'resource_guidance' ? '指导对策' : '教学对策',
|
|
2169
|
+
assessment: '素养评估',
|
|
2170
|
+
analysis: '素养分析',
|
|
2171
|
+
proposal: '成长建议'
|
|
2172
|
+
}
|
|
2173
|
+
}
|
|
2174
|
+
}
|
|
2175
|
+
},
|
|
2176
|
+
resource_lesson_guidance: { // 就业指导-指导意见配置项
|
|
2177
|
+
actionName: '指导意见'
|
|
2178
|
+
},
|
|
2056
2179
|
resource_scene:{
|
|
2057
2180
|
actionName: '情景资源',
|
|
2058
2181
|
buttonList: {
|
|
@@ -2063,7 +2186,7 @@ let buttonNames = {
|
|
|
2063
2186
|
resourceIndex: '学习任务',
|
|
2064
2187
|
review: '学习点评',
|
|
2065
2188
|
analyse: '学习分析',
|
|
2066
|
-
countermeasure: '
|
|
2189
|
+
countermeasure: this.getJobType() === 'resource_guidance' ? '指导对策' : '教学对策'
|
|
2067
2190
|
},
|
|
2068
2191
|
otherLevel: {
|
|
2069
2192
|
default: "singletonClass",
|
|
@@ -2088,7 +2211,7 @@ let buttonNames = {
|
|
|
2088
2211
|
demand: '调查要求',
|
|
2089
2212
|
resourceIndex: '调查试题',
|
|
2090
2213
|
analyse: '调查分析',
|
|
2091
|
-
countermeasure: '教学对策'
|
|
2214
|
+
countermeasure: this.getJobType() === 'resource_guidance' ? '指导对策' : '教学对策'
|
|
2092
2215
|
},
|
|
2093
2216
|
otherLevel: {
|
|
2094
2217
|
default: "singletonClass",
|
|
@@ -2113,7 +2236,7 @@ let buttonNames = {
|
|
|
2113
2236
|
demand: '检测要求',
|
|
2114
2237
|
resourceIndex: '检测试题',
|
|
2115
2238
|
analyse: '检测分析',
|
|
2116
|
-
countermeasure: '教学对策',
|
|
2239
|
+
countermeasure: this.getJobType() === 'resource_guidance' ? '指导对策' : '教学对策',
|
|
2117
2240
|
assessment: '素养评估',
|
|
2118
2241
|
analysis: '素养分析',
|
|
2119
2242
|
proposal: '成长建议'
|
|
@@ -2142,7 +2265,7 @@ let buttonNames = {
|
|
|
2142
2265
|
resourceIndex: '思政主题',
|
|
2143
2266
|
review: '思政点评',
|
|
2144
2267
|
analyse: '思政分析',
|
|
2145
|
-
countermeasure: '教学对策',
|
|
2268
|
+
countermeasure: this.getJobType() === 'resource_guidance' ? '指导对策' : '教学对策',
|
|
2146
2269
|
assessment: '素养评估',
|
|
2147
2270
|
analysis: '素养分析',
|
|
2148
2271
|
proposal: '成长建议'
|
|
@@ -2170,7 +2293,7 @@ let buttonNames = {
|
|
|
2170
2293
|
demand: '笔记要求',
|
|
2171
2294
|
review: '笔记点评',
|
|
2172
2295
|
analyse: '笔记分析',
|
|
2173
|
-
countermeasure: '教学对策',
|
|
2296
|
+
countermeasure: this.getJobType() === 'resource_guidance' ? '指导对策' : '教学对策',
|
|
2174
2297
|
assessment: '素养评估',
|
|
2175
2298
|
analysis: '素养分析',
|
|
2176
2299
|
proposal: '成长建议'
|
|
@@ -2188,7 +2311,7 @@ let buttonNames = {
|
|
|
2188
2311
|
resourceIndex: '提问问题',
|
|
2189
2312
|
review: '回答点评',
|
|
2190
2313
|
analyse: '回答分析',
|
|
2191
|
-
countermeasure: '教学对策',
|
|
2314
|
+
countermeasure: this.getJobType() === 'resource_guidance' ? '指导对策' : '教学对策',
|
|
2192
2315
|
assessment: '素养评估',
|
|
2193
2316
|
analysis: '素养分析',
|
|
2194
2317
|
proposal: '成长建议'
|
|
@@ -2217,7 +2340,7 @@ let buttonNames = {
|
|
|
2217
2340
|
resourceIndex: '虚拟提问',
|
|
2218
2341
|
review: '提问点评',
|
|
2219
2342
|
analyse: '提问分析',
|
|
2220
|
-
countermeasure: '教学对策',
|
|
2343
|
+
countermeasure: this.getJobType() === 'resource_guidance' ? '指导对策' : '教学对策',
|
|
2221
2344
|
assessment: '素养评估',
|
|
2222
2345
|
analysis: '素养分析',
|
|
2223
2346
|
proposal: '成长建议'
|
|
@@ -2245,7 +2368,7 @@ let buttonNames = {
|
|
|
2245
2368
|
demand: '问答要求',
|
|
2246
2369
|
review: '问答点评',
|
|
2247
2370
|
analyse: '问答分析',
|
|
2248
|
-
countermeasure: '教学对策',
|
|
2371
|
+
countermeasure: this.getJobType() === 'resource_guidance' ? '指导对策' : '教学对策',
|
|
2249
2372
|
assessment: '素养评估',
|
|
2250
2373
|
analysis: '素养分析',
|
|
2251
2374
|
proposal: '成长建议'
|
|
@@ -2263,7 +2386,7 @@ let buttonNames = {
|
|
|
2263
2386
|
resourceIndex: '讨论题目',
|
|
2264
2387
|
review: '讨论点评',
|
|
2265
2388
|
analyse: '讨论分析',
|
|
2266
|
-
countermeasure: '教学对策',
|
|
2389
|
+
countermeasure: this.getJobType() === 'resource_guidance' ? '指导对策' : '教学对策',
|
|
2267
2390
|
assessment: '素养评估',
|
|
2268
2391
|
analysis: '素养分析',
|
|
2269
2392
|
proposal: '成长建议'
|
|
@@ -2292,7 +2415,7 @@ let buttonNames = {
|
|
|
2292
2415
|
resourceIndex: '风暴题目',
|
|
2293
2416
|
review: '风暴点评',
|
|
2294
2417
|
analyse: '风暴分析',
|
|
2295
|
-
countermeasure: '教学对策',
|
|
2418
|
+
countermeasure: this.getJobType() === 'resource_guidance' ? '指导对策' : '教学对策',
|
|
2296
2419
|
assessment: '素养评估',
|
|
2297
2420
|
analysis: '素养分析',
|
|
2298
2421
|
proposal: '成长建议'
|
|
@@ -2321,7 +2444,7 @@ let buttonNames = {
|
|
|
2321
2444
|
resourceIndex: '追问主题',
|
|
2322
2445
|
review: '回答点评',
|
|
2323
2446
|
analyse: '回答分析',
|
|
2324
|
-
countermeasure: '教学对策',
|
|
2447
|
+
countermeasure: this.getJobType() === 'resource_guidance' ? '指导对策' : '教学对策',
|
|
2325
2448
|
assessment: '素养评估',
|
|
2326
2449
|
analysis: '素养分析',
|
|
2327
2450
|
proposal: '成长建议'
|
|
@@ -2349,7 +2472,7 @@ let buttonNames = {
|
|
|
2349
2472
|
demand: '训练要求',
|
|
2350
2473
|
resourceIndex: '训练试题',
|
|
2351
2474
|
analyse: '训练分析',
|
|
2352
|
-
countermeasure: '教学对策',
|
|
2475
|
+
countermeasure: this.getJobType() === 'resource_guidance' ? '指导对策' : '教学对策',
|
|
2353
2476
|
assessment: '素养评估',
|
|
2354
2477
|
analysis: '素养分析',
|
|
2355
2478
|
proposal: '成长建议'
|
|
@@ -2378,7 +2501,7 @@ let buttonNames = {
|
|
|
2378
2501
|
resourceIndex: '案析题目',
|
|
2379
2502
|
review: '案析点评',
|
|
2380
2503
|
analyse: '案析分析',
|
|
2381
|
-
countermeasure: '教学对策',
|
|
2504
|
+
countermeasure: this.getJobType() === 'resource_guidance' ? '指导对策' : '教学对策',
|
|
2382
2505
|
assessment: '素养评估',
|
|
2383
2506
|
analysis: '素养分析',
|
|
2384
2507
|
proposal: '成长建议'
|
|
@@ -2407,7 +2530,7 @@ let buttonNames = {
|
|
|
2407
2530
|
resourceIndex: '学习任务',
|
|
2408
2531
|
review: '学习点评',
|
|
2409
2532
|
analyse: '学习分析',
|
|
2410
|
-
countermeasure: '教学对策',
|
|
2533
|
+
countermeasure: this.getJobType() === 'resource_guidance' ? '指导对策' : '教学对策',
|
|
2411
2534
|
assessment: '素养评估',
|
|
2412
2535
|
analysis: '素养分析',
|
|
2413
2536
|
proposal: '成长建议'
|
|
@@ -2435,7 +2558,7 @@ let buttonNames = {
|
|
|
2435
2558
|
demand: '讲解要求',
|
|
2436
2559
|
review: '讲解点评',
|
|
2437
2560
|
analyse: '讲解分析',
|
|
2438
|
-
countermeasure: '教学对策',
|
|
2561
|
+
countermeasure: this.getJobType() === 'resource_guidance' ? '指导对策' : '教学对策',
|
|
2439
2562
|
assessment: '素养评估',
|
|
2440
2563
|
analysis: '素养分析',
|
|
2441
2564
|
proposal: '成长建议'
|
|
@@ -2453,7 +2576,7 @@ let buttonNames = {
|
|
|
2453
2576
|
resourceIndex: '作业题目',
|
|
2454
2577
|
review: '作业点评',
|
|
2455
2578
|
analyse: '作业分析',
|
|
2456
|
-
countermeasure: '教学对策',
|
|
2579
|
+
countermeasure: this.getJobType() === 'resource_guidance' ? '指导对策' : '教学对策',
|
|
2457
2580
|
assessment: '素养评估',
|
|
2458
2581
|
analysis: '素养分析',
|
|
2459
2582
|
proposal: '成长建议'
|
|
@@ -2482,7 +2605,7 @@ let buttonNames = {
|
|
|
2482
2605
|
resourceIndex: '报告资源',
|
|
2483
2606
|
review: '聆听点评',
|
|
2484
2607
|
analyse: '聆听分析',
|
|
2485
|
-
countermeasure: '教学对策',
|
|
2608
|
+
countermeasure: this.getJobType() === 'resource_guidance' ? '指导对策' : '教学对策',
|
|
2486
2609
|
assessment: '素养评估',
|
|
2487
2610
|
analysis: '素养分析',
|
|
2488
2611
|
proposal: '成长建议'
|
|
@@ -2510,7 +2633,7 @@ let buttonNames = {
|
|
|
2510
2633
|
demand: '阅读要求',
|
|
2511
2634
|
review: '阅读点评',
|
|
2512
2635
|
analyse: '阅读分析',
|
|
2513
|
-
countermeasure: '教学对策',
|
|
2636
|
+
countermeasure: this.getJobType() === 'resource_guidance' ? '指导对策' : '教学对策',
|
|
2514
2637
|
assessment: '素养评估',
|
|
2515
2638
|
analysis: '素养分析',
|
|
2516
2639
|
proposal: '成长建议'
|
|
@@ -2528,7 +2651,7 @@ let buttonNames = {
|
|
|
2528
2651
|
guideIndex: '指导意见',
|
|
2529
2652
|
review: '写作点评',
|
|
2530
2653
|
analyse: '写作分析',
|
|
2531
|
-
countermeasure: '教学对策',
|
|
2654
|
+
countermeasure: this.getJobType() === 'resource_guidance' ? '指导对策' : '教学对策',
|
|
2532
2655
|
assessment: '素养评估',
|
|
2533
2656
|
analysis: '素养分析',
|
|
2534
2657
|
proposal: '成长建议'
|
|
@@ -2547,7 +2670,7 @@ let buttonNames = {
|
|
|
2547
2670
|
guideIndex: '指导意见',
|
|
2548
2671
|
review: '实践点评',
|
|
2549
2672
|
analyse: '实践分析',
|
|
2550
|
-
countermeasure: '教学对策',
|
|
2673
|
+
countermeasure: this.getJobType() === 'resource_guidance' ? '指导对策' : '教学对策',
|
|
2551
2674
|
assessment: '素养评估',
|
|
2552
2675
|
analysis: '素养分析',
|
|
2553
2676
|
proposal: '成长建议'
|
|
@@ -2577,7 +2700,7 @@ let buttonNames = {
|
|
|
2577
2700
|
guideIndex: '指导意见',
|
|
2578
2701
|
review: '实验点评',
|
|
2579
2702
|
analyse: '实验分析',
|
|
2580
|
-
countermeasure: '教学对策',
|
|
2703
|
+
countermeasure: this.getJobType() === 'resource_guidance' ? '指导对策' : '教学对策',
|
|
2581
2704
|
assessment: '素养评估',
|
|
2582
2705
|
analysis: '素养分析',
|
|
2583
2706
|
proposal: '成长建议'
|
|
@@ -2607,7 +2730,7 @@ let buttonNames = {
|
|
|
2607
2730
|
guideIndex: '指导意见',
|
|
2608
2731
|
review: '项目点评',
|
|
2609
2732
|
analyse: '项目分析',
|
|
2610
|
-
countermeasure: '教学对策',
|
|
2733
|
+
countermeasure: this.getJobType() === 'resource_guidance' ? '指导对策' : '教学对策',
|
|
2611
2734
|
assessment: '素养评估',
|
|
2612
2735
|
analysis: '素养分析',
|
|
2613
2736
|
proposal: '成长建议'
|
|
@@ -2637,7 +2760,7 @@ let buttonNames = {
|
|
|
2637
2760
|
guideIndex: '指导意见',
|
|
2638
2761
|
review: '创新点评',
|
|
2639
2762
|
analyse: '创新分析',
|
|
2640
|
-
countermeasure: '教学对策',
|
|
2763
|
+
countermeasure: this.getJobType() === 'resource_guidance' ? '指导对策' : '教学对策',
|
|
2641
2764
|
assessment: '素养评估',
|
|
2642
2765
|
analysis: '素养分析',
|
|
2643
2766
|
proposal: '成长建议'
|
|
@@ -2665,7 +2788,7 @@ let buttonNames = {
|
|
|
2665
2788
|
demand: '考试要求',
|
|
2666
2789
|
resourceIndex: '考试试题',
|
|
2667
2790
|
analyse: '考试分析',
|
|
2668
|
-
countermeasure: '教学对策',
|
|
2791
|
+
countermeasure: this.getJobType() === 'resource_guidance' ? '指导对策' : '教学对策',
|
|
2669
2792
|
assessment: '素养评估',
|
|
2670
2793
|
analysis: '素养分析',
|
|
2671
2794
|
proposal: '成长建议'
|
|
@@ -2694,7 +2817,7 @@ let buttonNames = {
|
|
|
2694
2817
|
resourceIndex1: '学习激励',
|
|
2695
2818
|
resourceIndex2: '教师督学',
|
|
2696
2819
|
analyse: '动力分析',
|
|
2697
|
-
countermeasure: '教学对策'
|
|
2820
|
+
countermeasure: this.getJobType() === 'resource_guidance' ? '指导对策' : '教学对策'
|
|
2698
2821
|
}
|
|
2699
2822
|
}
|
|
2700
2823
|
}
|