This commit is contained in:
Viet An
2026-06-26 14:47:49 +07:00
parent 1262dc6d82
commit 6ff4112d66
96 changed files with 348 additions and 2936 deletions

View File

@@ -9,8 +9,13 @@
class="button is-primary"
@click="openNewJobForm"
>
<SvgIcon v-bind="{ name: 'add4.svg', type: 'white', size: 18 }" />
<span class="ml-2">Add New Job</span>
<span class="icon">
<Icon
name="material-symbols:add-rounded"
:size="18"
/>
</span>
<span>Add New Job</span>
</button>
</div>
</div>
@@ -71,7 +76,12 @@
class="button is-small"
@click="openEditJobForm(job)"
>
<SvgIcon v-bind="{ name: 'pen1.svg', type: 'primary', size: 18 }" />
<span class="icon">
<Icon
name="material-symbols:edit-outline-rounded"
:size="18"
/>
</span>
</button>
</div>
<div class="control">
@@ -79,7 +89,12 @@
class="button is-danger is-small"
@click="confirmDelete(job)"
>
<SvgIcon v-bind="{ name: 'trash.svg', type: 'white', size: 18 }" />
<span class="icon">
<Icon
name="material-symbols:delete-outline-rounded"
:size="18"
/>
</span>
</button>
</div>
</div>