<template>
  <div class="eibs-tab">

      <el-col :span="11">
       <c-col :span="24">
        <el-form-item label="Description of Goods and/or Services" prop="lidgrp.blk.lcrgod">
            <c-input 
            disabled
            type="textarea" v-model="model.lidgrp.blk.lcrgod" maxlength="65" show-word-limit placeholder="请输入Description of Goods" ></c-input>
        </el-form-item>
        </c-col>

         <c-col :span="22">
        <el-form-item label="Adding / Deleting Text in Current Amendment" prop="litamep.lcrgodamep.usrblk">
            <c-input 
            :rows="5"
            type="textarea" v-model="model.litamep.lcrgodamep.usrblk" maxlength="65" show-word-limit placeholder="请输入Block to enter additional info for Add/Delete" ></c-input>
        </el-form-item>
        </c-col>
        <c-col :span="2">
        <c-button size="small" type="primary" icon="el-icon-search" @click=""> 
        </c-button>
        </c-col>

      </el-col>

      <el-col :span="11" :offset="1">
      <c-col :span="24">
        <el-form-item label="History Overview" prop="lidgrp.blk.lcrgodame">
            <c-input 
            disabled
            type="textarea" v-model="model.lidgrp.blk.lcrgodame" maxlength="50" show-word-limit placeholder="请输入Description of Goods Amendment History" ></c-input>
        </el-form-item>
        </c-col>

         <c-col :span="12">
	    <c-checkbox v-model="model.litamep.lcrgodamep.modflg">Modify Text to Replace</c-checkbox>
       </c-col>
                  
       <c-col :span="12">
	    <c-checkbox v-model="model.litamep.lcrgodamep.modmanflg">Modify Text Internally</c-checkbox>
       </c-col>
                  
       <c-col :span="24">
        <c-button size="small" type="primary"  @click="onLcrgodamepButdif">
            Show Diff
        </c-button>
       </c-col>
                  
       <c-col :span="24">
        <c-button 
        disabled
        size="small" type="primary"  @click="onLcrgodamepButadd">
            Add Text
        </c-button>
       </c-col>
                  
       <c-col :span="24">
        <c-button 
        disabled
        size="small" type="primary" icon="el-icon-delete" @click="onLcrgodamepButdel">
            Delete text
        </c-button>
       </c-col>
      </el-col>                                                          
  
  </div>
</template>
<script>
import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Litame/Event"

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

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

    }
}
</script>
<style>

</style>