feat: add button for excel file

This commit is contained in:
Dodowingster
2024-05-06 14:45:20 +08:00
parent d1c177144f
commit e58a8de2bf
@@ -87,9 +87,11 @@
</a>
<!---->
<!-- xlsl format output button-->
<a :href="route('group.excel', item.id)" target="_blank">
<button class="btn btn-xs b-rad-none">
<i class="fa solid fa-table" @click="bulkDownloadWhiteForm()"></i>
<i class="fa solid fa-table"></i>
</button>
</a>
<!-- -->
<button class="btn btn-xs btn-complete b-rad-none">
<i class="fa fa-refresh" @click="updateDo()"></i>
@@ -160,7 +162,7 @@
},
data(){
return {
expanded: false
expanded: false,
}
},
methods: {
@@ -171,9 +173,6 @@
updateDo() {
this.isLoading = true;
this.submit(this.route('api.transaction.group.bulk.po'), 'post', this.section, true, true);
},
bulkDownloadWhiteForm() {
}
},
mixins: [componentHandler, staticFormHandler]