Why Can't I see My Invoice Items When I Edit My Invoice?

前端 未结 1 1054
名媛妹妹
名媛妹妹 2020-12-20 07:43

I\'m using Laravel 5.7 & VueJs 2.5.* ...

I\'m using a single Bootstrap Model to create as well as edit my TicketInvoice &a

相关标签:
1条回答
  • 2020-12-20 08:07

    In your editModel method add these lines :

       $("#addNewTicketInvoice").modal("show");
       this.form.fill(ticketInvoice);
       this.form.ticketInvoiceItems=ticketInvoice.ticket_invoice_items;
    

    this.form.ticketInvoiceItems will be an object to loop through its values you should use

       Object.values(this.form.ticketInvoiceItems).forEach(....
    
    0 讨论(0)
提交回复
热议问题