Spin styling, file upload bugfix, modules anchor bugfix

This commit is contained in:
Burak Civan
2021-06-01 10:43:26 +03:00
parent 4e01a72f0c
commit e0e3215fcc
7 changed files with 53 additions and 25 deletions

View File

@ -6,17 +6,13 @@
:modules="modules.data"
:currency_codes="currency_codes"
:company="company"
:pageLoad="page_loaded"
></router-view>
</template>
<script>
export default {
name: "Wizard",
data: function () {
return {
page_loaded: true,
};
},
created() {
let self = this;
@ -36,12 +32,7 @@ export default {
return data.currency_codes[key];
});
setTimeout(
function () {
self.page_loaded = false;
}.bind(self),
800
);
self.page_loaded = false;
});
},
@ -58,6 +49,7 @@ export default {
taxes: {},
finish: {},
},
page_loaded: true
};
},
};
@ -69,6 +61,11 @@ export default {
display: flex;
align-items: center;
justify-content: center;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 9999;
}
.document-loading div {
@ -128,4 +125,4 @@ export default {
width: 100%;
}
}
</style>
</style>