Skip to content

Commit

Permalink
Merge pull request #73 from SonicCloudOrg/dev
Browse files Browse the repository at this point in the history
修复tab问题
  • Loading branch information
ZhouYixun authored Dec 25, 2021
2 parents ead7d27 + dd42f84 commit a22dd98
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/views/RemoteEmulator/IOSRemote.vue
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ const currentId = ref([]);
const filterText = ref('');
const project = ref(null);
const testCase = ref({});
const activeTab = ref('ele');
const activeTab = ref('main');
const activeTab2 = ref('step');
const stepLog = ref([]);
const debugLoading = ref(false);
Expand Down Expand Up @@ -1058,7 +1058,7 @@ onMounted(() => {
v-model="activeTab"
:tab-position="tabPosition"
>
<el-tab-pane label="远控面板" name="main" disabled>
<el-tab-pane label="远控面板" name="main">
<el-row :gutter="20">
<el-col :span="12">
<el-card>
Expand Down Expand Up @@ -1179,7 +1179,7 @@ onMounted(() => {
</el-row>
</el-tab-pane>

<el-tab-pane label="UI自动化" name="auto" disabled>
<el-tab-pane label="UI自动化" name="auto">
<div v-if="testCase['id']">
<el-collapse accordion style="margin-bottom: 20px">
<el-collapse-item>
Expand Down

0 comments on commit a22dd98

Please sign in to comment.