Dorp.vue 1.19 KB
Newer Older
zhengxiaokui committed
1 2
<template>
  <div class="eibs-tab">
Eivi committed
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27

       <c-col :span="24">
        <el-form-item
          label="Documents Required"
          prop="ledgrp.blk.lcrdoc"
          style="width: 100%"
        >
          <c-fullbox>
            <c-input
              type="textarea"
              v-model="model.ledgrp.blk.lcrdoc"
              maxlength="50"
              show-word-limit
              placeholder="Please input Documents Required"
            ></c-input>
            <template slot="footer">
              <c-button
                style="margin-left: 10px; padding: 0 10px"
                size="small"
                type="primary"
              >
                ...
              </c-button>
            </template>
          </c-fullbox>
zhengxiaokui committed
28
        </el-form-item>
Eivi committed
29
      </c-col>
zhengxiaokui committed
30 31 32 33
  </div>
</template>
<script>
import Api from "~/service/Api"
wangren committed
34
import commonProcess from "~/mixin/commonProcess";
zhengxiaokui committed
35 36 37 38 39 40
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Letrsv/Event"

export default {
    inject: ['root'],
    props:["model","codes"],
wangren committed
41
    mixins: [commonProcess],
zhengxiaokui committed
42 43 44 45 46 47 48 49 50 51 52 53 54 55
    data(){
        return {

        }
    },
    methods:{...Event},
    created:function(){

    }
}
</script>
<style>

</style>