relateInvoiceAction.js 272 Bytes
Newer Older
wangcong committed
1 2 3 4 5 6 7 8 9 10

import InvoiceModal from '../components-control/invoice-modal.vue'
export default {
  execute: function (bill, param) {
    GMS.$hideContainer.addComponent(InvoiceModal, {}, function (c) {
      c.bill = bill.dom
      c.invoiceName = param.param.invoiceName
    })
  }
}