chore(problem/manage/data/configure): help texts

This commit is contained in:
Baoshuo Ren 2023-02-05 18:55:09 +08:00
parent 0316830bd0
commit a70e78d4d5
Signed by: baoshuo
GPG Key ID: 00CB9680AB29F51A
3 changed files with 12 additions and 2 deletions

View File

@ -43,6 +43,16 @@ foreach ($problem_configure->problem_conf->conf as $key => $val) {
此处显示的 <code>problem.conf</code> 为根据右侧填写的配置信息生成的内容预览,并非题目当前实际配置文件。
</div>
</div>
<div class="card mt-3">
<div class="card-header fw-bold">功能说明</div>
<div class="card-body">
<p>此处可以对 <b>传统题</b> 进行快速配置,在填写完成之后点击页面底部的「提交」按钮即可替换现有配置文件并进行数据同步。</p>
<p>目前暂不支持对交互题、提交答案题、通信题进行配置,对于此类题目请手动编写配置文件。</p>
<p>如需要配置子任务依赖,也可以基于此处生成的配置文件进行修改后再手动上传。</p>
<p>关于数据配置的更多帮助,请查阅 <a href="https://s2oj.github.io/#/manage/tutorial/problem_data" target="_blank">帮助文档</a></p>
</div>
</div>
</div>
<div class="col-12 col-md-8 mt-3 mt-md-0">
<?php $problem_configure->printHTML() ?>

View File

@ -618,7 +618,7 @@ if ($problem['hackable']) {
<button type="button" class="btn d-block w-100 btn-primary" data-bs-toggle="modal" data-bs-target="#UploadDataModal">上传数据</button>
</div>
<div class="mt-2">
<a role="button" class="btn d-block w-100 btn-primary" href="<?= UOJProblem::cur()->getUri('/manage/data/configure') ?>">试题配置</a>
<a role="button" class="btn d-block w-100 btn-primary" href="<?= UOJProblem::cur()->getUri('/manage/data/configure') ?>">数据配置</a>
</div>
</div>
</aside>

View File

@ -1323,7 +1323,7 @@ $.fn.problem_configure_subtasks = function(problem_conf) {
input_subtask_type
.append($('<option value="packed" />').text('错一个就零分'))
.append($('<option value="min" />').text('得分取所有测试点中的最小值'));
.append($('<option value="min" />').text('取所有测试点中的最小值'));
input_subtask_used_time_type
.append($('<option value="sum" />').text('全部相加'))
.append($('<option value="max" />').text('取所有测试点中的最大值'));