修复bug

This commit is contained in:
X1627315083
2025-01-17 17:16:01 +08:00
parent a3ca957c87
commit b5124abbfa
19 changed files with 896 additions and 46 deletions

View File

@@ -98,7 +98,8 @@ export default defineComponent({
</script>
<style lang="less" scoped>
.cancelRenewal_page{
height: 100%;
overflow-y: auto;
>div{
display: flex;
flex-direction: column;

View File

@@ -44,6 +44,7 @@ export default defineComponent({
},
setup() {
const store = useStore();
const {t} = useI18n();
let userDetail:any= computed(()=>{
return store.state.UserHabit.userDetail
})
@@ -61,11 +62,12 @@ export default defineComponent({
accountHomeData.loadingShow = true
Https.axiosGet(Https.httpUrls.updateUserInfo,{params:data}).
then((rv:any)=>{
// let value = {
// userName:accountHomeData.editUserName
// }
// store.commit('upUserDetail',value)
let value = {
userName:accountHomeData.editUserName
}
store.commit('upUserDetail',value)
accountHomeData.loadingShow = false
message.success(t('exportModel.jsContent7'))
}).catch((err:any)=>{
accountHomeData.loadingShow = false
})
@@ -91,8 +93,11 @@ export default defineComponent({
</script>
<style lang="less" scoped>
.accountEdit_page{
height: 100%;
overflow-y: auto;
.accountEdit_page_body{
width: 85rem;
width: 100%;
// width: 85rem;
.accountEdit_page_body_item{
display: flex;
margin-bottom: 20px;