Inspame.vue 1.07 KB
Newer Older
zhengxiaokui committed
1
<template>
LiRui committed
2
  <div class="eibs">
jianglong committed
3
    <span class="letame_amed_amt">给付款、承兑、议付行的指示</span>
4 5
    <c-col :span="24">
        <el-form-item label=" ">
zhengxiaokui committed
6
        </el-form-item>
7 8 9
    </c-col>
    <c-col :span="20">
      <el-form-item
jianglong committed
10
        label="原始文本"
11 12 13 14 15 16 17 18
        prop="ledgrp.blk.insbnk"
      >
        <c-input
          type="textarea"
          v-model="model.ledgrp.blk.insbnk"
          maxlength="780"
          :rows="20"
          show-word-limit
jianglong committed
19
          placeholder="请输指示内容"
20 21 22 23
        ></c-input>
      </el-form-item>
    </c-col>

jianglong committed
24
    
zhengxiaokui committed
25 26 27
  </div>
</template>
<script>
28 29 30 31
import Api from '~/service/Api'
import commonProcess from '~/mixin/commonProcess'
import CodeTable from '~/config/CodeTable'
import Event from '~/model/Letame/Event'
zhengxiaokui committed
32 33

export default {
34 35 36 37 38 39 40 41
  inject: ['root'],
  props: ['model', 'codes'],
  mixins: [commonProcess],
  data() {
    return {}
  },
  methods: { ...Event },
  created: function () {},
zhengxiaokui committed
42 43 44
}
</script>
<style>
45 46 47 48 49 50 51
.letame_amed_amt {
  margin-left: 30px;
  height: 16px;
  color: #606266;
  line-height: 16px;
  font-size: 12px;
}</style>