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

@@ -20,37 +20,37 @@
class="ml-5"
v-if="!$empty(v.match)"
>
<SvgIcon
v-bind="{
name: v.match ? 'check2.svg' : 'error.svg',
type: v.match ? 'blue' : 'danger',
size: 26,
}"
></SvgIcon>
<Icon
:name="
v.match ? 'material-symbols:check-rounded' : 'material-symbols:error-circle-rounded-outline-sharp'
"
:size="26"
:class="`has-text-${v.match ? 'primary' : 'danger'}`"
/>
</span>
<span
class="ml-5"
v-if="!$empty(v.auth)"
>
<SvgIcon
v-bind="{
name: v.auth ? 'check2.svg' : 'error.svg',
type: v.auth ? 'blue' : 'danger',
size: 26,
}"
></SvgIcon>
<Icon
:name="
v.auth ? 'material-symbols:check-rounded' : 'material-symbols:error-circle-rounded-outline-sharp'
"
:size="26"
:class="`has-text-${v.auth ? 'primary' : 'danger'}`"
/>
</span>
<span
class="ml-5"
v-if="!$empty(v.expiry)"
>
<SvgIcon
v-bind="{
name: v.expiry ? 'error.svg' : 'check2.svg',
type: v.expiry ? 'danger' : 'blue',
size: 26,
}"
></SvgIcon>
<Icon
:name="
v.expiry ? 'material-symbols:error-circle-rounded-outline-sharp' : 'material-symbols:check-rounded'
"
:size="26"
:class="`has-text-${v.expiry ? 'danger' : 'primary'}`"
/>
</span>
</span>
</td>