Skip to content

Commit

Permalink
fix:androidOption大部份对应lang字段错误
Browse files Browse the repository at this point in the history
  • Loading branch information
YeungHoiChiu committed Jun 26, 2024
1 parent 20e3f2b commit b54d000
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/components/StepShow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -248,31 +248,31 @@ const getNotes = (text, type) => {
</span>
<span v-if="step.stepType === 'airPlaneMode'">
<el-tag size="small" style="margin-right: 10px">{{
$t('stepDetail.androidOptions.network.airPlaneMode')
$t('stepDetail.label.androidOptions.network.airPlaneMode')
}}</el-tag
>{{
step.content === 'true' ? $t('stepDetail.open') : $t('stepDetail.close')
}}
</span>
<span v-if="step.stepType === 'wifiMode'">
<el-tag size="small" style="margin-right: 10px">{{
$t('stepDetail.androidOptions.network.wifiMode')
$t('stepDetail.label.androidOptions.network.wifiMode')
}}</el-tag
>{{
step.content === 'true' ? $t('stepDetail.open') : $t('stepDetail.close')
}}
</span>
<span v-if="step.stepType === 'locationMode'">
<el-tag size="small" style="margin-right: 10px">{{
$t('stepDetail.androidOptions.network.locationMode')
$t('stepDetail.label.androidOptions.network.locationMode')
}}</el-tag
>{{
step.content === 'true' ? $t('stepDetail.open') : $t('stepDetail.close')
}}
</span>
<span v-if="step.stepType === 'switchWindowMode'">
<el-tag size="small" style="margin-right: 10px">{{
$t('stepDetail.androidOptions.element.switchWindowMode')
$t('stepDetail.label.androidOptions.element.switchWindowMode')
}}</el-tag
>{{
step.content === 'true'
Expand All @@ -282,7 +282,7 @@ const getNotes = (text, type) => {
</span>
<span v-if="step.stepType === 'switchIgnoreMode'">
<el-tag size="small" style="margin-right: 10px">{{
$t('stepDetail.androidOptions.element.switchIgnoreMode')
$t('stepDetail.label.androidOptions.element.switchIgnoreMode')
}}</el-tag
>{{
step.content === 'true'
Expand All @@ -292,7 +292,7 @@ const getNotes = (text, type) => {
</span>
<span v-if="step.stepType === 'switchVisibleMode'">
<el-tag size="small" style="margin-right: 10px">{{
$t('stepDetail.androidOptions.element.switchVisibleMode')
$t('stepDetail.label.androidOptions.element.switchVisibleMode')
}}</el-tag
>{{
step.content === 'true' ? $t('stepDetail.display') : $t('stepDetail.hide')
Expand Down

0 comments on commit b54d000

Please sign in to comment.