fix(测试跟踪): 个人信息弹框也没显示优化

--bug=1019764 --user=张勇 【个人信息】个人信息弹框也没显示优化 https://www.tapd.cn/55049933/s/1300537
This commit is contained in:
zhangyong 2022-11-22 10:53:02 +08:00 committed by jianxing
parent 25fee92dff
commit b7362ad6e8
1 changed files with 6 additions and 3 deletions

View File

@ -35,9 +35,9 @@
<tapd-user-info @auth="handleAuth" v-if="hasTapd" :data="currentPlatformInfo"/>
<zentao-user-info @auth="handleAuth" v-if="hasZentao" :data="currentPlatformInfo"/>
<azure-devops-user-info @auth="handleAuth" v-if="hasAzure" :data="currentPlatformInfo"/>
<el-form-item>
<el-button @click="cancel">{{ $t('commons.cancel') }}</el-button>
<el-button type="primary" @click="updateUser('updateUserForm')" @keydown.enter.native.prevent>
<el-form-item class="el-form-item-class">
<el-button size="small" @click="cancel">{{ $t('commons.cancel') }}</el-button>
<el-button size="small" type="primary" @click="updateUser('updateUserForm')" @keydown.enter.native.prevent>
{{ $t('commons.confirm') }}
</el-button>
</el-form-item>
@ -246,4 +246,7 @@ export default {
height: 40px;
line-height: 40px;
}
.el-form-item-class {
margin-left:110px;
}
</style>