createBills.js 237 Bytes
Newer Older
wangcong committed
1 2 3 4 5 6 7 8 9 10
import billList from '../components-control/billList.vue'

export default {
  execute(bill, param) {
    GMS.$hideContainer.addComponent(billList, {}, function (c) {
      c.modalShow = true
      c.billList = param.billList
    })
  }
}