-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcourse-plan-prototype.html
More file actions
1289 lines (1142 loc) · 36.7 KB
/
Copy pathcourse-plan-prototype.html
File metadata and controls
1289 lines (1142 loc) · 36.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>添加授课反馈 - 产品原型</title>
<style>
:root {
--page: #f3f5f8;
--panel: #ffffff;
--ink: #263244;
--muted: #6a7586;
--weak: #a9b3c2;
--line: #e4e9f1;
--line-strong: #d5dde9;
--field: #ffffff;
--brand: #2f74f6;
--brand-deep: #245fce;
--danger: #f05d5d;
--danger-soft: #fff7f7;
--shadow: 0 16px 36px rgba(35, 48, 70, 0.12);
font-family: "Avenir Next", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
min-width: 1180px;
color: var(--ink);
background:
linear-gradient(180deg, rgba(218, 224, 234, 0.96), rgba(243, 245, 248, 0.98) 118px),
var(--page);
}
button,
input,
textarea {
font: inherit;
}
button {
border: 0;
cursor: pointer;
}
.prototype {
width: calc(100vw - 28px);
min-height: calc(100vh - 28px);
margin: 14px;
overflow: hidden;
border: 1px solid var(--line);
border-radius: 4px;
background: var(--panel);
box-shadow: var(--shadow);
}
.titlebar {
position: sticky;
top: 0;
z-index: 10;
display: flex;
align-items: center;
gap: 18px;
height: 46px;
padding: 0 18px;
border-bottom: 1px solid var(--line);
background: rgba(255, 255, 255, 0.96);
backdrop-filter: blur(12px);
}
.page-title {
margin: 0;
color: #101828;
font-size: 15px;
font-weight: 800;
white-space: nowrap;
}
.form-scroll {
height: calc(100vh - 122px);
overflow: auto;
padding: 18px 20px 30px;
}
.section {
margin-bottom: 24px;
}
.section-title {
margin: 0 0 18px;
color: #424d61;
font-size: 15px;
font-weight: 800;
}
.basic-grid,
.two-grid {
display: grid;
gap: 14px 84px;
}
.basic-grid {
grid-template-columns: 1fr 1fr 1fr;
max-width: 1240px;
}
.two-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.info-line,
.input-line {
display: flex;
align-items: center;
min-height: 32px;
color: var(--muted);
font-size: 13px;
}
.info-line label,
.input-line label {
min-width: 88px;
color: #5f6877;
}
.info-line strong {
color: #3e4858;
font-weight: 600;
}
.input-line input {
width: min(520px, 100%);
height: 32px;
padding: 0 10px;
border: 1px solid var(--line);
border-radius: 4px;
color: #2e394b;
background: var(--field);
outline: none;
transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}
.field {
margin-bottom: 20px;
}
.field-head {
display: flex;
align-items: center;
justify-content: space-between;
min-height: 26px;
margin-bottom: 6px;
color: #4a5568;
font-size: 13px;
}
.field-title {
display: flex;
align-items: center;
gap: 4px;
font-weight: 700;
}
.required {
color: var(--danger);
font-weight: 800;
}
.optional {
color: #9aa5b5;
font-weight: 500;
}
textarea {
display: block;
width: 100%;
min-height: 86px;
padding: 11px 12px;
border: 1px solid var(--line);
border-radius: 4px;
color: #2e394b;
background: #fff;
resize: vertical;
outline: none;
line-height: 1.65;
font-size: 13px;
transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}
input::placeholder,
textarea::placeholder {
color: #bdc5d0;
}
input:focus,
textarea:focus {
border-color: #a9c8ff;
box-shadow: 0 0 0 3px rgba(47, 116, 246, 0.08);
}
.field.error textarea,
.input-line.error input,
.plan-table .error input {
border-color: #ff9999;
background: var(--danger-soft);
}
.field-meta {
display: flex;
align-items: center;
justify-content: space-between;
min-height: 19px;
margin-top: 3px;
color: var(--weak);
font-size: 12px;
}
.error-text {
visibility: hidden;
color: var(--danger);
}
.error .error-text {
visibility: visible;
}
.plan-wrap {
border: 1px solid var(--line);
border-radius: 4px;
overflow: hidden;
background: #fff;
}
.plan-table {
width: 100%;
border-collapse: collapse;
table-layout: fixed;
font-size: 13px;
}
.plan-table th,
.plan-table td {
border-bottom: 1px solid var(--line);
border-right: 1px solid var(--line);
padding: 8px;
vertical-align: top;
}
.plan-table th:last-child,
.plan-table td:last-child {
border-right: 0;
}
.plan-table th {
height: 38px;
color: #4a5568;
background: #f8fafc;
font-weight: 800;
text-align: left;
}
.plan-table td {
background: #fff;
}
.plan-table input {
width: 100%;
height: 34px;
padding: 0 10px;
border: 1px solid var(--line);
border-radius: 4px;
color: #2e394b;
outline: none;
transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}
.lesson-col {
width: 15%;
}
.time-col {
width: 24%;
}
.action-col {
width: 90px;
}
.table-tools {
display: flex;
align-items: center;
justify-content: space-between;
min-height: 48px;
padding: 8px 10px;
color: var(--weak);
font-size: 12px;
background: #fff;
}
.add-row,
.remove-row {
height: 30px;
border-radius: 4px;
font-size: 13px;
font-weight: 700;
}
.add-row {
padding: 0 12px;
color: var(--brand);
border: 1px solid #c8dcff;
background: #f5f9ff;
}
.remove-row {
width: 54px;
color: #6c7788;
border: 1px solid var(--line);
background: #fff;
}
.remove-row:disabled {
color: #c0c8d4;
cursor: not-allowed;
background: #f8fafc;
}
.footer {
position: sticky;
bottom: 0;
z-index: 10;
display: flex;
align-items: center;
justify-content: flex-end;
height: 62px;
padding: 0 18px;
border-top: 1px solid var(--line);
background: rgba(255, 255, 255, 0.96);
backdrop-filter: blur(12px);
}
.footer-actions {
display: flex;
align-items: center;
gap: 10px;
}
.plain-btn,
.primary-btn {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 64px;
height: 34px;
padding: 0 16px;
border-radius: 4px;
font-size: 13px;
font-weight: 700;
}
.plain-btn {
color: #526075;
border: 1px solid var(--line-strong);
background: #fff;
}
.primary-btn {
color: #fff;
background: var(--brand);
box-shadow: 0 8px 18px rgba(47, 116, 246, 0.24);
}
.toast {
position: fixed;
top: 62px;
right: 30px;
z-index: 30;
display: none;
min-width: 220px;
padding: 10px 14px;
border: 1px solid #bce8d5;
border-radius: 6px;
color: #13704f;
background: #f1fbf6;
box-shadow: 0 14px 28px rgba(35, 48, 70, 0.12);
font-size: 13px;
}
.toast.show {
display: block;
animation: drop 220ms ease both;
}
.hidden {
display: none !important;
}
.pre-page {
min-height: 100vh;
display: grid;
grid-template-columns: 220px 1fr;
background: #f5f6f8;
color: #252b36;
}
.pre-side {
background: #20355f;
color: rgba(255, 255, 255, 0.66);
padding-top: 22px;
}
.pre-logo {
padding: 0 18px 34px;
color: #fff;
font-size: 18px;
font-weight: 900;
line-height: 1.25;
}
.pre-menu div {
height: 64px;
padding: 20px;
font-size: 18px;
}
.pre-menu .active {
color: #fff;
background: #2f74f6;
font-weight: 800;
}
.pre-menu .sub {
padding-left: 56px;
background: #132246;
}
.pre-main {
min-width: 0;
}
.pre-top {
height: 62px;
padding: 16px 28px;
border-bottom: 1px solid #e6e9ef;
background: #fff;
font-size: 22px;
}
.pre-content {
padding: 26px;
}
.pre-card {
margin: 24px 0 30px;
padding: 26px;
border-radius: 4px;
background: #fff;
box-shadow: 0 2px 10px rgba(27, 39, 60, 0.05);
}
.todo-row {
display: grid;
grid-template-columns: repeat(6, minmax(190px, 1fr));
gap: 12px;
overflow: hidden;
}
.todo-card {
position: relative;
min-height: 148px;
padding: 22px;
border: 1px solid #edf0f5;
border-radius: 6px;
background: #fff;
box-shadow: 0 4px 12px rgba(43, 63, 96, 0.08);
text-align: left;
}
.todo-card strong {
display: block;
margin-bottom: 8px;
font-size: 18px;
}
.todo-card span {
color: #8893a3;
font-size: 13px;
}
.todo-card b {
display: block;
margin-top: 26px;
font-size: 34px;
}
.pre-table {
width: 100%;
border-collapse: collapse;
background: #fff;
font-size: 16px;
}
.pre-table th,
.pre-table td {
height: 50px;
border: 1px solid #edf0f5;
text-align: center;
}
.link-btn {
position: relative;
color: #2f74f6;
background: transparent;
font-size: 16px;
}
.hot-dot {
position: absolute;
right: 12px;
top: 12px;
width: 10px;
height: 10px;
border-radius: 50%;
background: #ff3b30;
box-shadow: 0 0 0 4px rgba(255, 59, 48, 0.16);
pointer-events: none;
}
.view-page {
min-height: 100vh;
color: #333b48;
background: #f5f5f5;
}
.view-header {
display: flex;
align-items: center;
gap: 32px;
height: 84px;
padding: 0 34px;
border-top: 1px solid #d8d8d8;
border-bottom: 1px solid #e5e5e5;
background: #fff;
}
.view-close {
display: grid;
place-items: center;
width: 48px;
height: 48px;
border-radius: 4px;
color: #fff;
background: #4b7ee8;
font-size: 34px;
line-height: 1;
font-weight: 300;
}
.view-header h1 {
margin: 0;
color: #272f3a;
font-size: 28px;
font-weight: 800;
letter-spacing: 0;
}
.view-scroll {
min-height: calc(100vh - 84px);
padding: 16px 18px 72px;
}
.view-card {
position: relative;
min-height: calc(100vh - 172px);
overflow: hidden;
padding: 50px 42px 62px;
border-radius: 10px;
background: #fff;
}
.view-card::after {
content: "A";
position: absolute;
right: 62px;
top: -18px;
width: 280px;
height: 280px;
display: grid;
place-items: center;
border: 18px solid rgba(50, 116, 223, 0.05);
border-radius: 50%;
color: rgba(50, 116, 223, 0.05);
font-size: 170px;
font-weight: 900;
pointer-events: none;
}
.view-section {
position: relative;
z-index: 1;
margin-bottom: 48px;
}
.ribbon {
display: inline-flex;
align-items: center;
height: 56px;
margin-bottom: 28px;
padding: 0 28px;
border-radius: 5px;
color: #fff;
background: linear-gradient(180deg, #68b4ff 0%, #2369fb 55%, #1f45dc 100%);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 8px 16px rgba(35, 86, 212, 0.2);
transform: skewX(-5deg);
}
.ribbon span {
display: block;
transform: skewX(5deg);
font-size: 28px;
font-weight: 900;
letter-spacing: 4px;
text-shadow: 0 2px 0 rgba(0, 42, 162, 0.24);
}
.view-list {
display: grid;
gap: 28px;
max-width: 1080px;
}
.view-row {
display: grid;
grid-template-columns: 220px minmax(0, 1fr);
gap: 28px;
align-items: start;
color: #40464f;
font-size: 22px;
line-height: 1.65;
}
.view-label {
display: flex;
align-items: center;
gap: 14px;
color: #123c70;
font-size: 24px;
font-weight: 900;
white-space: nowrap;
}
.view-label::before {
content: "▣";
color: #153f73;
font-size: 18px;
}
.view-value {
min-height: 36px;
white-space: pre-wrap;
word-break: break-word;
}
.empty-value {
color: #a4aab4;
}
.view-plan {
width: 100%;
max-width: 1080px;
border-collapse: collapse;
color: #40464f;
font-size: 20px;
line-height: 1.55;
}
.view-plan th,
.view-plan td {
padding: 14px 16px;
border: 1px solid #e7edf6;
text-align: left;
vertical-align: top;
}
.view-plan th {
color: #123c70;
background: #f6f9ff;
font-weight: 900;
}
.view-footer {
position: fixed;
left: 0;
right: 0;
bottom: 0;
display: flex;
justify-content: flex-end;
padding: 14px 10px;
border-top: 1px solid #e5e5e5;
background: rgba(255, 255, 255, 0.96);
backdrop-filter: blur(12px);
}
.view-footer .plain-btn {
height: 42px;
min-width: 90px;
font-size: 18px;
}
@keyframes drop {
from {
opacity: 0;
transform: translateY(-8px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@media (max-width: 900px) {
body {
min-width: 0;
}
.prototype {
width: 100vw;
min-height: 100vh;
margin: 0;
border: 0;
border-radius: 0;
}
.titlebar {
height: auto;
min-height: 56px;
flex-wrap: wrap;
padding: 10px 14px;
}
.form-scroll {
height: calc(100vh - 150px);
padding: 16px 14px 26px;
}
.basic-grid,
.two-grid {
grid-template-columns: 1fr;
gap: 12px;
}
.input-line {
display: block;
}
.input-line label {
display: block;
margin-bottom: 6px;
}
.input-line input {
width: 100%;
}
.view-header {
height: 72px;
padding: 0 16px;
gap: 16px;
}
.view-header h1 {
font-size: 22px;
}
.view-card {
padding: 30px 18px 80px;
}
.ribbon {
height: 46px;
padding: 0 22px;
}
.ribbon span {
font-size: 22px;
}
.view-row {
grid-template-columns: 1fr;
gap: 8px;
font-size: 17px;
}
.view-label {
font-size: 20px;
}
}
</style>
</head>
<body>
<section class="pre-page" id="stepHome" aria-label="教学工作台">
<aside class="pre-side">
<div class="pre-logo">VISION ACADEMY<br><small>唯寻国际教育</small></div>
<nav class="pre-menu">
<div class="active">课堂</div><div>班级</div><div>学员</div><div>作业 13</div><div>模考 29</div>
<div>反馈</div><div class="sub">授课反馈</div><div class="sub">营地反馈</div>
</nav>
</aside>
<main class="pre-main">
<header class="pre-top">↻ 教学工作台</header>
<div class="pre-content">
<h2>课堂</h2>
<section class="pre-card">
<h3>待办</h3>
<div class="todo-row">
<button class="todo-card" type="button" id="goList"><span class="hot-dot"></span><strong>授课反馈</strong><span>待提交反馈数</span><b>262</b></button>
<div class="todo-card"><strong>作业</strong><span>待批改作业份数</span><b>13</b></div>
<div class="todo-card"><strong>模考</strong><span>待布置、待批改的模考数</span><b>9</b></div>
<div class="todo-card"><strong>模考报告</strong><span>待提交、待沟通的报告数</span><b>20</b></div>
<div class="todo-card"><strong>课程规划</strong><span>待提交课程规划数</span><b>1</b></div>
<div class="todo-card"><strong>待采分学员</strong><span>需要采分的学员</span><b>0</b></div>
</div>
</section>
</div>
</main>
</section>
<section class="pre-page hidden" id="stepList" aria-label="授课反馈列表">
<aside class="pre-side">
<div class="pre-logo">VISION ACADEMY<br><small>唯寻国际教育</small></div>
<nav class="pre-menu">
<div class="active">课堂</div><div>班级</div><div>学员</div><div>作业 13</div><div>模考 29</div>
<div>反馈</div><div class="sub">授课反馈</div><div class="sub">营地反馈</div>
</nav>
</aside>
<main class="pre-main">
<header class="pre-top">↻ 教学工作台</header>
<div class="pre-content">
<h2>‹ 返回 授课反馈</h2>
<section class="pre-card">
<h3 style="color:#2f74f6">待提交反馈 已提交反馈 已删除反馈</h3>
<table class="pre-table">
<thead><tr><th>上课日期</th><th>上课时间</th><th>课程名称</th><th>班级名称</th><th>学生姓名</th><th>等待时间</th><th>操作</th></tr></thead>
<tbody>
<tr><td>2026-05-21</td><td>10:15 ~ 10:30</td><td>英国大学课程-课前沟通-线上</td><td>采分测试6-英研课程...</td><td>采分测试6</td><td>3.27h</td><td><button class="link-btn" id="goForm" type="button">添加<span class="hot-dot"></span></button> 删除</td></tr>
<tr><td>2026-05-02</td><td>13:30 ~ 15:30</td><td>雅思-听力-线上</td><td>采分测试6-英联邦语培...</td><td>采分测试6</td><td>454.27h</td><td>添加 删除</td></tr>
<tr><td>2026-05-01</td><td>13:30 ~ 15:30</td><td>雅思-听力-线上</td><td>采分测试6-英联邦语培...</td><td>采分测试6</td><td>478.27h</td><td>添加 删除</td></tr>
</tbody>
</table>
</section>
</div>
</main>
</section>
<main class="prototype hidden" id="formPage" aria-label="授课反馈添加页">
<header class="titlebar">
<h1 class="page-title">添加授课反馈</h1>
</header>
<section class="form-scroll">
<section class="section" aria-labelledby="basic-title">
<h2 class="section-title" id="basic-title">基本信息</h2>
<div class="basic-grid">
<div class="info-line">
<label>学生姓名:</label>
<strong>采分测试6</strong>
</div>
<div class="info-line">
<label>在读学校:</label>
<strong>自动匹配学校</strong>
</div>
<div class="input-line required-input" data-required="true">
<label for="courseName"><span class="required">*</span>课程名称:</label>
<input id="courseName" maxlength="80" placeholder="请输入正课的课号名称">
</div>
</div>
</section>
<section class="section" aria-labelledby="goal-title">
<h2 class="section-title" id="goal-title">学情&目标</h2>
<div class="two-grid">
<div class="field">
<div class="field-head">
<div class="field-title">当前水平/分数 <span class="optional">选填</span></div>
</div>
<textarea maxlength="500" placeholder="例如:雅思 6.0;阅读较强,口语 Part 2 展开不足"></textarea>
<div class="field-meta"><span></span><span class="count">0/500</span></div>
</div>
<div class="field">
<div class="field-head">
<div class="field-title">目标分数/成果 <span class="optional">选填</span></div>
</div>
<textarea maxlength="500" placeholder="例如:8 周内达到雅思 7.0;完成课程论文初稿"></textarea>
<div class="field-meta"><span></span><span class="count">0/500</span></div>
</div>
</div>
<div class="field">
<div class="field-head">
<div class="field-title">关键 DDL <span class="optional">选填</span></div>
</div>
<textarea maxlength="500" placeholder="请输入重要考试、申请、论文、作业或提交时间节点"></textarea>
<div class="field-meta"><span></span><span class="count">0/500</span></div>
</div>
</section>
<section class="section" aria-labelledby="diagnosis-title">
<h2 class="section-title" id="diagnosis-title">初步诊断与计划</h2>
<div class="two-grid">
<div class="field required-field" data-required="true">
<div class="field-head">
<div class="field-title"><span class="required">*</span>预计主要辅导重点</div>
</div>
<textarea maxlength="1000" placeholder="请输入预计主要辅导重点,例如:薄弱模块、知识缺口、训练方式"></textarea>
<div class="field-meta"><span class="error-text">预计主要辅导重点不能为空</span><span class="count">0/1000</span></div>
</div>
<div class="field required-field" data-required="true">
<div class="field-head">
<div class="field-title"><span class="required">*</span>预估总课时数</div>
</div>
<textarea maxlength="300" placeholder="请输入预估总课时数,例如:预计 12 次课,共 24 小时"></textarea>
<div class="field-meta"><span class="error-text">预估总课时数不能为空</span><span class="count">0/300</span></div>
</div>
</div>
</section>
<section class="section" aria-labelledby="notice-title">
<h2 class="section-title" id="notice-title">重要事项知晓 / 影响预期目标的因素</h2>
<div class="field">
<textarea maxlength="1000" placeholder="例如:学生可用学习时间、请假安排、基础薄弱风险、考试时间较近等"></textarea>
<div class="field-meta"><span></span><span class="count">0/1000</span></div>
</div>
</section>
<section class="section" aria-labelledby="materials-title">
<h2 class="section-title" id="materials-title">所需材料清单</h2>
<div class="two-grid">
<div class="field">
<div class="field-head">
<div class="field-title">学生已提供 <span class="optional">选填</span></div>
</div>
<textarea maxlength="800" placeholder="例如:成绩单、错题记录、教材目录、论文要求等"></textarea>
<div class="field-meta"><span></span><span class="count">0/800</span></div>
</div>
<div class="field">
<div class="field-head">
<div class="field-title">待补充建议准备 <span class="optional">选填</span></div>
</div>
<textarea maxlength="800" placeholder="例如:近两次模考报告、学校 rubric、课程 syllabus 等"></textarea>
<div class="field-meta"><span></span><span class="count">0/800</span></div>
</div>
</div>
</section>
<section class="section" aria-labelledby="teaching-title">
<h2 class="section-title" id="teaching-title">教学计划</h2>
<div class="field-head">
<div class="field-title"><span class="required">*</span>课节计划表 <span class="optional">至少填写两节,可手动拓展行</span></div>
</div>
<div class="plan-wrap">
<table class="plan-table" aria-label="教学计划表格">
<thead>
<tr>
<th class="lesson-col">课节</th>
<th class="time-col">上课时间</th>
<th>核心教学目标</th>
<th class="action-col">操作</th>
</tr>
</thead>
<tbody id="planBody">
<tr data-required-row="true">
<td><input value="课节 1" aria-label="课节 1"></td>
<td><input placeholder="请选择或填写上课时间" aria-label="课节 1 上课时间"></td>
<td><input placeholder="请输入核心教学目标" aria-label="课节 1 核心教学目标"></td>
<td><button class="remove-row" type="button" disabled>删除</button></td>
</tr>
<tr data-required-row="true">
<td><input value="课节 2" aria-label="课节 2"></td>
<td><input placeholder="请选择或填写上课时间" aria-label="课节 2 上课时间"></td>
<td><input placeholder="请输入核心教学目标" aria-label="课节 2 核心教学目标"></td>
<td><button class="remove-row" type="button" disabled>删除</button></td>
</tr>
</tbody>
</table>
<div class="table-tools">
<span class="error-text" id="planError">课节 1 和课节 2 的上课时间、核心教学目标不能为空</span>
<button class="add-row" type="button" id="addPlanRow">+ 添加课节</button>
</div>
</div>
</section>
</section>
<footer class="footer">
<div class="footer-actions">
<button class="plain-btn" type="button">取消</button>
<button class="primary-btn" type="button" id="submitBtn">提交</button>
</div>