Amephis.vue 1.33 KB
Newer Older
liyixun committed
1 2
<template>
  <div class="eibs-tab">
liyixun committed
3 4
    <c-col :span="20">
      <c-form-item
wangna committed
5
        label="修改之前的保函文本"
liyixun committed
6 7 8 9 10 11 12 13 14
        prop="oldgidgrp.blk.gidtxt"
      >
        <i-stream-input
          disabled
          type="textarea"
          rows="8"
          :model="model.oldgidgrp.blk.gidtxt"
          maxlength="32500"
          show-word-limit
wangna committed
15
          placeholder="请输入修改之前的保函文本"
liyixun committed
16 17 18 19 20
        ></i-stream-input>
      </c-form-item>
    </c-col>

    <c-col :span="20">
wangna committed
21
      <c-form-item label="迄今为止的修订" prop="gidgrp.blk.gidtxtame">
liyixun committed
22 23 24 25 26 27 28
        <c-input
          disabled
          type="textarea"
          rows="8"
          v-model="model.gidgrp.blk.gidtxtame"
          maxlength="32500"
          show-word-limit
wangna committed
29
          placeholder="请输入迄今为止的修订"
liyixun committed
30 31 32
        ></c-input>
      </c-form-item>
    </c-col>
liyixun committed
33 34 35
  </div>
</template>
<script>
liyixun committed
36
import Api from "~/service/Api";
liyixun committed
37
import commonProcess from "~/mixin/commonProcess";
liyixun committed
38 39 40
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Getame/Event";
import IStreamInput from "~/components/IStreamInput";
liyixun committed
41 42

export default {
liyixun committed
43 44 45 46 47 48 49 50 51 52
  components: { IStreamInput },
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
liyixun committed
53 54 55
</script>
<style>
</style>