Dorp.vue 1.01 KB
Newer Older
1
<template>
2
  <div class="eibs">
3
                                               
4
       <c-col :span="20">
jianglong committed
5
        <el-form-item label="单据要求" prop="lidgrp.blk.lcrdoc">
6
            <c-input 
xiameng committed
7
            
8
            :rows="30"
xiameng committed
9
            type="textarea" v-model="model.lidgrp.blk.lcrdoc" maxlength="52000" show-word-limit placeholder="请输入单据要求" ></c-input>
10 11 12
        </el-form-item>
        </c-col>
                  
xiameng committed
13 14
       <c-col :span="2">
        <c-button  size="small" type="primary" icon="el-icon-more" @click="onLcrdocButtxmsel">
15
           
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
        </c-button>
       </c-col>
  </div>
</template>
<script>
import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Litdla/Event"

export default {
    inject: ['root'],
    props:["model","codes"],
    mixins: [commonProcess],
    data(){
        return {

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

    }
}
</script>
<style>

</style>