Amephis.vue 5.42 KB
<template>
  <div class="eibs-tab">
    <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>
      </c-form-item>
    </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>
      </c-form-item>
    </c-col>
    <!-- <c-col :span="12">
        <c-button size="small" type="primary"  @click="onSav">
             {{$t('mtabut.CF000174')}}
        </c-button>
       </c-col>
                  
       <c-col :span="12">
        <c-button size="small" type="primary"  @click="onUsrcon">
             {{$t('mtabut.CG000224')}}
        </c-button>
       </c-col>
                  
       <c-col :span="12">
        <c-form-item :label="$t('gitame.SF050038')" prop="oldgidgrp.blk.gidtxt">
            <c-input type="textarea" v-model="model.oldgidgrp.blk.gidtxt" maxlength="65" show-word-limit :placeholder="$t('other.please_enter')+$t('gitame.SF050038')" ></c-input>
        </c-form-item>
        </c-col> -->
    <!-- SF050038 : Guarantee Text  -->

    <!-- <c-col :span="12">
        <c-button size="small" type="primary"  @click="onChk">
             {{$t('mtabut.CF000175')}}
        </c-button>
       </c-col>
                  
       <c-col :span="12">
        <c-button size="small" type="primary"  @click="onUsrchk">
             {{$t('mtabut.CG000225')}}
        </c-button>
       </c-col> -->
    <!-- SF050111 : before this -->
    <!-- SF050112 : Amendment -->

    <!-- <c-col :span="12">
        <c-button size="small" type="primary"  @click="onSyswrnButshw">
             {{$t('mtabut.CF000176')}}
        </c-button>
       </c-col>
                  
       <c-col :span="12">
        <c-button size="small" type="primary" icon="el-icon-search" @click="onDiasel">
             {{$t('mtabut.CF000190')}}
        </c-button>
       </c-col>
                  
       <c-col :span="12">
        <c-button size="small" type="primary"  @click="onInc">
             {{$t('mtabut.CF000188')}}
        </c-button>
       </c-col>
                  
       <c-col :span="12">
        <c-button size="small" type="primary"  @click="onNotmap">
             {{$t('mtabut.CF000189')}}
        </c-button>
       </c-col>
                  
       <c-col :span="12">
        <c-button size="small" type="primary"  @click="onFrmbut">
             {{$t('mtabut.CF000208')}}
        </c-button>
       </c-col>
                  
       <c-col :span="12">
        <c-button size="small" type="primary"  @click="onOrd">
             {{$t('mtabut.CF000213')}}
        </c-button>
       </c-col> -->
    <!-- SF050039 : Amendments so Far -->

    <!-- <c-col :span="12">
        <c-form-item :label="$t('gitame.SF050039')" prop="gidgrp.blk.gidtxtame">
            <c-input type="textarea" v-model="model.gidgrp.blk.gidtxtame" maxlength="65" show-word-limit :placeholder="$t('other.please_enter')+$t('gitame.SF050039')" ></c-input>
        </c-form-item>
        </c-col>
                  
       <c-col :span="12">
        <c-button size="small" type="primary"  @click="onIncben">
             {{$t('mtabut.CG000239')}}
        </c-button>
       </c-col>
                  
       <c-col :span="12">
        <c-button size="small" type="primary"  @click="onImgmodImage">
             {{$t('mtabut.CG000240')}}
        </c-button>
       </c-col>
                  
       <c-col :span="12">
        <c-button size="small" type="primary"  @click="onImgmodNewimg">
             {{$t('mtabut.CG000232')}}
        </c-button>
       </c-col>
                  
       <c-col :span="12">
        <c-button size="small" type="primary"  @click="onImgmodNewhisimg">
             {{$t('mtabut.CG000233')}}
        </c-button>
       </c-col>
                  
       <c-col :span="12">
        <c-button size="small" type="primary"  @click="onImgmodElcimage">
             {{$t('mtabut.CG000241')}}
        </c-button>
       </c-col>
                  
       <c-col :span="12">
        <c-button size="small" type="primary"  @click="onEntmodEntbut">
             {{$t('mtabut.CG000242')}}
        </c-button>
       </c-col>
                  
       <c-col :span="12">
        <c-button size="small" type="primary"  @click="onPen">
             {{$t('mtabut.CF000178')}}
        </c-button>
       </c-col>
                  
       <c-col :span="12">
        <c-button size="small" type="primary"  @click="onCan">
             {{$t('mtabut.CF000179')}}
        </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/Gitame/Event";
import IStreamInput from "~/components/IStreamInput";

export default {
  components: { IStreamInput },
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
</script>
<style>
</style>