Skip to content

Commit

Permalink
Style problem modification (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
yudiezheng1127 authored Dec 7, 2021
1 parent d9be598 commit cecb81e
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/assets/css/public.less
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
padding: 2px 0;
.title {
text-align: right;
width: 400px;
width: 150px;
float: left;
font-weight: 600;
font-size: 14px;
Expand Down
4 changes: 2 additions & 2 deletions src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import routerConfig from '@/router/router';
import NProgress from '@/utils/nprogress';
import layoutApp from '@/layout/layout';
import checkRole from '@/utils/authorize';
import {urlFormat} from '@/utils/tool';
import { urlFormat } from '@/utils/tool';
import { i18n, loadLanguageAsync, getLang } from '@/utils/i18n';
import store from '@/utils/store';

Expand Down Expand Up @@ -86,4 +86,4 @@ noahv._router.onError(error => {
noahv._router.afterEach(() => {
NProgress.done();
});
noahv.start('#app', '', i18n);
noahv.start('#app', '', i18n);
3 changes: 3 additions & 0 deletions src/modules/Clusters/components/Review.vue
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,9 @@ export default {
.com-btn-box {
margin-top: 15px;
}
.panel .panel-body ul .title {
width: 400px;
}
table {
@tableBorder: 1px solid #f4f4f4;
width: 100%;
Expand Down
6 changes: 3 additions & 3 deletions src/modules/User/components/User.vue
Original file line number Diff line number Diff line change
Expand Up @@ -123,13 +123,13 @@ import UpdatePassword from './UpdatePassword.vue';
if (self) {
tmpData = {
old_password: data.old_password,
password: data.new_password,
}
password: data.new_password
};
}
else {
tmpData = {
password: data.new_password
}
};
}
this.$request({
url: this.$urlFormat('auth/users/{user_name}/passwd', {user_name: data.user_name}),
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.1
0.0.2

0 comments on commit cecb81e

Please sign in to comment.