Amephis.vue 1.2 KB
Newer Older
liyixun committed
1 2
<template>
  <div class="eibs-tab">
liyixun committed
3 4 5
     <c-col :span="20">
        <c-form-item label="Guarantee Text before this Amendment" prop="oldgidgrp.blk.gidtxt">
            <i-stream-input disabled type="textarea" rows="8" :model="model.oldgidgrp.blk.gidtxt" maxlength="65" show-word-limit placeholder="请输入Guarantee Text before this Amendment" ></i-stream-input>
liyixun committed
6
        </c-form-item>
liyixun committed
7 8 9 10 11
     </c-col>
     
     <c-col :span="20">
        <c-form-item label="Amendments so Far" prop="gidgrp.blk.gidtxtame">
            <c-input disabled type="textarea" rows="8" v-model="model.gidgrp.blk.gidtxtame" maxlength="65" show-word-limit placeholder="请输入Amendments so Far" ></c-input>
liyixun committed
12
        </c-form-item>
liyixun committed
13
     </c-col> 
liyixun committed
14 15 16 17 18 19 20
  </div>
</template>
<script>
import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Getame/Event"
liyixun committed
21
import IStreamInput from '~/components/IStreamInput'
liyixun committed
22 23

export default {
liyixun committed
24
    components: {IStreamInput},
liyixun committed
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
    inject: ['root'],
    props:["model","codes"],
    mixins: [commonProcess],
    data(){
        return {

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

    }
}
</script>
<style>

</style>