Skip to content

Commit

Permalink
templates/conf.yml中添加公招以及森空岛的参数,公招界面添加部分说明文字
Browse files Browse the repository at this point in the history
  • Loading branch information
EightyDollars committed Sep 18, 2023
1 parent 46dcdb6 commit f20629b
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 33 deletions.
6 changes: 6 additions & 0 deletions arknights_mower/templates/conf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,3 +85,9 @@ rogue:
refresh_trader_with_dice: false
screenshot: 200
mail_subject: "[Mower通知]"
skland_enable: false
skland_info: []
recruit_enable: true
recruit_only_4: false
recruit_robot: true
recruitment_time: false
70 changes: 37 additions & 33 deletions ui/src/components/Recruit.vue
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,16 @@ const recruit_4 = ref('900')
<td>
<n-radio-group name="recruit_robot" v-model:value="recruit_robot">
<n-space justify="start">
<n-radio :value="true">招募</n-radio>
<n-radio :value="false">不招</n-radio>
<n-radio :value="true">邮件通知</n-radio>
<help-text>
<div>碰到标签中包含支援机械时会发送邮件进行通知,不会自动选择</div>
</help-text>
<n-radio :value="false">忽略标签</n-radio>
<help-text>
<div>忽略支援机械标签,刷新标签或者选择其他的干员</div>
</help-text>
</n-space>

</n-radio-group>
</td>
</tr>
Expand All @@ -76,51 +83,48 @@ const recruit_4 = ref('900')
</template>

<style scoped lang="scss">
.card-title {
font-weight: 500;
font-size: 18px;
}
p {
margin: 0 0 8px 0;
}
h4 {
margin: 12px 0 10px 0;
margin: 0;
}
.recruit-3 td {
&:nth-child(1) {
width: 64px;
}
&:nth-child(2) {
width: 200px;
}
ul {
padding-left: 24px;
}
.big-table {
margin-top: 10px;
width: 360px;
.card-title {
font-weight: 500;
font-size: 18px;
margin-right: 8px;
}
th {
text-align: center;
}
table {
width: 100%;
td {
height: 24px;
&:nth-child(1) {
width: 70px;
text-align: center;
width: 40px;
}
&:nth-child(2) {
padding-left: 18px;
width: 32px;
}
&:nth-child(3) {
padding-right: 8px;
}
&:nth-child(4) {
width: 50px;
}
&:nth-child(5) {
width: 90px;
}
}
}
.final {
margin: 16px 0 0;
.tag-mr {
margin-right: 4px;
}
</style>

0 comments on commit f20629b

Please sign in to comment.