Amephis.vue 1.2 KB
Newer Older
liyixun committed
1
<template>
nanrui committed
2
  <div class="eibs">
liyixun committed
3
    <c-col :span="20">
4 5 6
      <c-form-item label="修改之前的保函文本" prop="oldgidgrp.blk.gidtxt" label-width="130px">
        <i-stream-input disabled type="textarea" rows="8" :model="model.oldgidgrp.blk.gidtxt" maxlength="65"
          show-word-limit placeholder="请输入修改之前的保函文本"></i-stream-input>
liyixun committed
7 8 9 10
      </c-form-item>
    </c-col>

    <c-col :span="20">
11
      <c-form-item label="迄今为止的修订" prop="gidgrp.blk.gidtxtame" label-width="130px">
12 13
        <c-input disabled type="textarea" rows="8" v-model="model.gidgrp.blk.gidtxtame" maxlength="65" show-word-limit
          placeholder="请输入迄今为止的修订"></c-input>
liyixun committed
14 15
      </c-form-item>
    </c-col>
liyixun committed
16 17 18
  </div>
</template>
<script>
liyixun committed
19
import Api from "~/service/Api";
liyixun committed
20
import commonProcess from "~/mixin/commonProcess";
liyixun committed
21 22 23
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Gitame/Event";
import IStreamInput from "~/components/IStreamInput";
liyixun committed
24 25

export default {
liyixun committed
26 27 28 29 30 31 32 33
  components: { IStreamInput },
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
  methods: { ...Event },
34
  created: function () { },
liyixun committed
35
};
liyixun committed
36 37
</script>
<style>
38

liyixun committed
39
</style>