Dorp.vue 846 Bytes
<template>
  <div class="eibs-tab">
    <c-col :span="24" style="padding-top: 20px">

      <!-- 单据要求 -->

      <c-col :span="24">
        <c-ptap-commons  :cols="65" :rows="800" :minRows="30" :maxRows="800" :model="model"
                         :extCodes="['ledgrp','blk']"
                         @handleChange="lcrdocChange"
                         lastModel="lcrdoc" title="Documents Required(46A)">
        </c-ptap-commons>
      </c-col>

    </c-col>
  </div>
</template>
<script>

import event from "../event";
import commonDepend from "~/mixin/commonDepend";

export default {
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [event,commonDepend],
  data() {
    return {};
  },
  methods:{
    lcrdocChange(){
      this.customAddModify(this.model.ledgrp.blk,"lcrdoc");
    }

  },
};
</script>
<style>
</style>