Skip to content

Commit 90c5e4d

Browse files
committed
fix: 修复了青春杯队名默认值设置错误的问题
1 parent 1dff5e8 commit 90c5e4d

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

public/assets/index.8221f85d.css renamed to public/assets/index.59c08e13.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/assets/index.8b6feb95.js renamed to public/assets/index.8cbf42ec.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
<link href="https://cdn.bootcdn.net/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
1313
<script src="https://cdn.bootcss.com/jquery/3.4.1/jquery.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
1414
<script src="https://cdn.bootcdn.net/ajax/libs/twitter-bootstrap/4.3.1/js/bootstrap.min.js"></script>
15-
<script type="module" crossorigin src="./assets/index.8b6feb95.js"></script>
16-
<link rel="stylesheet" href="./assets/index.8221f85d.css">
15+
<script type="module" crossorigin src="./assets/index.8cbf42ec.js"></script>
16+
<link rel="stylesheet" href="./assets/index.59c08e13.css">
1717
</head>
1818
<body>
1919
<div id="app"></div>

web/src/components/AoharuConfigModal.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,10 @@ export default {
117117
type: Array,
118118
default: () => [2, 1, 1, 1]
119119
},
120-
aoharuTeamNameSelection: Number,
120+
aoharuTeamNameSelection: {
121+
type: Number,
122+
default: 4
123+
},
121124
},
122125
emits: ['update:show', 'confirm'],
123126
data() {

web/src/components/TaskEditModal.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -799,7 +799,7 @@ export default {
799799
800800
// 青春杯配置
801801
preliminaryRoundSelections: [2, 1, 1, 1],
802-
aoharuTeamNameSelection: 5,
802+
aoharuTeamNameSelection: 4,
803803
showAoharuConfigModal: false,
804804
}
805805
},

0 commit comments

Comments
 (0)