refactor: add id
This commit is contained in:
parent
2ee65233f2
commit
758b005768
12 changed files with 38 additions and 6 deletions
|
|
@ -1421,6 +1421,7 @@ async function formDownload() {
|
|||
>
|
||||
<button
|
||||
v-for="value in statusQuotationForm"
|
||||
:id="`btn-status-${value.title}`"
|
||||
:key="value.title"
|
||||
class="q-pa-sm bordered status-color row items-center"
|
||||
:class="{
|
||||
|
|
@ -1553,6 +1554,8 @@ async function formDownload() {
|
|||
</div>
|
||||
<nav class="q-ml-auto">
|
||||
<AddButton
|
||||
id="btn-add-worker"
|
||||
for="btn-add-worker"
|
||||
v-if="
|
||||
!readonly &&
|
||||
(!quotationFormState.source ||
|
||||
|
|
@ -1565,6 +1568,8 @@ async function formDownload() {
|
|||
@click.stop="triggerSelectEmployeeDialog"
|
||||
/>
|
||||
<AddButton
|
||||
id="btn-add-worker"
|
||||
for="btn-add-worker"
|
||||
v-if="
|
||||
!!quotationFormState.source &&
|
||||
quotationFormState.source.quotationStatus !==
|
||||
|
|
@ -1621,6 +1626,7 @@ async function formDownload() {
|
|||
v-if="!readonly"
|
||||
icon-only
|
||||
class="q-ml-auto"
|
||||
id="trigger-product-service-dialog"
|
||||
@click.stop="triggerProductServiceDialog"
|
||||
/>
|
||||
</nav>
|
||||
|
|
@ -2243,6 +2249,7 @@ async function formDownload() {
|
|||
outlined
|
||||
icon="mdi-play-box-outline"
|
||||
color="207 96% 32%"
|
||||
id="btn-view-example"
|
||||
@click="storeDataLocal"
|
||||
>
|
||||
{{ $t('general.view', { msg: $t('general.example') }) }}
|
||||
|
|
@ -2258,6 +2265,7 @@ async function formDownload() {
|
|||
solid
|
||||
icon="mdi-account-multiple-check-outline"
|
||||
color="207 96% 32%"
|
||||
id="btn-submit-accepted"
|
||||
@click="
|
||||
() => {
|
||||
submitAccepted();
|
||||
|
|
@ -2273,6 +2281,7 @@ async function formDownload() {
|
|||
solid
|
||||
icon="mdi-account-multiple-check-outline"
|
||||
color="207 96% 32%"
|
||||
id="btn-select-invoice"
|
||||
@click="
|
||||
() => {
|
||||
view = View.Invoice;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue