forked from verdnatura/salix-front
ref #5876 spinner wihout counter
This commit is contained in:
parent
562fe18b65
commit
98de713341
|
@ -25,8 +25,8 @@ const client = ref({});
|
|||
|
||||
const inputFile = ref();
|
||||
const files = ref({});
|
||||
|
||||
const spinnerRef = ref();
|
||||
const progress = ref(0);
|
||||
const claimDmsRef = ref();
|
||||
const dmsType = ref({});
|
||||
const config = ref({});
|
||||
|
@ -99,8 +99,13 @@ function setClaimDms(data) {
|
|||
}
|
||||
|
||||
async function create() {
|
||||
const formData = new FormData();
|
||||
const inputFiles = files.value;
|
||||
for (let i = 0; i < inputFiles.length; i++)
|
||||
formData.append(inputFiles[i].name, inputFiles[i]);
|
||||
|
||||
const query = `claims/${claimId.value}/uploadFile`;
|
||||
|
||||
const dms = {
|
||||
hasFile: false,
|
||||
hasFileAttached: false,
|
||||
|
@ -114,18 +119,11 @@ async function create() {
|
|||
clientId: client.value.id,
|
||||
}).toUpperCase(),
|
||||
};
|
||||
|
||||
spinnerRef.value.show();
|
||||
for (let i = 0; i < inputFiles.length; i++) {
|
||||
const formData = new FormData();
|
||||
formData.append(inputFiles[i].name, inputFiles[i]);
|
||||
await axios.post(query, formData, {
|
||||
params: dms,
|
||||
});
|
||||
progress.value = i;
|
||||
}
|
||||
await axios.post(query, formData, {
|
||||
params: dms,
|
||||
});
|
||||
spinnerRef.value.hide();
|
||||
|
||||
quasar.notify({
|
||||
message: t('globals.dataSaved'),
|
||||
type: 'positive',
|
||||
|
@ -238,14 +236,7 @@ function onDrag() {
|
|||
</div>
|
||||
</div>
|
||||
<QDialog ref="spinnerRef">
|
||||
<QCard>
|
||||
<QCardSection class="row justify-center">
|
||||
<QSpinner color="orange" size="xl" />
|
||||
</QCardSection>
|
||||
<QCardSection>
|
||||
<p>{{ `${progress} de ${files.length} archivos subidos` }}</p>
|
||||
</QCardSection>
|
||||
</QCard>
|
||||
<QSpinner color="orange" size="xl" />
|
||||
</QDialog>
|
||||
<QPageSticky position="bottom-right" :offset="[25, 25]">
|
||||
<label for="fileInput">
|
||||
|
|
Loading…
Reference in New Issue