Merge branch 'dev' of http://47.94.165.164:13000/geg-gas/geg-gas-web into dev
This commit is contained in:
13
src/App.vue
13
src/App.vue
@ -90,4 +90,17 @@
|
|||||||
flex: 1 !important;
|
flex: 1 !important;
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.ant-form-item-explain{
|
||||||
|
min-height: 10px !important;
|
||||||
|
display: none;
|
||||||
|
|
||||||
|
.ant-form-item-explain-error{
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.ant-form-item{
|
||||||
|
margin-bottom: 10px !important;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@ -457,3 +457,4 @@
|
|||||||
.ant-layout {
|
.ant-layout {
|
||||||
height: 100% !important;
|
height: 100% !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -63,6 +63,7 @@
|
|||||||
const value = ref<string>('');
|
const value = ref<string>('');
|
||||||
const userStore = useUserStore();
|
const userStore = useUserStore();
|
||||||
const userInfo = userStore.getUserInfo;
|
const userInfo = userStore.getUserInfo;
|
||||||
|
console.log(userInfo)
|
||||||
const userImage = userInfo.avatar || headerImg;
|
const userImage = userInfo.avatar || headerImg;
|
||||||
const businessId = ref<string>('');
|
const businessId = ref<string>('');
|
||||||
const canAdd = ref<boolean>(false);
|
const canAdd = ref<boolean>(false);
|
||||||
|
|||||||
@ -70,6 +70,7 @@
|
|||||||
|
|
||||||
const getUserInfo = computed(() => {
|
const getUserInfo = computed(() => {
|
||||||
const { name = '', avatar, desc } = userStore.getUserInfo || {};
|
const { name = '', avatar, desc } = userStore.getUserInfo || {};
|
||||||
|
console.log(userStore.getUserInfo)
|
||||||
return { name, avatar: avatar || headerImg, desc };
|
return { name, avatar: avatar || headerImg, desc };
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user